/* IT CHANGE DELIVERY — redesigned */

:root {
  --bg: #06080f;
  --bg-elevated: #0c1019;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --text: #eef0f6;
  --muted: rgba(238, 240, 246, 0.58);
  --line: rgba(255, 255, 255, 0.08);
  --accent: #7c5cff;
  --accent-bright: #a78bfa;
  --accent-two: #22d3ee;
  --accent-three: #f472b6;
  --gradient: linear-gradient(135deg, var(--accent) 0%, var(--accent-two) 50%, var(--accent-three) 100%);
  --gradient-text: linear-gradient(90deg, var(--accent-bright), var(--accent-two), var(--accent-three));
  --glow: 0 0 60px rgba(124, 92, 255, 0.35);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1200px;
  --header-h: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

body.grid {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }

a {
  color: var(--accent-bright);
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}

a:hover { color: var(--accent-two); }

/* ── Background orbs ── */

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-orbs__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: orbFloat 18s ease-in-out infinite;
}

.bg-orbs__orb--1 {
  width: 520px;
  height: 520px;
  top: -8%;
  left: -6%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.5), transparent 70%);
  animation-delay: 0s;
}

.bg-orbs__orb--2 {
  width: 420px;
  height: 420px;
  top: 35%;
  right: -8%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.35), transparent 70%);
  animation-delay: -6s;
}

.bg-orbs__orb--3 {
  width: 380px;
  height: 380px;
  bottom: 5%;
  left: 30%;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.28), transparent 70%);
  animation-delay: -12s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.12), transparent 65%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
}

body:hover .cursor-glow { opacity: 1; }

/* ── Reveal animations ── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }

/* ── Header ── */

.header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(6, 8, 15, 0.6);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s, box-shadow 0.4s, height 0.4s;
}

.header.is-scrolled {
  background: rgba(6, 8, 15, 0.88);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-xs);
  background: var(--gradient);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(124, 92, 255, 0.4);
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(124, 92, 255, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(34, 211, 238, 0.5); }
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.logo__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.logo__desc {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 500;
}

.nav__list {
  display: flex;
  gap: 0.15rem;
}

.nav__list a {
  display: block;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-xs);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
  transition: color 0.25s, background 0.25s;
}

.nav__list a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-out);
}

.nav__list a:hover,
.nav__list a.is-active {
  color: var(--text);
}

.nav__list a.is-active::after { width: 60%; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  background: var(--surface);
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Main ── */

main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

section { padding: clamp(3.5rem, 7vw, 6rem) 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-two);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-title--center { text-align: center; }

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, background 0.3s;
}

.btn--primary {
  background: var(--gradient);
  color: var(--bg);
  box-shadow: 0 4px 24px rgba(124, 92, 255, 0.35);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 36px rgba(124, 92, 255, 0.5);
  color: var(--bg);
}

.btn--glow { position: relative; overflow: hidden; }

.btn--glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn--glow:hover::before { transform: translateX(100%); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 0.8rem 1.4rem;
}

.btn--ghost:hover {
  background: var(--surface-hover);
  border-color: rgba(124, 92, 255, 0.4);
  color: var(--text);
  transform: translateX(4px);
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}

.btn--ghost:hover .btn__arrow { transform: translateX(4px); }

.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* ── Hero ── */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-two);
  margin-bottom: 1.25rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.25);
  background: rgba(34, 211, 238, 0.06);
  animation: tagGlow 3s ease-in-out infinite;
}

.hero__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-two);
  animation: blink 2s ease-in-out infinite;
}

