:root {
  --bg: #000;
  --panel: #0a0a0a;
  --panel-2: #0e0e0e;
  --line: #202020;
  --line-soft: #161616;
  --text: #f5f5f3;
  --muted: #9b9b98;
  --dim: #686866;
  --radius: 30px;
}

* { box-sizing: border-box; }

html { background: var(--bg); }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

body.menu-open { overflow: hidden; }

::selection { background: #f2f2ef; color: #000; }

::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #2c2c2c; border: 2px solid #050505; border-radius: 999px; }

a, button { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: -80px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

#site-header {
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0);
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
#site-header.scrolled {
  border-color: rgba(255,255,255,.08);
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #f5f5f3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.brand-icon {
  display: grid;
  width: 19px;
  height: 19px;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  transform: rotate(8deg);
}
.brand-icon i { display: block; border-radius: 2px; background: #f5f5f3; }

.nav-link {
  position: relative;
  color: #aaa;
  font-size: 12px;
  font-weight: 600;
  transition: color .25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transition: transform .25s ease;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:hover svg { transform: translateX(3px); }
.button-solid { border-color: #fff; background: #fff; color: #050505; }
.button-solid:hover { background: #d8d8d5; border-color: #d8d8d5; }
.button-dark { border-color: #2b2b2b; background: #0d0d0d; color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.button-dark:hover { border-color: #5d5d5d; background: #141414; }
.button-small { min-height: 37px; padding: 0 16px; font-size: 11px; }

.menu-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid #282828;
  border-radius: 50%;
  background: #0b0b0b;
}
.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 15px;
  height: 1px;
  background: #fff;
  transition: transform .25s ease, top .25s ease;
}
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 23px; }
.menu-toggle.active span:first-child { top: 20px; transform: rotate(45deg); }
.menu-toggle.active span:last-child { top: 20px; transform: rotate(-45deg); }

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  border-bottom: 1px solid transparent;
  background: rgba(0,0,0,.96);
  opacity: 0;
  transition: max-height .35s ease, opacity .3s ease, border-color .3s ease;
}
.mobile-menu.open { max-height: 420px; border-color: #1f1f1f; opacity: 1; }
.mobile-menu nav > a:not(.button) { padding: 14px 2px; border-bottom: 1px solid #171717; font-size: 19px; font-weight: 600; }

.hero-section { min-height: 100vh; }
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -320px;
  left: 50%;
  width: 820px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.11), transparent 67%);
  transform: translateX(-50%);
  filter: blur(24px);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border: 1px solid #272727;
  border-radius: 999px;
  background: rgba(14,14,14,.8);
  padding: 7px 11px;
  color: #bdbdb9;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.status-dot, .eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.08);
}
.status-dot { animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }

.hero-title {
  margin: 34px auto 0;
  font-size: clamp(3.6rem, 10.8vw, 10.3rem);
  font-weight: 500;
  letter-spacing: -.082em;
  line-height: .82;
}
.hero-title span { display: block; }
.hero-title em { color: #777; font-family: Georgia, serif; font-weight: 400; letter-spacing: -.07em; }
.hero-copy { max-width: 620px; margin: 34px auto 0; color: var(--muted); font-size: clamp(.95rem, 1.4vw, 1.15rem); line-height: 1.7; }

.analytics-stage {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  max-width: 1180px;
  min-height: 445px;
  grid-template-columns: .8fr 1.35fr .8fr;
  align-items: end;
  gap: 7px;
  margin: 104px auto 0;
  perspective: 1200px;
}
.analytics-stage::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -40px;
  left: 8%;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  filter: blur(45px);
}
.analytics-card {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #292929;
  border-radius: 19px;
  background: linear-gradient(150deg, #171717, #090909 68%);
  box-shadow: 0 28px 75px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.06);
}
.main-card { z-index: 2; min-height: 410px; padding: 25px; }
.side-card { min-height: 300px; padding: 22px; opacity: .78; }
.side-card-left { transform: rotateY(13deg) translateX(15px) scale(.95); transform-origin: right bottom; }
.side-card-right { transform: rotateY(-13deg) translateX(-15px) scale(.95); transform-origin: left bottom; }
.card-topline { display: flex; align-items: center; justify-content: space-between; color: #aaa; font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.live-indicator::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 5px; border-radius: 50%; background: #fff; }
.metric-value { margin-top: 43px; font-size: clamp(2.7rem, 4vw, 4.4rem); font-weight: 500; letter-spacing: -.07em; line-height: 1; }
.metric-value span { color: #5c5c5c; font-size: .5em; }
.metric-label { margin-top: 7px; color: #707070; font-size: 10px; }
.mini-bars { display: flex; height: 105px; align-items: end; gap: 7px; margin-top: 35px; }
.mini-bars i { flex: 1; height: var(--h); border-radius: 4px 4px 1px 1px; background: linear-gradient(to top, #333, #aaa); }
.micro-metric { margin-top: 30px; padding: 13px; border: 1px solid #1f1f1f; border-radius: 10px; background: #0c0c0c; }
.micro-metric small { display: block; color: #646464; font-size: 8px; text-transform: uppercase; }
.micro-metric strong { display: block; margin-top: 4px; font-size: 17px; font-weight: 600; }
.chart-wrap { margin: 20px -8px -4px; }
.chart-wrap svg { width: 100%; height: auto; }
.chart-lines path { fill: none; stroke: #242424; stroke-width: 1; }
.chart-wrap .area { fill: url(#chartFill); }
.chart-wrap .line { fill: none; stroke: #e9e9e7; stroke-width: 3; }
.chart-dots circle { fill: #111; stroke: #fff; stroke-width: 2; }
.donut-wrap { display: flex; flex-direction: column; align-items: center; }
.donut {
  display: grid;
  width: 125px;
  height: 125px;
  place-items: center;
  margin-top: 45px;
  border-radius: 50%;
  background: conic-gradient(#cfcfcb 0 45%, #737373 45% 73%, #343434 73% 90%, #1f1f1f 90%);
}
.donut::before { content: ""; position: absolute; width: 86px; height: 86px; border-radius: 50%; background: #0d0d0d; }
.donut span { position: relative; z-index: 1; font-size: 28px; font-weight: 600; }
.legend { width: 100%; margin-top: 27px; }
.legend p { display: flex; align-items: center; gap: 7px; margin: 8px 0; color: #797979; font-size: 8px; }
.legend i { width: 5px; height: 5px; border-radius: 50%; background: #bbb; }
.legend p:nth-child(2) i { background: #6e6e6e; }
.legend p:nth-child(3) i { background: #343434; }

.scroll-cue { display: flex; width: fit-content; align-items: center; gap: 9px; margin: 55px auto 0; color: #656565; font-size: 9px; font-weight: 600; text-transform: uppercase; }
.scroll-cue svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.section-padding { padding-top: 130px; padding-bottom: 130px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-heading h2, .about-content h2, .process-content h2, .services-copy h2, .faq-title {
  margin: 22px 0 0;
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: .96;
}
.section-heading > p { max-width: 455px; margin: 0 0 8px; color: var(--muted); font-size: 14px; line-height: 1.75; }

.project-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 10px; align-items: start; }
.project-card { overflow: hidden; border: 1px solid var(--line); border-radius: 23px; background: #080808; }
.project-visual { position: relative; overflow: hidden; height: 480px; margin: 7px; border-radius: 17px; background: #d7d7d3; color: #101010; }
.project-card-large .project-visual { height: 650px; }
.project-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 35px 30px 38px; }
.project-meta-stacked { grid-template-columns: 1fr; }
.project-number { margin: 0 0 16px; color: #777; font-size: 9px; font-weight: 700; letter-spacing: .05em; }
.project-meta h3 { margin: 0; font-size: clamp(1.5rem, 2.4vw, 2.5rem); font-weight: 500; letter-spacing: -.055em; line-height: 1.08; }
.project-description p { margin: 0; color: #979794; font-size: 12px; line-height: 1.65; }
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.tag-list span { border: 1px solid #262626; border-radius: 999px; background: #101010; padding: 6px 9px; color: #a4a4a0; font-size: 8px; font-weight: 600; }
.tag-list-large span { padding: 8px 11px; font-size: 9px; }

.forecast-visual { padding: 8%; background: radial-gradient(circle at 75% 10%, #fff, #d2d2cf 48%, #a9a9a6); }
.visual-toolbar { display: flex; height: 42px; align-items: center; gap: 6px; padding: 0 14px; border-radius: 10px 10px 0 0; background: #1a1a1a; color: #777; }
.visual-toolbar span { width: 5px; height: 5px; border-radius: 50%; background: #666; }
.visual-toolbar b { margin-left: auto; font-size: 7px; font-weight: 600; text-transform: uppercase; }
.forecast-layout { display: flex; height: calc(100% - 42px); overflow: hidden; border-radius: 0 0 10px 10px; background: #f0f0ed; box-shadow: 0 30px 60px rgba(0,0,0,.18); }
.forecast-sidebar { width: 46px; padding: 20px 12px; background: #242424; }
.forecast-sidebar i { display: block; height: 4px; margin-bottom: 13px; border-radius: 2px; background: #4b4b4b; }
.forecast-sidebar i:first-child { background: #dededb; }
.forecast-content { flex: 1; padding: 26px 23px; }
.forecast-stats { display: flex; align-items: center; justify-content: space-between; }
.forecast-stats span { color: #868686; font-size: 7px; font-weight: 700; }
.forecast-stats strong { font-size: 12px; }
.forecast-content svg { width: 100%; height: auto; margin-top: 18%; }
.visual-grid path { fill: none; stroke: #d6d6d2; stroke-width: 1; }
.forecast-ghost { fill: none; stroke: #b3b3af; stroke-width: 10; opacity: .18; }
.forecast-line { fill: none; stroke: #181818; stroke-width: 5; }
.forecast-dash { fill: none; stroke: #777; stroke-width: 2; stroke-dasharray: 8 8; }

.kpi-visual { padding: 35px; background: linear-gradient(145deg, #e5e5e1, #aaa); }
.kpi-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,.17); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.kpi-header b { padding: 7px 10px; border-radius: 99px; background: #1c1c1c; color: #fff; }
.kpi-body { height: calc(100% - 40px); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.radial { display: grid; width: 178px; height: 178px; place-items: center; border-radius: 50%; background: conic-gradient(#111 0 82%, rgba(0,0,0,.12) 82%); }
.radial::before { content: ""; position: absolute; width: 142px; height: 142px; border-radius: 50%; background: #cacac6; }
.radial span { position: relative; z-index: 1; font-size: 42px; font-weight: 600; letter-spacing: -.06em; }
.radial small { font-size: .45em; }
.kpi-list { width: 100%; margin-top: 35px; }
.kpi-list p { display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 12px; margin: 12px 0; font-size: 8px; }
.kpi-list i { display: block; height: 5px; overflow: hidden; border-radius: 5px; background: rgba(0,0,0,.12); }
.kpi-list b { display: block; height: 100%; border-radius: inherit; background: #222; }

.rounded-section { overflow: hidden; border: 1px solid #191919; border-radius: var(--radius); background: #050505; }
.about-grid { display: grid; min-height: 740px; grid-template-columns: 1.05fr .95fr; }
.about-content { padding: clamp(40px, 6vw, 90px); }
.about-content h2 { font-size: clamp(3.2rem, 6.2vw, 6.3rem); }
.about-lead { max-width: 690px; margin: 35px 0 0; color: #e1e1de; font-size: clamp(1.15rem, 1.8vw, 1.55rem); line-height: 1.55; letter-spacing: -.025em; }
.about-text { max-width: 650px; margin: 21px 0 0; color: #8e8e8b; font-size: 13px; line-height: 1.8; }
.about-facts { display: grid; gap: 0; margin-top: 42px; border-top: 1px solid #1d1d1d; }
.about-facts div { display: grid; grid-template-columns: .55fr 1fr; gap: 20px; padding: 17px 0; border-bottom: 1px solid #1d1d1d; }
.about-facts span { color: #696969; font-size: 10px; }
.about-facts strong { font-size: 11px; font-weight: 600; }

.profile-visual { position: relative; min-height: 640px; overflow: hidden; background: radial-gradient(circle at 50% 45%, #d7d7d3 0, #989895 25%, #333 61%, #0b0b0b 78%); }
.profile-visual::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(circle, #000, transparent 72%); }
.profile-label { position: absolute; z-index: 4; top: 27px; left: 29px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: #d3d3d0; font-size: 8px; font-weight: 700; text-transform: uppercase; }
.profile-glow { position: absolute; top: 50%; left: 50%; width: 310px; height: 310px; border-radius: 50%; background: #fff; transform: translate(-50%,-50%); filter: blur(80px); opacity: .16; }
.profile-center { position: absolute; z-index: 3; top: 50%; left: 50%; display: flex; width: 225px; height: 225px; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(6,6,6,.84); transform: translate(-50%,-50%); box-shadow: 0 25px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.12); backdrop-filter: blur(8px); }
.profile-center small { color: #777; font-size: 8px; letter-spacing: .2em; }
.profile-center strong { margin-top: 4px; font-size: 45px; font-weight: 500; letter-spacing: -.08em; }
.profile-center span { color: #999; font-family: Georgia, serif; font-size: 16px; font-style: italic; }
.orbit { position: absolute; z-index: 2; top: 50%; left: 50%; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-one { width: 370px; height: 370px; }
.orbit-two { width: 500px; height: 500px; }
.orbit-three { width: 635px; height: 635px; }
.orbit span { position: absolute; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid #777; border-radius: 50%; background: #111; color: #bbb; font-size: 7px; font-weight: 700; }
.orbit-one span { top: 30px; left: 26px; }
.orbit-two span { right: 18px; bottom: 90px; }
.orbit-three span { top: 110px; right: 14px; }
.data-chip { position: absolute; z-index: 4; border: 1px solid rgba(255,255,255,.25); border-radius: 7px; background: rgba(8,8,8,.77); padding: 8px 10px; color: #d4d4d0; font-size: 7px; font-weight: 700; backdrop-filter: blur(10px); }
.chip-one { left: 8%; bottom: 14%; }
.chip-two { top: 16%; right: 9%; }
.chip-three { right: 11%; bottom: 17%; }

.process-section { display: grid; grid-template-columns: .95fr 1.05fr; padding: 7px; }
.process-art { position: relative; min-height: 760px; overflow: hidden; border-radius: 24px; background: linear-gradient(145deg, #ddd, #777); }
.process-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,0,0,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.08) 1px, transparent 1px); background-size: 38px 38px; }
.process-window { position: absolute; top: 18%; right: 8%; left: 8%; overflow: hidden; border-radius: 14px; background: rgba(16,16,16,.94); box-shadow: 0 35px 80px rgba(0,0,0,.35); }
.process-window-top { display: flex; align-items: center; gap: 6px; height: 43px; padding: 0 15px; border-bottom: 1px solid #2d2d2d; }
.process-window-top i { width: 6px; height: 6px; border-radius: 50%; background: #575757; }
.process-window-top span { margin-left: auto; color: #777; font-size: 8px; }
.code-line { display: grid; grid-template-columns: 34px 1fr; padding: 14px 22px; border-bottom: 1px solid #222; color: #bcbcbc; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: clamp(9px, 1vw, 12px); }
.code-line b { color: #4f4f4f; font-weight: 400; }
.code-line em { color: #fff; font-style: normal; }
.code-line.active { background: #242424; color: #fff; }
.process-output { position: absolute; right: 11%; bottom: 14%; left: 11%; display: flex; align-items: center; gap: 14px; border-radius: 11px; background: rgba(245,245,242,.9); padding: 18px; color: #111; box-shadow: 0 20px 50px rgba(0,0,0,.2); }
.process-output span { font-size: 7px; font-weight: 700; }
.process-output strong { font-size: 13px; }
.process-output i { width: 8px; height: 8px; margin-left: auto; border-radius: 50%; background: #111; }
.process-content { padding: clamp(40px, 6vw, 85px); }
.process-content > p, .services-copy > p { max-width: 570px; margin: 24px 0 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.process-steps { margin-top: 47px; }
.process-steps article { display: grid; grid-template-columns: 35px 1fr; gap: 16px; padding: 24px 0; border-top: 1px solid #1f1f1f; }
.process-steps article:last-child { border-bottom: 1px solid #1f1f1f; }
.process-steps article > span { color: #555; font-size: 9px; }
.process-steps h3 { margin: 0; font-size: 16px; font-weight: 600; letter-spacing: -.03em; }
.process-steps p { margin: 8px 0 0; color: #777; font-size: 10px; line-height: 1.65; }

.services-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: 75px; padding: clamp(40px, 6vw, 90px); }
.services-copy { position: sticky; top: 130px; height: fit-content; }
.services-copy .button { margin-top: 30px; }
.services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.services-list article { min-height: 210px; padding: 25px; border: 1px solid #1d1d1d; border-radius: 15px; background: #0a0a0a; transition: background .3s ease, border-color .3s ease, transform .3s ease; }
.services-list article:hover { border-color: #444; background: #0f0f0f; transform: translateY(-4px); }
.services-list span { color: #555; font-size: 9px; }
.services-list h3 { max-width: 240px; margin: 37px 0 0; font-size: 17px; font-weight: 600; letter-spacing: -.035em; line-height: 1.2; }
.services-list p { margin: 10px 0 0; color: #737373; font-size: 9px; line-height: 1.65; }

.background-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.background-column { padding: clamp(22px, 3vw, 40px); border: 1px solid #1c1c1c; border-radius: 22px; background: #070707; }
.column-label { margin-bottom: 30px; color: #626262; font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.timeline-card { padding: 29px 0; border-top: 1px solid #212121; }
.timeline-card.featured { padding-top: 0; border-top: 0; }
.timeline-head { display: flex; align-items: center; justify-content: space-between; gap: 15px; color: #747474; font-size: 9px; }
.timeline-head i { border: 1px solid #313131; border-radius: 99px; padding: 5px 8px; color: #aaa; font-style: normal; }
.timeline-card h3, .certificate-card h3 { margin: 18px 0 0; font-size: clamp(1.2rem, 2vw, 1.8rem); font-weight: 500; letter-spacing: -.04em; }
.timeline-card h4 { margin: 6px 0 0; color: #9a9a97; font-size: 11px; font-weight: 500; }
.timeline-card p, .timeline-card li { color: #737371; font-size: 10px; line-height: 1.7; }
.timeline-card p { margin: 13px 0 0; }
.timeline-card ul { margin: 17px 0 0; padding: 0; list-style: none; }
.timeline-card li { position: relative; margin: 8px 0; padding-left: 14px; }
.timeline-card li::before { content: ""; position: absolute; top: .75em; left: 0; width: 4px; height: 4px; border-radius: 50%; background: #aaa; }
.certificate-card { margin-top: 5px; border-radius: 14px; background: #e0e0dc; padding: 25px; color: #111; }
.certificate-card > span { font-size: 8px; font-weight: 700; text-transform: uppercase; }
.certificate-card p { margin: 7px 0 0; color: #555; font-size: 10px; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 10px; border: 1px solid #1c1c1c; border-radius: 22px; background: #070707; }
.stats-grid > div { display: flex; min-height: 205px; flex-direction: column; justify-content: space-between; padding: 28px; border-right: 1px solid #1c1c1c; }
.stats-grid > div:last-child { border-right: 0; }
.stats-grid strong { font-size: clamp(3rem, 5vw, 5rem); font-weight: 500; letter-spacing: -.075em; line-height: 1; }
.stats-grid strong span { color: #5a5a5a; font-size: .46em; }
.stats-grid p { margin: 0; color: #777; font-size: 10px; line-height: 1.5; }

.faq-title { margin-top: 25px; }
.faq-intro { max-width: 380px; margin-top: 25px; color: #858582; font-size: 12px; line-height: 1.7; }
.faq-list { border-top: 1px solid #242424; }
.faq-item { border-bottom: 1px solid #242424; }
.faq-item button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 27px 0; border: 0; background: transparent; color: #e4e4e1; text-align: left; cursor: pointer; }
.faq-item button span { font-size: clamp(1rem, 1.6vw, 1.25rem); font-weight: 500; letter-spacing: -.03em; }
.faq-item button i { position: relative; flex: 0 0 34px; width: 34px; height: 34px; border: 1px solid #303030; border-radius: 50%; }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; top: 16px; left: 10px; width: 12px; height: 1px; background: #aaa; transition: transform .25s ease; }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item button[aria-expanded="true"] i::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-answer > p { overflow: hidden; margin: 0; color: #7f7f7c; font-size: 12px; line-height: 1.75; }
.faq-item button[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }
.faq-item button[aria-expanded="true"] + .faq-answer > p { padding-bottom: 28px; }

.contact-section { position: relative; min-height: 760px; overflow: hidden; border: 1px solid #1e1e1e; border-radius: var(--radius); background: #080808; padding: 145px 40px 0; }
.contact-section::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 50px 50px; mask-image: linear-gradient(to bottom, black, transparent); }
.contact-orb { position: absolute; top: -520px; left: 50%; width: 1050px; height: 850px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.26), rgba(255,255,255,.06) 35%, transparent 67%); transform: translateX(-50%); filter: blur(18px); }
.contact-section h2 { margin: 31px 0 0; font-size: clamp(4rem, 10vw, 9rem); font-weight: 500; letter-spacing: -.085em; line-height: .85; }
.contact-section h2 em { color: #70706e; font-family: Georgia, serif; font-weight: 400; }
.contact-section > div > p { max-width: 560px; margin: 29px auto 0; color: #8e8e8b; font-size: 14px; line-height: 1.7; }
.contact-section footer { position: absolute; right: 35px; bottom: 0; left: 35px; display: grid; min-height: 96px; grid-template-columns: 1fr 1.5fr 1fr; align-items: center; gap: 20px; border-top: 1px solid #202020; color: #757573; font-size: 9px; }
.footer-center { display: flex; justify-content: center; gap: 24px; }
.footer-center a:hover { color: #fff; }
.contact-section footer > p { margin: 0; text-align: right; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.65,.3,1), transform .8s cubic-bezier(.2,.65,.3,1); transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .analytics-stage { grid-template-columns: .72fr 1.45fr .72fr; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .profile-center { width: 185px; height: 185px; }
  .profile-center strong { font-size: 38px; }
  .orbit-one { width: 300px; height: 300px; }
  .orbit-two { width: 410px; height: 410px; }
  .orbit-three { width: 520px; height: 520px; }
  .services-section { gap: 40px; }
}

@media (max-width: 900px) {
  .section-padding { padding-top: 95px; padding-bottom: 95px; }
  .analytics-stage { max-width: 720px; min-height: 380px; grid-template-columns: 1fr 1.3fr; }
  .main-card { min-height: 370px; }
  .side-card-left { min-height: 290px; transform: rotateY(7deg) translateX(10px) scale(.97); }
  .side-card-right { display: none; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card-large .project-visual, .project-visual { height: min(76vw, 590px); }
  .project-meta-stacked, .project-meta { grid-template-columns: 1fr 1fr; }
  .about-grid, .process-section, .services-section { grid-template-columns: 1fr; }
  .profile-visual { min-height: 680px; }
  .process-art { min-height: 590px; }
  .services-copy { position: static; }
  .services-section { gap: 60px; }
  .contact-section footer { grid-template-columns: 1fr 1fr; }
  .footer-center { display: none; }
}

@media (max-width: 767px) {
  :root { --radius: 22px; }
  .hero-title { margin-top: 28px; font-size: clamp(3.15rem, 15vw, 5.8rem); }
  .hero-title span { line-height: .88; }
  .hero-title span:last-child em { display: block; }
  .hero-copy { margin-top: 27px; font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .button { width: min(100%, 260px); }
  .analytics-stage { min-height: 0; grid-template-columns: 1fr; margin-top: 72px; }
  .main-card { min-height: 330px; padding: 18px; }
  .side-card { display: none; }
  .micro-metric { margin-top: 20px; padding: 10px; }
  .chart-wrap { margin-top: 14px; }
  .scroll-cue { margin-top: 38px; }
  .section-heading { align-items: start; flex-direction: column; }
  .section-heading h2, .about-content h2, .process-content h2, .services-copy h2, .faq-title { font-size: clamp(2.65rem, 13vw, 4.5rem); }
  .project-meta, .project-meta-stacked { grid-template-columns: 1fr; padding: 28px 22px 31px; }
  .project-description { max-width: 540px; }
  .forecast-visual { padding: 7%; }
  .forecast-sidebar { display: none; }
  .forecast-content { padding: 18px 14px; }
  .kpi-visual { padding: 23px; }
  .radial { width: 135px; height: 135px; }
  .radial::before { width: 108px; height: 108px; }
  .radial span { font-size: 34px; }
  .about-content, .process-content { padding: 38px 24px 45px; }
  .about-lead { margin-top: 28px; font-size: 17px; }
  .about-facts div { grid-template-columns: 1fr; gap: 6px; }
  .profile-visual { min-height: 510px; }
  .profile-center { width: 160px; height: 160px; }
  .profile-center strong { font-size: 32px; }
  .orbit-one { width: 245px; height: 245px; }
  .orbit-two { width: 340px; height: 340px; }
  .orbit-three { width: 450px; height: 450px; }
  .process-art { min-height: 470px; }
  .process-window { top: 15%; right: 5%; left: 5%; }
  .code-line { padding: 12px 15px; }
  .process-output { right: 7%; bottom: 10%; left: 7%; }
  .services-section { padding: 38px 20px 20px; }
  .services-list { grid-template-columns: 1fr; }
  .services-list article { min-height: 175px; }
  .background-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid > div { min-height: 170px; border-bottom: 1px solid #1c1c1c; }
  .stats-grid > div:nth-child(2) { border-right: 0; }
  .stats-grid > div:nth-child(3), .stats-grid > div:nth-child(4) { border-bottom: 0; }
  .contact-section { min-height: 680px; padding: 110px 20px 0; }
  .contact-section footer { right: 20px; left: 20px; }
}

@media (max-width: 480px) {
  .section-padding { padding-top: 78px; padding-bottom: 78px; }
  .hero-title { letter-spacing: -.075em; }
  .hero-title em { display: inline-block; }
  .button { min-height: 43px; padding: 0 17px; }
  .analytics-stage { margin-top: 58px; }
  .main-card { min-height: 285px; }
  .micro-metric:nth-child(2) { display: none; }
  .main-card .grid { grid-template-columns: 1fr 1fr; }
  .project-card-large .project-visual, .project-visual { height: 380px; }
  .forecast-content svg { margin-top: 30%; }
  .kpi-list { margin-top: 22px; }
  .profile-visual { min-height: 440px; }
  .chip-one { left: 4%; }
  .chip-two { right: 4%; }
  .chip-three { right: 4%; }
  .orbit-three { width: 390px; height: 390px; }
  .process-art { min-height: 420px; }
  .process-window-top { height: 38px; }
  .code-line { grid-template-columns: 25px 1fr; padding: 10px 12px; font-size: 8px; }
  .stats-grid > div { min-height: 145px; padding: 20px; }
  .stats-grid strong { font-size: 2.7rem; }
  .faq-item button { padding: 23px 0; }
  .contact-section { min-height: 650px; padding-top: 95px; }
  .contact-section h2 { font-size: clamp(3.4rem, 17vw, 5rem); }
  .contact-section footer { grid-template-columns: 1fr; justify-items: center; padding: 23px 0; }
  .contact-section footer > p { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