@keyframes tagGlow {
  0%, 100% { border-color: rgba(34, 211, 238, 0.25); }
  50% { border-color: rgba(124, 92, 255, 0.4); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero__title-line {
  display: block;
  background: var(--gradient-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero__text {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 50ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.hero-stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat__label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

/* Hero orbit visual */

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.hero__orbit {
  position: relative;
  width: 340px;
  height: 340px;
}

.hero__orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__orbit-ring--1 {
  width: 100%;
  height: 100%;
  animation: ringSpin 20s linear infinite;
  border-color: rgba(124, 92, 255, 0.2);
}

.hero__orbit-ring--2 {
  width: 72%;
  height: 72%;
  animation: ringSpin 15s linear infinite reverse;
  border-color: rgba(34, 211, 238, 0.15);
}

.hero__orbit-ring--3 {
  width: 44%;
  height: 44%;
  animation: ringSpin 10s linear infinite;
  border-style: dashed;
  border-color: rgba(244, 114, 182, 0.2);
}

@keyframes ringSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero__orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--bg);
  box-shadow: var(--glow);
  animation: coreFloat 5s ease-in-out infinite;
  z-index: 2;
}

@keyframes coreFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -52%) scale(1.05); }
}

.hero__orbit-node {
  position: absolute;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  white-space: nowrap;
  animation: nodeFloat 4s ease-in-out infinite;
}

.hero__orbit-node--1 {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent-bright);
  animation-delay: 0s;
}

.hero__orbit-node--2 {
  bottom: 18%;
  right: -5%;
  color: var(--accent-two);
  animation-delay: -1.3s;
}

.hero__orbit-node--3 {
  bottom: 18%;
  left: -5%;
  color: var(--accent-three);
  animation-delay: -2.6s;
}

@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__orbit-node--1 { animation-name: nodeFloatCenter; }
@keyframes nodeFloatCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.hero__scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ── Marquee ── */

.marquee {
  position: relative;
  z-index: 2;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 1.25rem 0;
  border-block: 1px solid var(--line);
  background: rgba(12, 16, 25, 0.6);
  backdrop-filter: blur(12px);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee__track:hover { animation-play-state: paused; }

.marquee__item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.marquee__item::after {
  content: "✦";
  color: var(--accent);
  font-size: 0.7rem;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Company Bento ── */

.company__header {
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.company__lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.bento__card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.bento__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s;
}

.bento__card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 92, 255, 0.3);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.bento__card:hover::before { opacity: 0.04; }

.bento__card--wide { grid-column: span 2; }
.bento__card--accent {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.12), rgba(34, 211, 238, 0.06));
  border-color: rgba(124, 92, 255, 0.2);
}

.bento__card--quote {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.08), rgba(244, 114, 182, 0.06));
}

.bento__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--accent-bright);
  position: relative;
  z-index: 1;
}

.bento__icon svg { width: 100%; height: 100%; }

.bento__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-two);
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
}

.bento__value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.bento__quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.bento__quote::before {
  content: "\201C";
  color: var(--accent);
  margin-right: 0.15em;
}

.bento__cite {
  font-size: 0.85rem;
  font-style: normal;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

/* ── Values ── */

.values {
  position: relative;
}

.values__header { margin-bottom: 2.5rem; }

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-card {
  padding: 2rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.4s var(--ease-spring), border-color 0.4s;
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.value-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(124, 92, 255, 0.25);
}

.value-card:hover::after { transform: scaleX(1); }

.value-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(124, 92, 255, 0.12);
  font-size: 1.5rem;
  transition: transform 0.4s var(--ease-spring);
}

.value-card:hover .value-card__icon {
  transform: scale(1.15) rotate(-5deg);
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.value-card__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Services ── */

.areas__header {
  margin-bottom: 2.5rem;
}

.areas__showcase {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 2.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease-out), border-color 0.4s, background 0.4s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
  transform: translateX(8px);
  border-color: rgba(124, 92, 255, 0.25);
  background: var(--surface-hover);
}

.service-card:hover::before { transform: scaleY(1); }

.service-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.service-card__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--muted);
  transition: transform 0.4s var(--ease-spring), border-color 0.3s, color 0.3s, background 0.3s;
}

.service-card:hover .service-card__arrow {
  transform: rotate(-45deg);
  border-color: var(--accent);
  color: var(--accent-bright);
  background: rgba(124, 92, 255, 0.1);
}

/* ── Process Timeline ── */

.process__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.process__sticky {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.process__intro {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 36ch;
}

.process__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.process__timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--line);
}

.process__timeline::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 24px;
  width: 2px;
  height: var(--timeline-progress, 0%);
  background: var(--gradient);
  transition: height 0.1s linear;
  border-radius: 2px;
}

.timeline-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  opacity: 0.4;
  transform: translateX(-12px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.timeline-step.is-active {
  opacity: 1;
  transform: translateX(0);
}

.timeline-step__dot {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--muted);
  position: relative;
  z-index: 1;
  transition: border-color 0.4s, color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-spring);
}

.timeline-step.is-active .timeline-step__dot {
  border-color: var(--accent);
  color: var(--accent-bright);
  box-shadow: 0 0 24px rgba(124, 92, 255, 0.35);
  transform: scale(1.1);
}

.timeline-step__body {
  padding: 0.5rem 1.5rem 0.5rem 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  flex: 1;
  transition: border-color 0.4s, background 0.4s;
}

.timeline-step.is-active .timeline-step__body {
  border-color: rgba(124, 92, 255, 0.2);
  background: rgba(124, 92, 255, 0.05);
}

.timeline-step__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.timeline-step__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── CTA Banner ── */

.cta-banner {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  text-align: center;
}

.cta-banner__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(124, 92, 255, 0.2), transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(34, 211, 238, 0.15), transparent 55%);
  animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-banner__text {
  color: var(--muted);
  font-size: 1rem;
  max-width: 48ch;
  margin: 0 auto 1.75rem;
}

/* ── Contact ── */

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.contact__text {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 40ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact__cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, background 0.3s;
}

.contact-card:hover {
  transform: translateX(6px);
  border-color: rgba(124, 92, 255, 0.3);
  background: var(--surface-hover);
  color: var(--text);
}

.contact-card--static { cursor: default; }
.contact-card--static:hover { transform: none; }

.contact-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(124, 92, 255, 0.12);
  color: var(--accent-bright);
}

.contact-card__icon svg { width: 20px; height: 20px; }

.contact-card__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-two);
  margin-bottom: 0.15rem;
}

.contact-card__value {
  font-size: 0.92rem;
  font-weight: 600;
}

.contact__form {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.contact__form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.form__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-two);
  animation: blink 2s ease-in-out infinite;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__field span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.form__field input,
.form__field textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  background: rgba(6, 8, 15, 0.5);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form__field input::placeholder,
.form__field textarea::placeholder {
  color: rgba(238, 240, 246, 0.25);
}

.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: rgba(124, 92, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.12);
}

.form__field--full { grid-column: 1 / -1; }

/* ── Footer ── */

.footer {
  position: relative;
  z-index: 2;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
  background: rgba(6, 8, 15, 0.8);
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer__logo .logo__mark {
  width: 32px;
  height: 32px;
  font-size: 0.65rem;
}

.footer__nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s;
}

.footer__nav a:hover { color: var(--accent-bright); }

.footer__copy {
  font-size: 0.8rem;
  color: var(--muted);
  width: 100%;
  text-align: center;
  padding-top: 1.25rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--line);
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { min-height: 300px; order: -1; }
  .hero__orbit { width: 280px; height: 280px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__card--wide { grid-column: span 2; }
  .bento__card--quote { grid-column: span 2; }
  .values__grid { grid-template-columns: 1fr; }
  .process__layout { grid-template-columns: 1fr; }
  .process__sticky { position: static; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .burger { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(6, 8, 15, 0.95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.35s;
    z-index: 199;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list { flex-direction: column; }

  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; text-align: center; }
  .hero__stats { flex-direction: column; gap: 1rem; }
  .hero__scroll-hint { display: none; }

  .bento { grid-template-columns: 1fr; }
  .bento__card--wide,
  .bento__card--quote { grid-column: span 1; }

  .service-card {
    grid-template-columns: auto 1fr;
    padding: 1.5rem;
  }

  .service-card__arrow { display: none; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__nav { justify-content: center; }

  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}
