@font-face {
  font-family: "Plus Jakarta Sans Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/plus-jakarta-sans-latin-ext.woff2") format("woff2-variations");
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

@font-face {
  font-family: "Plus Jakarta Sans Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/plus-jakarta-sans-latin.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
  --void: #050507;
  --void-soft: #0a0a0e;
  --panel: #101015;
  --panel-light: #15151c;
  --text: #f5f5f2;
  --muted: #7d7d88;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);
  --neon: #c7ff18;
  --violet: #7357ff;
  --cyan: #28e7ff;
  --pointer-x: 50vw;
  --pointer-y: 50vh;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--void); overflow-x: clip; }

body {
  margin: 0;
  background: var(--void);
  color: var(--text);
  font-family: "Plus Jakarta Sans Variable", "Plus Jakarta Sans", Arial, sans-serif;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; touch-action: none; }

body::before {
  content: "";
  position: fixed;
  z-index: 200;
  inset: 0;
  pointer-events: none;
  opacity: .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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--neon); color: var(--void); }

.dark-site { position: relative; min-height: 100vh; }

.cursor-glow {
  position: fixed;
  z-index: 1;
  left: var(--pointer-x);
  top: var(--pointer-y);
  width: 520px;
  height: 520px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115,87,255,.10), rgba(40,231,255,.025) 42%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: left 90ms linear, top 90ms linear;
}

.scroll-progress {
  position: fixed;
  z-index: 90;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: transparent;
}

.scroll-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--neon), var(--cyan), var(--violet));
  box-shadow: 0 0 16px var(--cyan);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  padding: 0 3.2vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--text);
  border-bottom: 1px solid transparent;
  transition: height .35s ease, background .35s ease, border-color .35s ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(5,5,7,.82);
  border-color: var(--line);
  backdrop-filter: blur(18px) saturate(150%);
}

.brand { display: flex; align-items: center; gap: 12px; width: max-content; }

.brand-code {
  display: grid;
  place-items: center;
  height: 35px;
  min-width: 58px;
  padding: 0 8px;
  color: var(--void);
  background: var(--neon);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -.04em;
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
}

.brand-copy { font-size: 11px; line-height: 1.08; font-weight: 760; letter-spacing: .035em; }

.main-nav { display: flex; align-items: center; gap: clamp(22px, 2.6vw, 46px); }

.main-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  gap: 7px;
  color: #b3b3bc;
  font-size: 14px;
  font-weight: 650;
  transition: color .25s ease;
}

.main-nav a span { color: #686873; font-size: 9px; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 5px; height: 1px; background: var(--neon); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.main-nav a:hover::after,.main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a:focus-visible { outline: 2px solid var(--neon); outline-offset: 5px; }
.main-nav a:hover { color: var(--neon); }

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 6px 6px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
  : 12px;
  font-weight: 700;
  transition: border-color .25s ease, color .25s ease;
}

.cta-arrow {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--void);
  background: var(--neon);
  border-radius: 50%;
  transition: transform .3s ease;
}

.header-cta:hover { color: var(--neon); border-color: var(--neon); }
.header-cta:hover .cta-arrow { transform: rotate(45deg); }

.arrow-icon { width: 19px; height: 19px; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  z-index: 2;
  min-height: max(760px, 100svh);
  padding: 116px 3.2vw 34px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto 1fr auto;
  column-gap: 14px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 83% 45%, rgba(115,87,255,.14), transparent 25%),
    radial-gradient(circle at 73% 55%, rgba(40,231,255,.06), transparent 30%),
    var(--void);
}

.tech-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .52;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, rgba(0,0,0,.9) 72%, transparent);
}

.tech-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 49.95%, rgba(199,255,24,.25) 50%, transparent 50.05%);
}

.scan-beam {
  position: absolute;
  z-index: 1;
  left: 0;
  top: -12%;
  width: 100%;
  height: 16%;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(40,231,255,.045), rgba(199,255,24,.08), transparent);
  animation: scan 8s linear infinite;
}

.hero-meta {
  position: relative;
  z-index: 4;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #777783;
  text-transform: uppercase;
  : 8px;
  font-weight: 700;
  letter-spacing: .14em;
}

.hero-meta span:nth-child(2) { justify-self: center; }
.hero-meta span:nth-child(3) { justify-self: end; color: var(--neon); }

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon);
  animation: blink 1.4s ease-in-out infinite;
}

.hero-title-block {
  position: relative;
  z-index: 5;
  grid-column: 1 / 10;
  align-self: center;
  padding-top: 4vh;
}

.title-code {
  width: 60%;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  color: #85858e;
  : 8px;
  font-weight: 700;
  letter-spacing: .15em;
}

.hero-title {
  margin: 0;
  font-size: clamp(66px, 10.1vw, 186px);
  font-weight: 690;
  line-height: .77;
  letter-spacing: -.078em;
}

.title-line { display: block; overflow: hidden; padding: .03em 0; }

.title-line > span {
  display: inline-block;
  animation: title-rise 1s cubic-bezier(.16,.8,.2,1) both;
}

.title-line:nth-child(2) > span { animation-delay: .1s; }
.title-line:nth-child(3) > span { animation-delay: .2s; }

.title-line-neon {
  padding-left: 8vw;
  color: transparent;
  -webkit-text-stroke: max(1px, .013em) var(--neon);
  filter: drop-shadow(0 0 22px rgba(199,255,24,.14));
}

.title-line-end { padding-left: 1vw; }
.neon-dot { color: var(--neon); text-shadow: 0 0 28px rgba(199,255,24,.6); }

.signal-panel {
  position: absolute;
  z-index: 4;
  top: 21%;
  right: 3.2vw;
  width: min(35vw, 560px);
  aspect-ratio: 1 / .92;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(18,18,25,.75), rgba(5,5,7,.35));
  backdrop-filter: blur(10px);
  clip-path: polygon(24px 0,100% 0,100% calc(100% - 24px),calc(100% - 24px) 100%,0 100%,0 24px);
}

.signal-panel::before,
.signal-panel::after {
  content: "";
  position: absolute;
  z-index: 3;
  background: var(--neon);
  box-shadow: 0 0 13px var(--neon);
}

.signal-panel::before { top: 0; left: 0; width: 70px; height: 1px; }
.signal-panel::after { right: 0; bottom: 0; width: 1px; height: 70px; }

.panel-top,
.panel-bottom {
  position: absolute;
  z-index: 4;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #85858e;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: .13em;
}

.panel-top { top: 17px; }
.panel-bottom { bottom: 16px; }
.panel-top span:last-child { color: var(--text); }

.core-scene { position: absolute; inset: 13% 6%; display: grid; place-items: center; perspective: 900px; }

.core-axis { position: absolute; background: rgba(255,255,255,.12); }
.axis-x { left: 0; right: 0; height: 1px; }
.axis-y { top: 0; bottom: 0; width: 1px; }

.orbit {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(199,255,24,.5);
  border-radius: 50%;
  box-shadow: inset 0 0 38px rgba(199,255,24,.035), 0 0 30px rgba(199,255,24,.05);
}

.orbit-one { transform: rotateX(68deg); animation: orbit-one 7s linear infinite; }
.orbit-two { transform: rotateY(68deg); border-color: rgba(40,231,255,.5); animation: orbit-two 9s linear infinite reverse; }
.orbit-three { width: 51%; transform: rotate(32deg); border-style: dashed; border-color: rgba(115,87,255,.8); animation: spin 12s linear infinite; }

.digital-core {
  position: relative;
  width: 27%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #fff 0 3%, var(--cyan) 4%, var(--violet) 30%, #161226 62%, #050507 72%);
  box-shadow: 0 0 24px rgba(40,231,255,.8), 0 0 68px rgba(115,87,255,.55), 0 0 120px rgba(115,87,255,.25);
  animation: core-pulse 3s ease-in-out infinite;
}

.digital-core::before,
.digital-core::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
}

.digital-core::before { inset: -14%; }
.digital-core::after { inset: -35%; border-style: dashed; opacity: .35; animation: spin 9s linear infinite; }
.digital-core i { width: 12%; aspect-ratio: 1; background: #fff; border-radius: 50%; box-shadow: 0 0 16px #fff; }

.core-label {
  position: absolute;
  padding: 4px 7px;
  color: #9f9fab;
  background: rgba(5,5,7,.76);
  border: 1px solid var(--line);
  font-size: 6px;
  letter-spacing: .13em;
}

.label-one { left: 5%; top: 21%; }
.label-two { right: 2%; top: 36%; color: var(--neon); }
.label-three { left: 19%; bottom: 12%; color: var(--cyan); }

.signal-bars { height: 15px; display: flex; align-items: end; gap: 3px; }
.signal-bars i { width: 2px; height: 35%; background: var(--neon); animation: bars 1.1s ease-in-out infinite alternate; }
.signal-bars i:nth-child(2) { height: 80%; animation-delay: .15s; }
.signal-bars i:nth-child(3) { height: 45%; animation-delay: .3s; }
.signal-bars i:nth-child(4) { height: 100%; animation-delay: .45s; }
.signal-bars i:nth-child(5) { height: 55%; animation-delay: .6s; }
.signal-bars i:nth-child(6) { height: 72%; animation-delay: .75s; }
.signal-bars i:nth-child(7) { height: 30%; animation-delay: .9s; }

.hero-lower {
  position: relative;
  z-index: 5;
  grid-column: 7 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 35px;
}

.hero-lower p { max-width: 500px; margin: 0; color: #a6a6b0; font-size: clamp(12px, .95vw, 16px); line-height: 1.65; }

.hero-link { display: flex; align-items: center; gap: 14px; font-size: 9px; font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
.hero-link i { width: 58px; height: 58px; display: grid; place-items: center; color: var(--void); background: var(--neon); border-radius: 50%; transition: transform .35s ease, box-shadow .35s ease; }
.hero-link:hover i { transform: rotate(45deg) scale(1.08); box-shadow: 0 0 35px rgba(199,255,24,.38); }

.hero-side-code {
  position: absolute;
  z-index: 5;
  left: 13px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #65656f;
  font-size: 6px;
  font-weight: 750;
  letter-spacing: .18em;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

.hero-side-code i { width: 50px; height: 1px; background: var(--neon); transform-origin: left; animation: line-grow 2s ease-in-out infinite; }

.intro-fade { animation: fade-up .9s .5s both; }
.intro-panel { animation: panel-in 1.1s .35s cubic-bezier(.2,.8,.2,1) both; }

.signal-marquee {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  padding: 18px 0 23px;
  color: var(--void);
  background: var(--neon);
  transform: rotate(-1deg) scale(1.02);
  transform-origin: center;
}

.marquee-track { width: max-content; display: flex; align-items: center; gap: 28px; animation: marquee 24s linear infinite; }
.marquee-track span { font-size: clamp(25px, 2.5vw, 46px); font-weight: 760; letter-spacing: -.055em; }
.plus-mark { font-size: 25px; font-weight: 300; animation: spin 4s linear infinite; }

.work-section {
  position: relative;
  z-index: 2;
  padding: 150px 3.2vw 120px;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--void-soft);
  background-size: 80px 80px;
}

.section-head {
  display: grid;
  grid-template-columns: .6fr 2fr .8fr;
  gap: 4vw;
  align-items: end;
  padding-bottom: 90px;
}

.section-head > div { align-self: start; display: flex; flex-direction: column; gap: 8px; color: #85858e; font-size: 8px; font-weight: 750; letter-spacing: .14em; }
.section-no { color: var(--neon); }

.section-head h2 { margin: 0; font-size: clamp(58px, 8.2vw, 148px); font-weight: 680; line-height: .82; letter-spacing: -.078em; }
.section-head h2 span { color: transparent; -webkit-text-stroke: max(1px,.012em) #7f7f89; }
.section-head > p { max-width: 330px; margin: 0; color: #888892; font-size: 11px; line-height: 1.7; }

.work-grid { display: grid; grid-template-columns: 1.32fr .68fr; gap: 18px; }

.work-card {
  position: relative;
  min-height: min(56vw, 720px);
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-strong);
  background: #0e0e14;
  clip-path: polygon(18px 0,100% 0,100% calc(100% - 18px),calc(100% - 18px) 100%,0 100%,0 18px);
  transition: border-color .35s ease, transform .45s cubic-bezier(.2,.8,.2,1);
}

.work-card:hover { border-color: var(--neon); transform: translateY(-8px); }
.work-card-med { background: linear-gradient(145deg,#10101a,#101527); }

.work-card-top { position: relative; z-index: 4; display: flex; justify-content: space-between; color: #90909a; font-size: 7px; font-weight: 750; letter-spacing: .13em; }
.work-visual { position: relative; flex: 1; display: grid; place-items: center; overflow: hidden; }
.work-visual::before { content: ""; position: absolute; inset: 7%; border: 1px solid rgba(255,255,255,.07); }

.work-card-bottom { position: relative; z-index: 4; display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.work-card-bottom h3 { max-width: 540px; margin: 0; font-size: clamp(22px, 2.6vw, 45px); font-weight: 620; line-height: 1; letter-spacing: -.055em; }
.work-card-bottom a { width: 53px; height: 53px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line-strong); border-radius: 50%; transition: color .3s ease, background .3s ease, transform .3s ease; }
.work-card:hover .work-card-bottom a { color: var(--void); background: var(--neon); transform: rotate(45deg); }

.tour-visual strong,
.med-visual strong { position: relative; z-index: 3; font-size: clamp(90px, 17vw, 300px); font-weight: 760; line-height: 1; letter-spacing: -.12em; }
.tour-visual strong { color: transparent; -webkit-text-stroke: 2px var(--text); text-shadow: 0 0 40px rgba(115,87,255,.35); }

.globe-ring { position: absolute; width: 58%; aspect-ratio: 1; border: 1px solid rgba(115,87,255,.65); border-radius: 50%; box-shadow: 0 0 50px rgba(115,87,255,.1); }
.ring-a { animation: spin 13s linear infinite; border-style: dashed; }
.ring-b { transform: rotateX(65deg); border-color: rgba(40,231,255,.5); }
.ring-c { width: 38%; border-color: rgba(199,255,24,.55); }
.flight-path { position: absolute; width: 67%; height: 32%; border-top: 1px solid var(--neon); border-radius: 50%; transform: rotate(-17deg); filter: drop-shadow(0 0 6px var(--neon)); }
.flight-path::after { content: ""; position: absolute; right: 8%; top: -4px; width: 7px; height: 7px; background: var(--neon); border-radius: 50%; box-shadow: 0 0 12px var(--neon); }

.med-visual strong { color: var(--cyan); text-shadow: 0 0 28px rgba(40,231,255,.35); writing-mode: vertical-rl; font-size: clamp(72px, 9vw, 160px); }
.data-wave { position: absolute; inset: 8%; display: flex; align-items: center; gap: 3px; transform: rotate(-12deg); }
.data-wave i { flex: 1; height: calc(15% + (var(--i, 1) * 1%)); max-height: 80%; background: linear-gradient(to top,transparent,rgba(40,231,255,.6),transparent); animation: wave 1.8s ease-in-out infinite alternate; }
.data-wave i:nth-child(3n) { height: 65%; animation-delay: .2s; }
.data-wave i:nth-child(4n) { height: 85%; animation-delay: .4s; }
.data-wave i:nth-child(5n) { height: 45%; animation-delay: .6s; }
.pulse-line { position: absolute; left: 5%; right: 5%; height: 1px; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse-sweep 3s ease-in-out infinite; }

.work-card-nomi { background: linear-gradient(155deg,#161116,#0d0a0f 60%,#181019); }
.work-card-burkut { background: linear-gradient(155deg,#101814,#0a0e0c 64%,#09100d); }

.nomi-visual strong {
  position: relative;
  z-index: 3;
  font-size: clamp(70px, 13vw, 230px);
  font-weight: 380;
  letter-spacing: -.085em;
  mix-blend-mode: difference;
}

.nomi-arch {
  position: absolute;
  width: 46%;
  height: 64%;
  overflow: hidden;
  border: 1px solid rgba(255,120,214,.75);
  border-radius: 50% 50% 4px 4px;
  box-shadow: 0 0 45px rgba(255,63,190,.16), inset 0 0 55px rgba(115,87,255,.15);
}

.nomi-arch::before,
.nomi-arch::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110%;
  height: 1px;
  background: rgba(255,120,214,.55);
  transform-origin: left;
}

.nomi-arch::before { transform: rotate(42deg); }
.nomi-arch::after { transform: rotate(138deg); }
.nomi-arch i { position: absolute; inset: 11%; border: 1px solid rgba(255,255,255,.18); border-radius: 50% 50% 2px 2px; }
.nomi-code { position: absolute; right: 9%; bottom: 14%; color: #ff78d6; font-size: 7px; letter-spacing: .16em; }

.burkut-visual strong {
  position: relative;
  z-index: 4;
  color: transparent;
  font-size: clamp(150px, 27vw, 480px);
  font-weight: 800;
  line-height: .72;
  -webkit-text-stroke: 2px var(--neon);
  filter: drop-shadow(0 0 20px rgba(199,255,24,.2));
}

.topo-lines { position: absolute; inset: 6%; display: grid; place-items: center; }
.topo-lines i { position: absolute; width: 82%; aspect-ratio: 1.15; border: 1px solid rgba(199,255,24,.22); border-radius: 42% 58% 53% 47% / 48% 36% 64% 52%; animation: topo 13s ease-in-out infinite alternate; }
.topo-lines i:nth-child(2) { width: 68%; animation-delay: -2s; }
.topo-lines i:nth-child(3) { width: 54%; animation-delay: -4s; }
.topo-lines i:nth-child(4) { width: 40%; animation-delay: -6s; }
.topo-lines i:nth-child(5) { width: 25%; animation-delay: -8s; border-color: rgba(40,231,255,.45); }
.depth-code { position: absolute; left: 8%; bottom: 12%; color: #89a38e; font-size: 6px; line-height: 1.7; letter-spacing: .14em; }

.work-card-techo { background: linear-gradient(145deg,#1d110b,#0f0b09 58%,#1a0f09); }
.work-card-turap { background: linear-gradient(145deg,#162013,#0b1009 62%,#10170d); }
.work-card-ttm { background: linear-gradient(145deg,#101820,#090d12 62%,#0c131a); }
.work-card-morden { background: linear-gradient(145deg,#171124,#0d0a13 62%,#130d1d); }

.techo-visual strong {
  position: relative;
  z-index: 4;
  color: transparent;
  font-size: clamp(95px,18vw,315px);
  font-weight: 780;
  line-height: .8;
  letter-spacing: -.1em;
  -webkit-text-stroke: 2px #ff7a2f;
  filter: drop-shadow(0 0 25px rgba(255,122,47,.22));
}

.factory-grid { position: absolute; inset: 8%; display: flex; align-items: end; justify-content: center; gap: 5%; }
.factory-grid::before { content: ""; position: absolute; left: 0; right: 0; bottom: 16%; height: 1px; background: #ff7a2f; box-shadow: 0 0 12px rgba(255,122,47,.7); }
.factory-grid i { width: 10%; height: 44%; border: 1px solid rgba(255,122,47,.42); border-bottom: 0; background: repeating-linear-gradient(to bottom,transparent 0 16px,rgba(255,122,47,.12) 17px 18px); }
.factory-grid i:nth-child(2) { height: 65%; }
.factory-grid i:nth-child(3) { height: 82%; }
.factory-grid i:nth-child(4) { height: 58%; }
.factory-grid i:nth-child(5) { height: 72%; }
.techo-code { position: absolute; right: 8%; bottom: 12%; color: #c07b55; font-size: 6px; line-height: 1.7; letter-spacing: .14em; }

.turap-visual strong {
  position: relative;
  z-index: 4;
  color: #d9e5a6;
  font-size: clamp(54px,8vw,145px);
  font-weight: 680;
  line-height: 1;
  letter-spacing: -.08em;
  text-shadow: 0 0 28px rgba(199,255,24,.2);
  writing-mode: vertical-rl;
}

.olive-orbit { position: absolute; width: 73%; aspect-ratio: 1; border: 1px solid rgba(167,190,87,.42); border-radius: 48% 52% 58% 42% / 38% 52% 48% 62%; }
.olive-a { animation: topo 14s ease-in-out infinite alternate; }
.olive-b { width: 55%; border-color: rgba(218,179,80,.52); transform: rotate(34deg); }
.olive-c { width: 31%; background: radial-gradient(circle at 35% 30%,#c7ff18,#66752d 28%,#1b2414 62%); border: 0; box-shadow: 0 0 36px rgba(199,255,24,.18); animation: core-pulse 4s ease-in-out infinite; }
.turap-code { position: absolute; left: 8%; bottom: 12%; color: #899568; font-size: 6px; letter-spacing: .14em; }

.ttm-visual strong {
  position: relative;
  z-index: 4;
  color: transparent;
  font-size: clamp(110px,20vw,340px);
  font-weight: 760;
  line-height: .8;
  letter-spacing: -.12em;
  -webkit-text-stroke: 2px #48b8ff;
  filter: drop-shadow(0 0 28px rgba(72,184,255,.2));
}

.bore-core { position: absolute; top: 7%; bottom: 7%; left: 50%; width: 22%; overflow: hidden; border: 1px solid rgba(72,184,255,.38); transform: translateX(-50%); }
.bore-core i { display: block; height: 14.285%; border-bottom: 1px solid rgba(72,184,255,.3); background: repeating-linear-gradient(135deg,rgba(72,184,255,.08) 0 4px,transparent 5px 11px); animation: strata 3s ease-in-out infinite alternate; }
.bore-core i:nth-child(2n) { background-color: rgba(115,87,255,.12); animation-delay: .3s; }
.bore-core i:nth-child(3n) { background-color: rgba(199,255,24,.08); animation-delay: .6s; }
.depth-scale { position: absolute; left: 7%; top: 18%; bottom: 18%; display: flex; flex-direction: column; justify-content: space-between; color: #678295; font-size: 6px; line-height: 3.5; letter-spacing: .1em; }
.depth-scale::after { content: ""; position: absolute; top: 0; bottom: 0; left: 28px; width: 1px; background: linear-gradient(to bottom,#48b8ff,transparent); }
.ttm-code { position: absolute; right: 7%; bottom: 12%; color: #66859b; font-size: 6px; letter-spacing: .14em; }

.morden-visual strong {
  position: relative;
  z-index: 4;
  color: transparent;
  font-size: clamp(180px,31vw,520px);
  font-weight: 790;
  line-height: .68;
  -webkit-text-stroke: 2px #a38dff;
  filter: drop-shadow(0 0 26px rgba(115,87,255,.25));
}

.tower-system { position: absolute; inset: 10% 12%; display: flex; align-items: end; justify-content: center; gap: 7%; perspective: 800px; }
.tower-system::after { content: ""; position: absolute; left: 0; right: 0; bottom: 10%; height: 1px; background: linear-gradient(90deg,transparent,#a38dff,transparent); box-shadow: 0 0 12px rgba(163,141,255,.55); }
.tower-system i { width: 14%; height: 52%; border: 1px solid rgba(163,141,255,.42); background: repeating-linear-gradient(to bottom,rgba(163,141,255,.12) 0 2px,transparent 3px 14px); transform: skewY(-9deg); }
.tower-system i:nth-child(2) { height: 76%; }
.tower-system i:nth-child(3) { height: 91%; }
.tower-system i:nth-child(4) { height: 64%; }
.morden-code { position: absolute; right: 8%; top: 17%; color: #8176aa; font-size: 6px; line-height: 1.7; letter-spacing: .14em; }

.all-work-link {
  width: max-content;
  margin: 70px 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #a7a7b0;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.all-work-link i { width: 72px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 999px; transition: color .3s ease, background .3s ease, width .3s ease; }
.all-work-link:hover { color: var(--neon); }
.all-work-link:hover i { width: 88px; color: var(--void); background: var(--neon); }

.section-rail {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: 20px;
  color: #777783;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .15em;
}

.section-rail span:first-child { color: var(--neon); }
.section-rail span:nth-child(2) { justify-self: center; color: var(--text); }
.section-rail span:last-child { justify-self: end; }

.manifesto-section {
  position: relative;
  z-index: 2;
  padding: 100px 3.2vw 120px;
  overflow: clip;
  background:
    radial-gradient(circle at 18% 34%, rgba(115,87,255,.12), transparent 25%),
    #08080b;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: .9fr 1.35fr;
  gap: 8vw;
  padding: 110px 0 150px;
}

.manifesto-sticky { position: sticky; top: 110px; align-self: start; }
.terminal-label { color: var(--neon); font-size: 12px; font-weight: 750; letter-spacing: .15em; }

.manifesto-sticky h2 {
  margin: 34px 0 40px;
  font-size: clamp(60px, 8vw, 144px);
  font-weight: 660;
  line-height: .79;
  letter-spacing: -.078em;
}

.manifesto-sticky h2 span { color: var(--neon); text-shadow: 0 0 20px rgba(199,255,24,.34); }
.manifesto-sticky > p { max-width: 470px; margin: 0; color: #9696a0; font-size: 13px; line-height: 1.72; }
.manifesto-flow { display: grid; gap: 20px; }

.system-card {
  position: relative;
  min-height: 550px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: linear-gradient(150deg,rgba(19,19,26,.94),rgba(9,9,12,.94));
  clip-path: polygon(18px 0,100% 0,100% calc(100% - 18px),calc(100% - 18px) 100%,0 100%,0 18px);
}

.system-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(110deg,transparent 30%,rgba(255,255,255,.025),transparent 62%); transform: translateX(-100%); transition: transform .8s ease; }
.system-card:hover::after { transform: translateX(100%); }
.system-card-neon { color: var(--void); background: var(--neon); border-color: var(--neon); }

.system-card-head { display: flex; justify-content: space-between; color: #777783; font-size: 7px; font-weight: 750; letter-spacing: .15em; }
.system-card-neon .system-card-head { color: rgba(5,5,7,.58); }

.system-card h3 { position: relative; z-index: 3; max-width: 650px; margin: auto 0 20px; font-size: clamp(34px, 4.3vw, 74px); font-weight: 610; line-height: .94; letter-spacing: -.062em; }
.system-card > p { position: relative; z-index: 3; max-width: 500px; margin: 0; color: #92929d; font-size: 11px; line-height: 1.7; }
.system-card-neon > p { color: rgba(5,5,7,.7); }

.system-tags { position: relative; z-index: 3; margin-top: 28px; display: flex; flex-wrap: wrap; gap: 7px; }
.system-tags span { padding: 6px 9px; color: #92929c; border: 1px solid var(--line); border-radius: 999px; font-size: 6px; font-weight: 750; letter-spacing: .13em; }
.system-card-neon .system-tags span { color: var(--void); border-color: rgba(5,5,7,.24); }

.module-icon { position: absolute; right: 6%; top: 16%; width: 38%; aspect-ratio: 1; display: grid; place-items: center; opacity: .75; }
.module-radar { border: 1px solid rgba(40,231,255,.4); border-radius: 50%; box-shadow: 0 0 60px rgba(40,231,255,.08); }
.module-radar::before,
.module-radar::after { content: ""; position: absolute; background: rgba(40,231,255,.32); }
.module-radar::before { width: 100%; height: 1px; }
.module-radar::after { width: 1px; height: 100%; }
.module-radar i { position: absolute; width: 74%; aspect-ratio: 1; border: 1px dashed rgba(40,231,255,.45); border-radius: 50%; animation: spin 12s linear infinite; }
.module-radar i:nth-child(2) { width: 45%; animation-direction: reverse; }
.module-radar i:nth-child(3) { width: 8%; background: var(--cyan); border: 0; box-shadow: 0 0 20px var(--cyan); }

.module-cube { transform: rotate(28deg); }
.module-cube::before,
.module-cube::after,
.module-cube i { content: ""; position: absolute; width: 58%; aspect-ratio: 1; border: 1px solid rgba(115,87,255,.68); }
.module-cube::before { transform: translate(-18%,-18%); }
.module-cube::after { transform: translate(18%,18%); }
.module-cube i:nth-child(1) { transform: rotate(45deg); border-color: rgba(199,255,24,.42); }
.module-cube i:nth-child(2) { width: 30%; transform: rotate(-16deg); border-color: rgba(40,231,255,.62); }
.module-cube i:nth-child(3) { width: 9%; background: var(--violet); border: 0; box-shadow: 0 0 28px var(--violet); }

.module-pulse { opacity: .42; }
.module-pulse::before { content: ""; position: absolute; width: 70%; aspect-ratio: 1; border: 1px solid var(--void); border-radius: 50%; }
.module-pulse i { position: absolute; width: 16%; height: 65%; border: 1px solid var(--void); }
.module-pulse i:nth-child(1) { transform: translateX(-120%) rotate(-20deg); }
.module-pulse i:nth-child(2) { transform: rotate(20deg); }
.module-pulse i:nth-child(3) { transform: translateX(120%) rotate(-20deg); }

.metric-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.metric-grid > div { min-height: 330px; padding: 24px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric-grid > div > span { color: #777783; font-size: 7px; font-weight: 750; letter-spacing: .14em; }
.metric-grid strong { margin: auto 0 22px; font-size: clamp(75px, 10vw, 178px); font-weight: 580; line-height: .8; letter-spacing: -.095em; }
.metric-grid strong i { color: var(--neon); font-style: normal; font-size: .35em; }
.metric-grid p { margin: 0; color: #8d8d96; font-size: 10px; }

.services-section {
  position: relative;
  z-index: 2;
  padding: 100px 3.2vw 140px;
  background: #0d0d11;
  border-top: 1px solid var(--line);
}

.services-title { display: grid; grid-template-columns: .6fr 2fr .8fr; gap: 4vw; align-items: end; padding: 120px 0 90px; }
.services-title > span { align-self: start; color: var(--neon); font-size: 8px; font-weight: 750; letter-spacing: .14em; }
.services-title h2 { margin: 0; font-size: clamp(60px, 8vw, 145px); font-weight: 650; line-height: .8; letter-spacing: -.078em; }
.services-title h2 i { color: transparent; font-style: normal; -webkit-text-stroke: max(1px,.012em) var(--violet); filter: drop-shadow(0 0 18px rgba(115,87,255,.22)); }
.services-title p { margin: 0; color: #8b8b95; font-size: 11px; line-height: 1.7; }

.service-matrix { border-top: 1px solid var(--line-strong); }
.service-line { position: relative; display: grid; grid-template-columns: 55px 1.35fr 1fr .65fr auto; align-items: center; gap: 24px; min-height: 142px; border-bottom: 1px solid var(--line); transition: padding .35s ease, background .35s ease; }
.service-line::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--neon); transform: scaleY(0); transition: transform .35s ease; }
.service-line:hover { padding-left: 20px; padding-right: 18px; background: rgba(199,255,24,.04); }
.service-line:hover::before { transform: scaleY(1); }
.service-index { color: var(--neon); font-size: 8px; font-weight: 750; }
.service-line h3 { margin: 0; font-size: clamp(25px, 3.1vw, 55px); font-weight: 580; line-height: 1; letter-spacing: -.06em; }
.service-line > p { max-width: 430px; margin: 0; color: #898993; font-size: 10px; line-height: 1.65; }
.service-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.service-chips span { padding: 5px 7px; color: #696974; border: 1px solid var(--line); border-radius: 999px; font-size: 5px; letter-spacing: .12em; }
.service-action { width: 49px; height: 49px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; transition: color .3s ease, background .3s ease, transform .3s ease; }
.service-line:hover .service-action { color: var(--void); background: var(--neon); transform: rotate(45deg); }

.process-section {
  position: relative;
  z-index: 2;
  padding: 100px 3.2vw 140px;
  overflow: hidden;
  background: #07070a;
}

.process-glow { position: absolute; left: 50%; top: 40%; width: 70vw; height: 70vw; pointer-events: none; border-radius: 50%; background: radial-gradient(circle,rgba(115,87,255,.13),rgba(40,231,255,.035) 35%,transparent 68%); transform: translate(-50%,-50%); }
.process-head { position: relative; display: grid; grid-template-columns: 1fr 3fr; gap: 5vw; align-items: start; padding: 120px 0; }
.process-head > span { padding-top: 12px; color: var(--neon); font-size: 8px; font-weight: 750; letter-spacing: .15em; }
.process-head h2 { margin: 0; font-size: clamp(70px, 11vw, 198px); font-weight: 650; line-height: .75; letter-spacing: -.085em; }
.process-head h2 i { color: transparent; font-style: normal; -webkit-text-stroke: max(1px,.01em) var(--cyan); }

.process-track { position: relative; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5,1fr); list-style: none; }
.process-track::before { content: ""; position: absolute; left: 3%; right: 3%; top: 58px; height: 1px; background: linear-gradient(90deg,var(--neon),var(--cyan),var(--violet)); box-shadow: 0 0 16px rgba(40,231,255,.35); }
.process-track li { position: relative; min-height: 270px; padding: 0 22px; display: flex; flex-direction: column; }
.process-track li > span { color: #70707a; font-size: 7px; font-weight: 750; letter-spacing: .14em; }
.process-track li > i { position: relative; z-index: 2; width: 13px; height: 13px; margin: 38px 0 auto; background: var(--void); border: 1px solid var(--neon); border-radius: 50%; box-shadow: 0 0 0 5px var(--void),0 0 18px rgba(199,255,24,.4); }
.process-track li:nth-child(3) > i { border-color: var(--cyan); }
.process-track li:nth-child(4) > i,
.process-track li:nth-child(5) > i { border-color: var(--violet); }
.process-track strong { margin-top: auto; font-size: clamp(20px,2vw,34px); font-weight: 580; letter-spacing: -.05em; }
.process-track p { min-height: 36px; margin: 15px 0 0; color: #777782; font-size: 9px; line-height: 1.5; }

.contact-section {
  position: relative;
  z-index: 2;
  min-height: 96svh;
  padding: 38px 3.2vw 36px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--void);
  background: var(--neon);
}

.contact-grid { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(5,5,7,.7) 1px,transparent 1px),linear-gradient(90deg,rgba(5,5,7,.7) 1px,transparent 1px); background-size: 80px 80px; }
.contact-meta { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; padding-bottom: 18px; border-bottom: 1px solid rgba(5,5,7,.28); font-size: 7px; font-weight: 750; letter-spacing: .15em; }
.contact-meta span:nth-child(2) { justify-self: center; }
.contact-meta span:last-child { justify-self: end; }
.contact-main { position: relative; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.contact-label { margin-bottom: 27px; font-size: 8px; font-weight: 750; letter-spacing: .15em; }
.contact-main h2 { margin: 0; font-size: clamp(75px, 12vw, 220px); font-weight: 700; line-height: .73; letter-spacing: -.09em; }
.contact-main h2 i { color: transparent; font-style: normal; -webkit-text-stroke: max(1px,.011em) var(--void); }
.contact-button { position: absolute; right: 7vw; bottom: 9%; width: clamp(140px,15vw,240px); aspect-ratio: 1; display: grid; place-items: center; color: var(--text); background: var(--void); border-radius: 50%; box-shadow: 0 0 0 12px rgba(5,5,7,.08); transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.contact-button::before { content: ""; position: absolute; inset: 12px; border: 1px dashed rgba(255,255,255,.25); border-radius: 50%; animation: spin 14s linear infinite; }
.contact-button span { font-size: 9px; font-weight: 750; letter-spacing: .12em; transform: translateY(-13px); }
.contact-button .arrow-icon { position: absolute; right: 30%; bottom: 23%; width: 27px; height: 27px; }
.contact-button:hover { transform: scale(1.08) rotate(6deg); }

.contact-data { position: relative; display: grid; grid-template-columns: repeat(4,1fr); padding-top: 18px; border-top: 1px solid rgba(5,5,7,.28); }
.contact-data > div { display: flex; flex-direction: column; gap: 6px; }
.contact-data > div > span { margin-bottom: 8px; color: rgba(5,5,7,.55); font-size: 6px; font-weight: 750; letter-spacing: .15em; }
.contact-data a,.contact-data p { width: max-content; margin: 0; font-size: 11px; font-weight: 650; }
.contact-data .status-dot { background: var(--void); box-shadow: none; }

.site-footer { position: relative; z-index: 2; background: var(--void); border-top: 1px solid var(--line); }
.footer-social-section { position: relative; padding: clamp(80px,8vw,145px) 3.2vw; display: grid; grid-template-columns: minmax(300px,.8fr) minmax(0,1.35fr); gap: clamp(55px,8vw,145px); overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 15% 45%,rgba(199,255,24,.07),transparent 34%),var(--void); }
.footer-social-section::after { content: 'SOSYAL'; position: absolute; right: -2vw; bottom: -5vw; color: transparent; opacity: .12; font-size: clamp(120px,22vw,390px); font-weight: 800; line-height: .7; letter-spacing: -.09em; -webkit-text-stroke: 1px var(--neon); pointer-events: none; }
.footer-social-section > header { position: relative; z-index: 1; align-self: start; }
.footer-social-section > header > span { color: var(--neon); font-size: 11px; font-weight: 850; letter-spacing: .13em; }
.footer-social-section h2 { margin: 28px 0 30px; color: var(--text); font-size: clamp(58px,7.2vw,128px); line-height: .82; letter-spacing: -.075em; }
.footer-social-section p { max-width: 620px; margin: 0; color: #aaaab4; font-size: 18px; line-height: 1.7; }
.footer-social-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-content: start; border-top: 1px solid var(--line-strong); }
.footer-social-grid a { min-height: 118px; padding: 24px 22px; display: grid; grid-template-columns: 38px minmax(0,1fr) 34px; gap: 15px; align-items: center; color: #dedee4; border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); transition: color .25s ease,background .25s ease; }
.footer-social-grid a:nth-child(even) { border-right: 0; }
.footer-social-grid a > span { color: var(--neon); font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.footer-social-grid a strong { font-size: clamp(21px,2vw,31px); font-weight: 650; letter-spacing: -.03em; }
.footer-social-grid a i { width: 34px; height: 34px; display: grid; place-items: center; justify-self: end; color: var(--neon); border: 1px solid var(--line-strong); border-radius: 50%; font-size: 16px; font-style: normal; transition: color .25s ease,background .25s ease,transform .25s ease; }
.footer-social-grid a:hover,.footer-social-grid a:focus-visible { color: var(--void); background: var(--neon); }
.footer-social-grid a:hover > span,.footer-social-grid a:focus-visible > span { color: var(--void); }
.footer-social-grid a:hover i,.footer-social-grid a:focus-visible i { color: var(--neon); background: var(--void); border-color: var(--void); transform: rotate(45deg); }
.footer-bottom { min-height: 190px; padding: 35px 3.2vw; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; }
.footer-bottom > p { margin: 0; color: #8d8d97; font-size: 10px; text-align: center; letter-spacing: .11em; }
.footer-bottom > div { display: flex; justify-content: flex-end; flex-wrap: wrap; align-items: center; gap: 12px 24px; color: #8d8d97; font-size: 10px; letter-spacing: .1em; }
.footer-bottom > div a:hover { color: var(--neon); }
.site-footer .footer-phone { display: inline-flex; gap: 7px; align-items: center; color: #d3d3da; white-space: nowrap; letter-spacing: .02em; }
.site-footer .footer-phone span { color: var(--neon); font-size: 9px; font-weight: 800; letter-spacing: .1em; }

.main-nav a.is-active { color: var(--neon); }
.main-nav a.is-active span { color: var(--neon); }
.subpage-site { background: var(--void); }
.subpage-footer .footer-bottom > nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 24px; color: #9999a3; font-size: 11px; }
.subpage-footer .footer-bottom > nav a:hover { color: var(--neon); }
.subpage-footer .footer-bottom > nav .legal-link { color: #c4c4cc; }
.footer-cookie-settings { margin: 0; padding: 0; color: inherit; background: none; border: 0; font: inherit; cursor: pointer; }
.footer-cookie-settings:hover,.footer-cookie-settings:focus-visible { color: var(--neon); }

.sub-hero {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-scroll: 0px;
  position: relative;
  z-index: 2;
  isolation: isolate;
  min-height: max(720px, 92svh);
  padding: 120px 3.2vw 46px;
  display: grid;
  grid-template-columns: repeat(12,1fr);
  grid-template-rows: auto 1fr;
  column-gap: 14px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--void);
}

.sub-hero::after { content: ''; position: absolute; z-index: 1; inset: 0; pointer-events: none; opacity: .23; background-image: repeating-radial-gradient(circle at 0 0,rgba(255,255,255,.16) 0 1px,transparent 1px 4px); background-size: 5px 5px; mix-blend-mode: soft-light; }
.projects-page-hero { background: radial-gradient(ellipse at 77% 42%,rgba(115,87,255,.25),transparent 27%),radial-gradient(circle at 62% 70%,rgba(255,78,203,.07),transparent 22%),linear-gradient(118deg,#050507 0 52%,#0b0818 78%,#050507 100%); }
.approach-page-hero { background: radial-gradient(ellipse at 72% 45%,rgba(199,255,24,.16),transparent 27%),conic-gradient(from 210deg at 72% 46%,transparent,rgba(199,255,24,.055),transparent 28%),linear-gradient(118deg,#050507 0 54%,#091008 82%,#050507); }
.services-page-hero { background: radial-gradient(ellipse at 72% 44%,rgba(40,231,255,.2),transparent 29%),linear-gradient(90deg,transparent 58%,rgba(40,231,255,.045) 58% 59%,transparent 59%),linear-gradient(118deg,#050507 0 52%,#051318 82%,#050507); }
.blog-page-hero { background: radial-gradient(ellipse at 76% 38%,rgba(255,72,189,.14),transparent 25%),radial-gradient(circle at 66% 67%,rgba(255,126,47,.08),transparent 24%),linear-gradient(118deg,#050507 0 53%,#130812 80%,#050507); }

.sub-hero-system { position: absolute; z-index: 1; inset: 0; overflow: hidden; pointer-events: none; transform: translate3d(var(--hero-shift-x),calc(var(--hero-shift-y) + var(--hero-scroll)),0) scale(1.025); transform-origin: 72% 45%; transition: transform .18s ease-out; }

/* Projects — perspective case-file portal. */
.project-portal { position: absolute; right: 1.5%; top: 11%; width: 52%; height: 71%; perspective: 1400px; transform: rotateZ(-2deg); }
.project-plate { --plate-transform: rotateY(-24deg) rotateX(8deg); position: absolute; width: 43%; height: 43%; padding: 19px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; color: #cec7ff; border: 1px solid rgba(139,108,255,.48); background: linear-gradient(145deg,rgba(115,87,255,.13),rgba(5,5,7,.12)); box-shadow: 0 26px 80px rgba(0,0,0,.4),inset 0 0 45px rgba(115,87,255,.05); clip-path: polygon(18px 0,100% 0,100% calc(100% - 18px),calc(100% - 18px) 100%,0 100%,0 18px); animation: project-plate-float 8s ease-in-out infinite; }
.project-plate::before { content: ''; position: absolute; inset: 0; opacity: .3; background-image: linear-gradient(rgba(139,108,255,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(139,108,255,.18) 1px,transparent 1px); background-size: 34px 34px; }
.project-plate i,.project-plate b { position: relative; z-index: 1; }
.project-plate i { font-size: 9px; font-style: normal; font-weight: 800; letter-spacing: .15em; }
.project-plate b { color: transparent; font-size: clamp(22px,2.2vw,42px); line-height: .86; letter-spacing: -.055em; -webkit-text-stroke: 1px rgba(185,169,255,.8); }
.project-plate.plate-a { left: 6%; top: 4%; }
.project-plate.plate-b { --plate-transform: rotateY(22deg) rotateX(-5deg); right: 3%; top: 22%; animation-delay: -2.7s; }
.project-plate.plate-c { --plate-transform: rotateY(-18deg) rotateX(-4deg); left: 27%; bottom: 0; animation-delay: -5.4s; }
.project-portal-ring { position: absolute; left: 19%; top: 13%; width: 62%; aspect-ratio: 1; border: 1px solid rgba(115,87,255,.28); border-radius: 50%; transform: rotateX(65deg); animation: hero-ring-spin 18s linear infinite; }
.project-portal-ring.ring-b { left: 10%; top: 4%; width: 80%; border-style: dashed; opacity: .45; animation-direction: reverse; animation-duration: 26s; }
.project-portal-scan { position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: linear-gradient(90deg,transparent,#8e70ff,transparent); box-shadow: 0 0 18px rgba(115,87,255,.8); animation: hero-scan 5.5s ease-in-out infinite; }

/* Approach — connected decision network. */
.method-network { position: absolute; right: -1%; top: 12%; width: 54%; height: 73%; overflow: visible; filter: drop-shadow(0 0 12px rgba(199,255,24,.24)); }
.method-network path { fill: none; stroke: rgba(199,255,24,.48); stroke-width: 1.2; stroke-dasharray: 9 13; animation: method-route 16s linear infinite; }
.method-network path:nth-child(2) { stroke: rgba(255,255,255,.17); stroke-dasharray: 3 16; animation-direction: reverse; }
.method-network circle { fill: #080d08; stroke: #c7ff18; stroke-width: 2; transform-box: fill-box; transform-origin: center; animation: method-node 3s ease-in-out infinite; }
.method-network circle:nth-child(2n) { animation-delay: -1.4s; }
.method-radar { position: absolute; right: 8%; top: 14%; width: 42%; aspect-ratio: 1; display: grid; place-items: center; opacity: .48; }
.method-radar > span { position: absolute; width: calc(32% + var(--ring,0%)); aspect-ratio: 1; border: 1px solid rgba(199,255,24,.25); border-radius: 50%; }
.method-radar > span:nth-child(2) { --ring: 28%; border-style: dashed; animation: hero-ring-spin 22s linear infinite; }
.method-radar > span:nth-child(3) { --ring: 58%; }
.method-radar > i { width: 47%; height: 1px; background: linear-gradient(90deg,transparent,#c7ff18); transform-origin: 100% 50%; animation: radar-sweep 7s linear infinite; }
.method-code { position: absolute; color: rgba(220,255,121,.58); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.method-code.code-a { right: 36%; top: 23%; }.method-code.code-b { right: 8%; top: 34%; }.method-code.code-c { right: 30%; bottom: 15%; }.method-code.code-d { right: 5%; bottom: 26%; }

/* Services — modular circuit architecture. */
.service-circuit { position: absolute; right: -2%; top: 9%; width: 58%; height: 78%; filter: drop-shadow(0 0 12px rgba(40,231,255,.25)); }
.service-circuit path { fill: none; stroke: rgba(40,231,255,.52); stroke-width: 1.4; stroke-dasharray: 2 10; animation: circuit-flow 12s linear infinite; }
.service-circuit path:nth-child(2) { animation-direction: reverse; }
.service-circuit circle { fill: #061014; stroke: #28e7ff; stroke-width: 2; }
.service-modules { position: absolute; right: 4%; top: 17%; width: 50%; height: 62%; display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: repeat(2,1fr); gap: 13px; transform: perspective(1200px) rotateY(-10deg) rotateX(3deg); }
.service-modules span { position: relative; padding: 15px; display: flex; justify-content: space-between; align-items: flex-start; color: rgba(178,247,255,.68); border: 1px solid rgba(40,231,255,.24); background: linear-gradient(145deg,rgba(40,231,255,.07),transparent); font-size: 9px; font-weight: 800; letter-spacing: .12em; animation: module-pulse 4.8s ease-in-out infinite; }
.service-modules span:nth-child(2),.service-modules span:nth-child(5) { animation-delay: -1.6s; }.service-modules span:nth-child(3),.service-modules span:nth-child(6) { animation-delay: -3.2s; }
.service-modules span::after { content: ''; position: absolute; right: 12px; bottom: 12px; width: 18px; height: 18px; border-right: 1px solid #28e7ff; border-bottom: 1px solid #28e7ff; }
.service-modules i { color: #28e7ff; font-style: normal; }
.service-sweep { position: absolute; right: 1%; top: 12%; width: 57%; height: 2px; background: linear-gradient(90deg,transparent,#28e7ff,transparent); box-shadow: 0 0 25px rgba(40,231,255,.65); animation: service-sweep 6s ease-in-out infinite; }

/* Blog — living editorial signal. */
.journal-ghost { position: absolute; right: -2%; top: 11%; color: transparent; opacity: .17; font-size: clamp(120px,17vw,320px); font-weight: 800; line-height: .8; letter-spacing: -.09em; writing-mode: vertical-rl; -webkit-text-stroke: 1px rgba(255,82,192,.72); }
.journal-stream { position: absolute; top: -12%; width: 17%; display: flex; flex-direction: column; gap: 68px; color: rgba(255,185,229,.55); font-size: 10px; font-weight: 800; letter-spacing: .12em; writing-mode: vertical-rl; animation: journal-flow 18s linear infinite; }
.journal-stream.stream-a { right: 35%; }.journal-stream.stream-b { right: 13%; animation-duration: 23s; animation-direction: reverse; color: rgba(255,184,102,.45); }
.journal-stream span { padding: 18px 10px; border-right: 1px solid rgba(255,82,192,.22); }
.journal-cursor { position: absolute; right: 23%; bottom: 18%; display: flex; gap: 13px; align-items: center; color: rgba(255,255,255,.55); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.journal-cursor i { width: 10px; height: 18px; background: #ff52c0; box-shadow: 0 0 18px rgba(255,82,192,.75); animation: cursor-blink 1s steps(2,end) infinite; }

.sub-hero-meta {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  color: #73737d;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .15em;
}

.sub-hero-meta span:nth-child(2) { justify-self: center; }
.sub-hero-meta span:last-child { justify-self: end; color: var(--neon); }

.sub-hero-copy { position: relative; z-index: 3; grid-column: 1 / 10; align-self: center; padding-top: 7vh; }
.sub-hero-copy h1 { margin: 28px 0 0; font-size: clamp(68px,10vw,182px); font-weight: 680; line-height: .77; letter-spacing: -.082em; }
.sub-hero-copy h1 i { color: transparent; font-style: normal; -webkit-text-stroke: max(1px,.012em) var(--neon); filter: drop-shadow(0 0 20px rgba(199,255,24,.14)); }
.services-page-hero .sub-hero-copy h1 i { -webkit-text-stroke-color: var(--cyan); }
.projects-page-hero .sub-hero-copy h1 i { -webkit-text-stroke-color: var(--violet); }

.sub-hero-aside { position: relative; z-index: 3; grid-column: 10 / -1; align-self: end; display: flex; flex-direction: column; gap: 50px; padding-bottom: 25px; }
.sub-hero-aside > p { max-width: 340px; margin: 0; color: #8a8a94; font-size: 11px; line-height: 1.7; }
.sub-hero-aside > div { display: flex; align-items: end; justify-content: space-between; padding-top: 17px; border-top: 1px solid var(--line); }
.sub-hero-aside > div span { color: #92929c; font-size: 9px; letter-spacing: .12em; }
.sub-hero-aside strong { color: var(--neon); font-size: clamp(58px,6vw,110px); font-weight: 600; line-height: .75; letter-spacing: -.08em; }

.archive-section,
.approach-detail-section,
.services-detail-section,
.brief-section {
  position: relative;
  z-index: 2;
  padding: 100px 3.2vw 130px;
  background: #09090c;
}

.archive-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; padding-top: 90px; }
.archive-card { --card-accent: var(--neon); position: relative; min-height: min(47vw,650px); padding: 20px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line-strong); background: linear-gradient(145deg,color-mix(in srgb,var(--card-accent) 8%,#0b0b0f),#09090c 62%); clip-path: polygon(18px 0,100% 0,100% calc(100% - 18px),calc(100% - 18px) 100%,0 100%,0 18px); transition: transform .4s ease,border-color .4s ease; }
.archive-card:hover { transform: translateY(-7px); border-color: var(--card-accent); }
.archive-violet { --card-accent: #7357ff; }
.archive-cyan { --card-accent: #28e7ff; }
.archive-pink { --card-accent: #ff61c8; }
.archive-green { --card-accent: #c7ff18; }
.archive-orange { --card-accent: #ff7a2f; }
.archive-olive { --card-accent: #a7be57; }
.archive-blue { --card-accent: #48b8ff; }
.archive-purple { --card-accent: #a38dff; }
.archive-card-meta { position: relative; z-index: 3; display: flex; justify-content: space-between; color: #7a7a85; font-size: 7px; font-weight: 750; letter-spacing: .13em; }
.archive-art { position: relative; flex: 1; display: grid; place-items: center; overflow: hidden; }
.archive-art::before { content: ""; position: absolute; inset: 10%; border: 1px solid rgba(255,255,255,.06); }
.archive-art strong { position: relative; z-index: 3; color: transparent; font-size: clamp(75px,14vw,250px); font-weight: 760; line-height: .8; letter-spacing: -.1em; -webkit-text-stroke: 2px var(--card-accent); filter: drop-shadow(0 0 24px color-mix(in srgb,var(--card-accent) 35%,transparent)); }
.archive-ring { position: absolute; width: 50%; aspect-ratio: 1; border: 1px solid color-mix(in srgb,var(--card-accent) 55%,transparent); border-radius: 50%; }
.archive-ring.ring-one { animation: spin 12s linear infinite; border-style: dashed; }
.archive-ring.ring-two { width: 68%; transform: rotateX(65deg); opacity: .46; }
.archive-scan { position: absolute; left: 8%; right: 8%; height: 1px; background: var(--card-accent); box-shadow: 0 0 13px var(--card-accent); animation: archive-scan 4s ease-in-out infinite; }
.archive-card-foot { position: relative; z-index: 3; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.archive-card-foot > div > span { color: #777782; font-size: 7px; letter-spacing: .11em; }
.archive-card-foot h2 { max-width: 560px; margin: 12px 0 0; font-size: clamp(25px,3vw,50px); font-weight: 600; line-height: .96; letter-spacing: -.06em; }
.archive-card-foot > a { width: 52px; height: 52px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line-strong); border-radius: 50%; transition: transform .3s ease,color .3s ease,background .3s ease; }
.archive-card:hover .archive-card-foot > a { color: var(--void); background: var(--card-accent); transform: rotate(45deg); }

.sub-cta { position: relative; z-index: 2; min-height: 650px; padding: 90px 3.2vw; display: flex; flex-direction: column; justify-content: center; overflow: hidden; background: radial-gradient(circle at 72% 52%,rgba(115,87,255,.16),transparent 30%),var(--void); border-top: 1px solid var(--line); }
.sub-cta > span { color: var(--neon); font-size: 8px; font-weight: 750; letter-spacing: .15em; }
.sub-cta h2 { margin: 32px 0 0; font-size: clamp(64px,9vw,164px); font-weight: 650; line-height: .78; letter-spacing: -.08em; }
.sub-cta h2 i { color: transparent; font-style: normal; -webkit-text-stroke: max(1px,.012em) var(--neon); }
.sub-cta > a { position: absolute; right: 8vw; bottom: 17%; width: clamp(130px,14vw,220px); aspect-ratio: 1; display: grid; place-items: center; color: var(--void); background: var(--neon); border-radius: 50%; transition: transform .35s ease; }
.sub-cta > a span { font-size: 16px; font-weight: 750; letter-spacing: .11em; }
.sub-cta > a .arrow-icon { position: absolute; right: 28%; bottom: 25%; width: 28px; height: 28px; }
.sub-cta > a:hover { transform: scale(1.08) rotate(7deg); }

.approach-intro,
.brief-intro { display: grid; grid-template-columns: .55fr 1.7fr .8fr; gap: 5vw; align-items: end; padding: 110px 0 90px; }
.approach-intro > span,
.brief-intro > span { align-self: start; color: var(--neon); font-size: 12px; font-weight: 750; letter-spacing: .14em; }
.approach-intro h2,
.brief-intro h2 { margin: 0; font-size: clamp(55px,7.7vw,140px); font-weight: 640; line-height: .8; letter-spacing: -.078em; }
.approach-intro h2 i,
.brief-intro h2 i { color: transparent; font-style: normal; -webkit-text-stroke: max(1px,.012em) var(--violet); }
.approach-intro > p,
.brief-intro > p { margin: 0; color: #888892; font-size: 18px; line-height: 1.7; }

.phase-list { border-top: 1px solid var(--line-strong); }
.phase-card { display: grid; grid-template-columns: 90px 1.4fr 1fr; gap: 35px; min-height: 260px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.phase-number { display: flex; flex-direction: column; gap: 22px; color: var(--neon); font-size: 8px; }
.phase-number i { width: 13px; height: 13px; border: 1px solid var(--neon); border-radius: 50%; box-shadow: 0 0 15px rgba(199,255,24,.35); }
.phase-content > span { color: #71717b; font-size: 7px; font-weight: 750; letter-spacing: .14em; }
.phase-content h3 { margin: 48px 0 18px; font-size: clamp(34px,4vw,70px); font-weight: 600; line-height: .95; letter-spacing: -.06em; }
.phase-content p { max-width: 590px; margin: 0; color: #85858f; font-size: 11px; line-height: 1.65; }
.phase-tags { display: flex; flex-wrap: wrap; align-content: end; justify-content: flex-end; gap: 18px; padding-bottom: 5px; }
.phase-tags span { padding: 14px 10px; color: #777782; border: 1px solid var(--line); border-radius: 600px; font-size: 14px; letter-spacing: .12em; }

.principles-section,
.tech-stack-section,
.contact-options-section { position: relative; z-index: 2; padding: 100px 3.2vw 130px; background: #0d0d11; border-top: 1px solid var(--line); }
.principles-grid { display: grid; grid-template-columns: repeat(3,1fr); padding-top: 90px; border-left: 1px solid var(--line); }
.principles-grid article { min-height: 420px; padding: 25px; display: flex; flex-direction: column; border-top: 1px solid var(--line); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principles-grid article > span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--neon); border: 1px solid var(--neon); border-radius: 50%; font-size: 8px; }
.principles-grid h3 { margin: auto 0 20px; font-size: clamp(34px,4vw,67px); font-weight: 600; letter-spacing: -.06em; }
.principles-grid p { max-width: 380px; margin: 0; color: #85858f; font-size: 11px; line-height: 1.65; }
.page-metrics { display: grid; grid-template-columns: repeat(3,1fr); padding-top: 100px; }
.page-metrics > div { display: flex; flex-direction: column; align-items: center; }
.page-metrics strong { font-size: clamp(78px,10vw,175px); font-weight: 580; line-height: .8; letter-spacing: -.09em; }
.page-metrics strong i { color: var(--neon); font-style: normal; font-size: .35em; }
.page-metrics span { margin-top: 20px; color: #7b7b85; font-size: 8px; letter-spacing: .13em; }

.services-detail-section { background: #09090c; }
.service-detail-list { display: grid; gap: 20px; padding-top: 90px; }
.service-detail { --service-accent: var(--neon); position: relative; min-height: 540px; padding: 27px; display: grid; grid-template-columns: .55fr 1.1fr .9fr; grid-template-rows: auto 1fr; gap: 25px 5vw; overflow: hidden; border: 1px solid var(--line-strong); background: linear-gradient(145deg,color-mix(in srgb,var(--service-accent) 6%,#111117),#0b0b0f); clip-path: polygon(18px 0,100% 0,100% calc(100% - 18px),calc(100% - 18px) 100%,0 100%,0 18px); }
.service-detail-cyan { --service-accent: var(--cyan); }
.service-detail-violet { --service-accent: var(--violet); }
.service-detail-orange { --service-accent: #ff7a2f; }
.service-detail::before { content: ""; position: absolute; right: 6%; top: 12%; width: 26%; aspect-ratio: 1; border: 1px dashed color-mix(in srgb,var(--service-accent) 55%,transparent); border-radius: 50%; animation: spin 14s linear infinite; }
.service-detail::after { content: ""; position: absolute; right: 13%; top: 24%; width: 11%; aspect-ratio: 1; background: radial-gradient(circle,#fff 0 3%,var(--service-accent) 5%,transparent 68%); border-radius: 50%; filter: drop-shadow(0 0 20px var(--service-accent)); }
.service-detail-head { grid-column: 1 / -1; display: flex; justify-content: space-between; color: #9696a0; font-size: 10px; letter-spacing: .12em; }
.service-detail-head span:first-child { color: var(--service-accent); }
.service-detail-copy { align-self: end; grid-column: 1 / 3; position: relative; z-index: 2; }
.service-detail-copy h2 { margin: 0 0 25px; font-size: clamp(48px,6.6vw,120px); font-weight: 610; line-height: .84; letter-spacing: -.075em; }
.service-detail-copy p { max-width: 650px; margin: 0; color: #888893; font-size: 11px; line-height: 1.7; }
.deliverable-grid { align-self: end; display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.deliverable-grid span { min-height: 62px; padding: 12px; display: flex; flex-direction: column; justify-content: space-between; color: #b0b0b9; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 11px; line-height: 1.45; }
.deliverable-grid i { color: var(--service-accent); font-style: normal; font-size: 9px; }
.service-detail > a { position: absolute; right: 27px; bottom: 27px; width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; transition: transform .3s ease,background .3s ease,color .3s ease; }
.service-detail:hover > a { color: var(--void); background: var(--service-accent); transform: rotate(45deg); }

.tech-stack-copy { display: grid; grid-template-columns: .55fr 1.7fr .8fr; gap: 5vw; align-items: end; padding: 110px 0 90px; }
.tech-stack-copy > span { align-self: start; color: var(--cyan); font-size: 8px; font-weight: 750; letter-spacing: .14em; }
.tech-stack-copy h2 { margin: 0; font-size: clamp(58px,8vw,145px); font-weight: 640; line-height: .79; letter-spacing: -.08em; }
.tech-stack-copy h2 i { color: transparent; font-style: normal; -webkit-text-stroke: max(1px,.012em) var(--cyan); }
.tech-stack-copy p { margin: 0; color: #888892; font-size: 11px; line-height: 1.7; }
.tech-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px; padding: 28px; color: var(--void); background: var(--cyan); }
.tech-band span { font-size: clamp(19px,2vw,36px); font-weight: 720; letter-spacing: -.045em; }
.tech-band i { font-style: normal; font-size: 22px; }

.contact-page-hero { position: relative; z-index: 2; min-height: max(760px,100svh); padding: 115px 3.2vw 38px; display: flex; flex-direction: column; overflow: hidden; color: var(--text); border-bottom: 1px solid var(--line); background: radial-gradient(ellipse at 74% 40%,rgba(40,231,255,.16),transparent 27%),radial-gradient(circle at 62% 72%,rgba(199,255,24,.08),transparent 25%),linear-gradient(118deg,#050507 0 53%,#071318 80%,#050507 100%); }
.contact-page-hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .46; background-image: linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom,#000,rgba(0,0,0,.82) 78%,transparent); }
.contact-page-hero::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg,transparent 49.95%,rgba(199,255,24,.18) 50%,transparent 50.05%); }
.contact-page-hero .sub-hero-meta { position: relative; z-index: 2; display: grid; color: #bdbdc6; font-size: 12px; }
.contact-page-hero .sub-hero-meta span:last-child { color: var(--neon); }
.contact-page-main { position: relative; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.contact-page-main { z-index: 2; }
.contact-page-main > span { margin-bottom: 26px; color: var(--neon); font-size: 13px; font-weight: 750; letter-spacing: .12em; }
.contact-page-main h1 { margin: 0; font-size: clamp(72px,11.4vw,208px); font-weight: 690; line-height: .73; letter-spacing: -.088em; }
.contact-page-main h1 i { color: transparent; font-style: normal; -webkit-text-stroke: max(1px,.011em) var(--neon); }
.contact-page-button { position: absolute; right: 7vw; bottom: 10%; width: clamp(150px,15vw,235px); aspect-ratio: 1; display: grid; place-items: center; color: var(--void); background: var(--neon); border-radius: 50%; box-shadow: 0 0 0 12px rgba(199,255,24,.055),0 0 80px rgba(199,255,24,.13); transition: transform .35s ease; }
.contact-page-button span { font-size: 14px; font-weight: 780; letter-spacing: .08em; transform: translateY(-12px); }
.contact-page-button .arrow-icon { position: absolute; right: 30%; bottom: 23%; width: 28px; height: 28px; }
.contact-page-button:hover { transform: scale(1.08) rotate(7deg); }
.contact-page-data { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(auto-fit,minmax(175px,1fr)); gap: 22px; padding-top: 22px; border-top: 1px solid var(--line-strong); }
.contact-page-data > div { display: flex; flex-direction: column; gap: 8px; }
.contact-page-data span { color: #9797a2; font-size: 11px; font-weight: 750; letter-spacing: .12em; }
.contact-page-data a,.contact-page-data p { width: fit-content; max-width: 100%; margin: 0; color: #f1f1f4; font-size: 16px; font-weight: 650; overflow-wrap: anywhere; }
.contact-page-data a:hover { color: var(--neon); }
.contact-page-data .status-dot { background: var(--neon); box-shadow: 0 0 12px rgba(199,255,24,.75); }

/* CMS-managed media layers */
.cms-hero-image { position: absolute; inset: 0; z-index: 1; overflow: hidden; opacity: .2; filter: saturate(.65) contrast(1.08); mix-blend-mode: luminosity; pointer-events: none; }
.cms-hero-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.contact-page-hero .cms-hero-image { opacity: .12; mix-blend-mode: screen; }
.cms-project-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .72; filter: saturate(.8) contrast(1.08); mix-blend-mode: luminosity; }
.archive-art .cms-project-image { z-index: 0; }
.archive-art .cms-project-image ~ * { position: relative; z-index: 1; }
.work-visual .cms-project-image { z-index: 0; }
.work-visual .cms-project-image ~ strong { position: relative; z-index: 2; }
.brand-copy { max-width: 100px; white-space: normal; }

.brief-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.brief-grid article { min-height: 330px; padding: 22px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brief-grid article > span { color: var(--neon); font-size: 7px; }
.brief-grid h3 { margin: auto 0 17px; font-size: clamp(25px,2.7vw,48px); font-weight: 600; letter-spacing: -.055em; }
.brief-grid p { margin: 0; color: #81818c; font-size: 10px; line-height: 1.65; }

.contact-option-grid { display: grid; grid-template-columns: repeat(3,1fr); padding-top: 90px; }
.contact-option-grid > a { position: relative; min-height: 450px; padding: 25px; display: flex; flex-direction: column; border: 1px solid var(--line); margin-left: -1px; overflow: hidden; transition: color .35s ease,background .35s ease; }
.contact-option-grid > a::after { content: ""; position: absolute; right: -20%; top: -20%; width: 70%; aspect-ratio: 1; border: 1px solid rgba(199,255,24,.18); border-radius: 50%; }
.contact-option-grid > a > span { color: var(--neon); font-size: 7px; letter-spacing: .14em; }
.contact-option-grid h2 { margin: auto 0 0; font-size: clamp(31px,3.4vw,59px); font-weight: 600; line-height: .96; letter-spacing: -.06em; }
.contact-option-grid .arrow-icon { position: absolute; right: 25px; top: 25px; }
.contact-option-grid > a:hover { color: var(--void); background: var(--neon); }
.contact-option-grid > a:hover > span { color: var(--void); }

@keyframes archive-scan { 0%,100% { transform: translateY(-150px); opacity: 0; } 20%,80% { opacity: 1; } 50% { transform: translateY(150px); } }

.reveal { opacity: 0; transform: translateY(48px); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes title-rise { from { opacity: 0; transform: translateY(1em) skewY(4deg); } to { opacity: 1; transform: translateY(0) skewY(0); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes panel-in { from { opacity: 0; transform: translateX(80px) rotateY(-12deg); } to { opacity: 1; transform: translateX(0) rotateY(0); } }
@keyframes scan { to { transform: translateY(750%); } }
@keyframes blink { 50% { opacity: .35; transform: scale(.72); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes orbit-one { to { transform: rotateX(68deg) rotateZ(360deg); } }
@keyframes orbit-two { to { transform: rotateY(68deg) rotateZ(360deg); } }
@keyframes core-pulse { 50% { transform: scale(1.08); filter: brightness(1.25); } }
@keyframes bars { to { height: 100%; } }
@keyframes line-grow { 50% { transform: scaleX(.25); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes wave { to { transform: scaleY(.3); opacity: .35; } }
@keyframes pulse-sweep { 0%,100% { transform: translateY(-140px); opacity: 0; } 20%,80% { opacity: 1; } 50% { transform: translateY(140px); } }
@keyframes topo { to { transform: rotate(28deg) scale(.92); border-radius: 58% 42% 37% 63% / 34% 57% 43% 66%; } }
@keyframes strata { to { transform: translateX(7px); filter: brightness(1.5); } }
@keyframes project-plate-float {
  0%,100% { transform: var(--plate-transform) translate3d(0,0,0); }
  50% { transform: var(--plate-transform) translate3d(0,-16px,22px); }
}
@keyframes hero-ring-spin { to { transform: rotateX(65deg) rotateZ(360deg); } }
@keyframes hero-scan {
  0%,100% { transform: translateY(-210px); opacity: 0; }
  20%,80% { opacity: 1; }
  50% { transform: translateY(210px); }
}
@keyframes method-route { to { stroke-dashoffset: -220; } }
@keyframes method-node {
  0%,100% { transform: scale(.8); opacity: .55; }
  50% { transform: scale(1.45); opacity: 1; }
}
@keyframes radar-sweep { to { transform: rotate(360deg); } }
@keyframes circuit-flow { to { stroke-dashoffset: -190; } }
@keyframes module-pulse {
  0%,100% { border-color: rgba(40,231,255,.2); background-color: rgba(40,231,255,0); }
  50% { border-color: rgba(40,231,255,.62); background-color: rgba(40,231,255,.08); }
}
@keyframes service-sweep {
  0%,100% { transform: translateY(-80px); opacity: 0; }
  20%,80% { opacity: 1; }
  50% { transform: translateY(520px); }
}
@keyframes journal-flow { to { transform: translateY(42%); } }
@keyframes cursor-blink { 50% { opacity: 0; } }

@media (max-width: 900px) {
  .cursor-glow { display: none; }
  .site-header { position: absolute; height: 70px; padding: 0 18px; grid-template-columns: 1fr auto; }
  .site-header.is-scrolled { height: 70px; background: transparent; border-color: transparent; backdrop-filter: none; }
  body.menu-open .site-header { position: fixed; z-index: 100; background: rgba(5,5,7,.96); border-color: var(--line); }
  .header-cta { display: none; }
  .menu-toggle { position: relative; z-index: 95; width: 43px; height: 43px; display: grid; place-content: center; gap: 6px; padding: 0; color: var(--text); background: var(--void); border: 1px solid var(--line-strong); border-radius: 50%; }
  .menu-toggle span { width: 17px; height: 1px; background: currentColor; transition: transform .3s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .main-nav { position: fixed; z-index: 90; inset: 0; height: 100dvh; padding: 110px 22px max(42px,env(safe-area-inset-bottom)); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 12px; overflow-y: auto; overscroll-behavior: contain; visibility: hidden; pointer-events: none; background: #09090c; transform: translateY(-100%); transition: transform .55s cubic-bezier(.7,0,.2,1),visibility 0s linear .55s; }
  .main-nav.is-open { visibility: visible; pointer-events: auto; transform: translateY(0); transition-delay: 0s; }
  .main-nav::before { content: "MENÜ / GEZİNME"; position: absolute; left: 22px; top: 105px; color: var(--neon); font-size: 10px; letter-spacing: .14em; }
  .main-nav a { width: 100%; padding: 12px 0; color: var(--text); border-bottom: 1px solid var(--line); font-size: clamp(37px, 12vw, 64px); font-weight: 680; letter-spacing: -.06em; }
  .main-nav a::after { display: none; }
  .main-nav a span { font-size: 12px; }

  .hero { min-height: 830px; padding: 95px 18px 26px; display: flex; flex-direction: column; }
  .tech-grid { background-size: 52px 52px; }
  .hero-meta { display: flex; justify-content: space-between; }
  .hero-meta span:nth-child(2) { display: none; }
  .hero-meta span:first-child { max-width: 190px; line-height: 1.5; }
  .hero-title-block { width: 100%; margin-top: 75px; padding: 0; }
  .title-code { width: 100%; margin-bottom: 15px; }
  .hero-title { font-size: clamp(54px, 16.2vw, 83px); line-height: .82; }
  .title-line-neon { padding-left: 0; }
  .title-line-end { padding-left: 0; }
  .signal-panel { top: 39%; right: -13%; width: 67vw; opacity: .62; }
  .hero-title-block { z-index: 6; }
  .hero-lower { z-index: 7; width: 100%; margin-top: auto; display: grid; grid-template-columns: 1fr auto; }
  .hero-lower p { max-width: 250px; font-size: 11px; }
  .hero-link span { display: none; }
  .hero-link i { width: 54px; height: 54px; }
  .hero-side-code { display: none; }

  .signal-marquee { padding: 14px 0 18px; }
  .marquee-track { gap: 18px; }

  .work-section { padding: 100px 18px 70px; background-size: 52px 52px; }
  .section-head { grid-template-columns: 1fr; gap: 35px; padding-bottom: 65px; }
  .section-head > div { flex-direction: row; }
  .section-head h2 { font-size: clamp(52px, 14.8vw, 78px); }
  .section-head > p { max-width: 90%; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { min-height: 125vw; padding: 15px; }
  .work-card-top { font-size: 6px; }
  .work-card-bottom h3 { font-size: 25px; }
  .work-card-bottom a { width: 45px; height: 45px; }

  .all-work-link { margin-top: 45px; }
  .section-rail { grid-template-columns: auto 1fr auto; }
  .section-rail span:nth-child(2) { justify-self: start; margin-left: 25px; }
  .section-rail span:last-child { font-size: 6px; }

  .manifesto-section,
  .services-section,
  .process-section { padding: 75px 18px 90px; }

  .manifesto-grid { grid-template-columns: 1fr; gap: 65px; padding: 80px 0 100px; }
  .manifesto-sticky { position: relative; top: 0; }
  .manifesto-sticky h2 { font-size: clamp(62px,19vw,95px); }
  .manifesto-sticky > p { max-width: 90%; font-size: 11px; }
  .system-card { min-height: 500px; padding: 20px; }
  .system-card h3 { font-size: clamp(36px,11vw,56px); }
  .module-icon { width: 50%; top: 13%; }

  .metric-grid { grid-template-columns: 1fr; }
  .metric-grid > div { min-height: 265px; }
  .metric-grid strong { font-size: 31vw; }

  .services-title { grid-template-columns: 1fr; gap: 35px; padding: 80px 0 65px; }
  .services-title h2 { font-size: clamp(55px,16vw,82px); }
  .services-title p { max-width: 88%; }
  .service-line { grid-template-columns: 35px 1fr auto; gap: 9px; min-height: 150px; padding: 20px 0; }
  .service-line h3 { font-size: clamp(24px,7.6vw,39px); }
  .service-line > p { grid-column: 2 / -1; max-width: 85%; }
  .service-chips { grid-column: 2 / -1; }
  .service-action { grid-column: 3; grid-row: 1; width: 42px; height: 42px; }
  .service-line:hover { padding-left: 9px; padding-right: 9px; }

  .process-head { grid-template-columns: 1fr; gap: 35px; padding: 80px 0 75px; }
  .process-head h2 { font-size: clamp(68px,20vw,105px); }
  .process-track { grid-template-columns: 1fr; }
  .process-track::before { left: 18px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .process-track li { min-height: 180px; padding: 0 0 0 55px; }
  .process-track li > span { position: absolute; left: 0; top: 4px; }
  .process-track li > i { position: absolute; left: 12px; top: 0; margin: 0; }
  .process-track strong { margin-top: 0; }
  .process-track p { max-width: 240px; }

  .contact-section { min-height: 820px; padding: 28px 18px 30px; }
  .contact-grid { background-size: 52px 52px; }
  .contact-meta span:nth-child(2) { display: none; }
  .contact-main { justify-content: flex-start; padding-top: 115px; }
  .contact-main h2 { font-size: clamp(65px,20vw,100px); }
  .contact-button { right: 0; bottom: 10%; width: 132px; }
  .contact-button span { font-size: 7px; }
  .contact-data { grid-template-columns: 1fr 1fr; gap: 25px 12px; }
  .contact-data a,.contact-data p { font-size: 9px; }

  .footer-bottom { min-height: 260px; padding: 35px 18px; grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom > p { text-align: left; }
  .footer-bottom > div { justify-content: space-between; }
}

@media (max-width: 900px) {
  .subpage-footer .footer-bottom > nav { justify-content: flex-start; flex-wrap: wrap; }
  .main-nav a.is-active { color: var(--neon); }

  .sub-hero { min-height: 760px; padding: 95px 18px 28px; display: flex; flex-direction: column; }
  .sub-hero-system { opacity: .55; transform: none; }
  .project-portal { right: -45%; top: 8%; width: 130%; height: 54%; }
  .project-plate { padding: 12px; }
  .project-plate.plate-c { display: none; }
  .project-portal-ring { left: 30%; top: 6%; width: 53%; }
  .project-portal-ring.ring-b { left: 21%; top: 0; width: 70%; }
  .method-network { right: -67%; top: 7%; width: 145%; height: 60%; }
  .method-radar { right: -35%; top: 10%; width: 105%; }
  .method-code { display: none; }
  .service-circuit { right: -65%; top: 7%; width: 145%; height: 64%; }
  .service-modules { right: -44%; top: 14%; width: 112%; height: 45%; grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(2,1fr); }
  .service-modules span:nth-child(5),.service-modules span:nth-child(6) { display: none; }
  .service-sweep { right: -38%; top: 13%; width: 102%; }
  .journal-ghost { right: -23%; top: 8%; font-size: clamp(120px,45vw,210px); }
  .journal-stream { width: 25%; opacity: .72; }
  .journal-stream.stream-a { right: 27%; }
  .journal-stream.stream-b { right: 2%; }
  .journal-cursor { display: none; }
  .sub-hero-meta { display: flex; justify-content: space-between; }
  .sub-hero-meta span:nth-child(2) { display: none; }
  .sub-hero-copy { margin-top: 105px; padding: 0; }
  .sub-hero-copy h1 { font-size: clamp(52px,15.5vw,79px); line-height: .81; }
  .sub-hero-aside { margin-top: auto; padding: 0; gap: 24px; }
  .sub-hero-aside > p { max-width: 260px; font-size: 10px; }
  .sub-hero-aside > div { width: 100%; }
  .sub-hero-aside strong { font-size: 58px; }

  .archive-section,
  .approach-detail-section,
  .services-detail-section,
  .brief-section,
  .principles-section,
  .tech-stack-section,
  .contact-options-section { padding: 75px 18px 85px; }

  .archive-grid { grid-template-columns: 1fr; padding-top: 65px; }
  .archive-card { min-height: 126vw; padding: 15px; }
  .archive-card-meta { font-size: 6px; }
  .archive-art strong { font-size: clamp(74px,26vw,120px); }
  .archive-card-foot h2 { font-size: 26px; }
  .archive-card-foot > a { width: 44px; height: 44px; }

  .sub-cta { min-height: 620px; padding: 75px 18px; justify-content: flex-start; }
  .sub-cta h2 { margin-top: 70px; font-size: clamp(54px,16vw,82px); }
  .sub-cta > a { right: 18px; bottom: 9%; width: 132px; }
  .sub-cta > a span { font-size: 16px; }

  .approach-intro,
  .brief-intro,
  .tech-stack-copy { grid-template-columns: 1fr; gap: 35px; padding: 80px 0 65px; }
  .approach-intro h2,
  .brief-intro h2,
  .tech-stack-copy h2 { font-size: clamp(50px,15vw,76px); }
  .approach-intro > p,
  .brief-intro > p,
  .tech-stack-copy p { max-width: 90%; }

  .phase-card { grid-template-columns: 45px 1fr; gap: 15px; min-height: 360px; }
  .phase-content h3 { margin-top: 55px; font-size: clamp(35px,10vw,52px); }
  .phase-tags { grid-column: 2; justify-content: flex-start; align-content: start; }

  .principles-grid { grid-template-columns: 1fr; padding-top: 65px; }
  .principles-grid article { min-height: 330px; }
  .page-metrics { grid-template-columns: 1fr; gap: 65px; }
  .page-metrics strong { font-size: 31vw; }

  .service-detail-list { padding-top: 65px; }
  .service-detail { min-height: 650px; padding: 20px; grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; }
  .service-detail::before { width: 50%; }
  .service-detail::after { width: 22%; right: 20%; }
  .service-detail-copy { grid-column: 1; align-self: end; }
  .service-detail-copy h2 { font-size: clamp(46px,13vw,68px); }
  .deliverable-grid { grid-column: 1; padding-right: 58px; }
  .service-detail > a { right: 20px; bottom: 20px; width: 45px; height: 45px; }
  .tech-band { gap: 15px; padding: 20px; }
  .tech-band span { font-size: 18px; }

  .contact-page-hero { min-height: 820px; padding: 95px 18px 30px; }
  .contact-page-hero .sub-hero-meta { display: flex; }
  .contact-page-hero::before { background-size: 52px 52px; }
  .contact-page-main { justify-content: flex-start; padding-top: 115px; }
  .contact-page-main h1 { font-size: clamp(59px,18vw,90px); }
  .contact-page-main > span { font-size: 11px; }
  .contact-page-button { right: 0; bottom: 13%; width: 132px; }
  .contact-page-button span { font-size: 11px; }
  .contact-page-data { grid-template-columns: 1fr 1fr; gap: 25px 10px; }
  .contact-page-data span { font-size: 9px; }
  .contact-page-data a,.contact-page-data p { font-size: 14px; line-height: 1.45; }

  .brief-grid { grid-template-columns: 1fr; }
  .brief-grid article { min-height: 260px; }
  .contact-option-grid { grid-template-columns: 1fr; padding-top: 65px; }
  .contact-option-grid > a { min-height: 340px; margin-top: -1px; }
  .contact-option-grid h2 { font-size: 37px; }
}

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

/* Dynamic projects, services and blog */
.empty-public { margin: 60px 0; padding: 35px; color: var(--muted); border: 1px solid var(--line); font-size: 12px; }
.service-category { padding-top: 80px; }
.service-category > header { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 24px; align-items: end; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.service-category > header > span { align-self: start; color: var(--neon); font-size: 8px; font-weight: 800; letter-spacing: .13em; }
.service-category > header h2 { margin: 0; font-size: clamp(48px,7vw,110px); line-height: .88; letter-spacing: -.07em; }
.service-category > header p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.8; }
.blog-section { position: relative; z-index: 2; padding: 105px 3.2vw 130px; border-bottom: 1px solid var(--line); background: var(--void); }
.blog-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; padding-top: 40px; background: var(--line); }
.blog-card { min-width: 0; background: var(--void); }
.blog-card-image { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; background: radial-gradient(circle at 65% 45%,rgba(115,87,255,.28),transparent 28%),linear-gradient(135deg,#12121a,#08080b); }
.blog-card-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .6s ease,filter .6s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.035); filter: saturate(1.15); }
.blog-card-placeholder { display: grid; place-items: center; color: var(--neon); 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: 48px 48px; }
.blog-card-placeholder span { padding: 10px 13px; border: 1px solid var(--line); background: rgba(5,5,7,.75); font-size: 8px; letter-spacing: .15em; }
.blog-card > div { min-height: 330px; padding: 30px; display: flex; flex-direction: column; }
.blog-card > div > span { color: var(--neon); font-size: 10px; letter-spacing: .1em; }
.blog-card h2 { margin: 35px 0 16px; font-size: clamp(30px,3.4vw,58px); line-height: 1; letter-spacing: -.055em; }
.blog-card p { max-width: 620px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.75; }
.text-link { width: max-content; margin-top: auto; display: inline-flex; align-items: center; gap: 10px; color: var(--neon); font-size: 11px; font-weight: 800; letter-spacing: .07em; }
.text-link .arrow-icon { width: 15px; }
.content-detail-hero { position: relative; z-index: 2; min-height: 780px; padding: 150px 3.2vw 70px; display: flex; align-items: flex-end; overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 78% 30%,rgba(115,87,255,.18),transparent 30%),var(--void); }
.content-detail-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .25; filter: saturate(.7) contrast(1.15); }
.content-detail-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(5,5,7,.3),rgba(5,5,7,.93)); }
.content-detail-head { position: relative; z-index: 3; width: 100%; display: grid; grid-template-columns: 1fr 3fr; gap: 30px; align-items: end; }
.content-detail-head > span { align-self: start; color: var(--neon); font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.content-detail-head h1 { grid-column: 2; max-width: 1200px; margin: 0; font-size: clamp(64px,10vw,168px); line-height: .83; letter-spacing: -.08em; overflow-wrap: anywhere; }
.content-detail-head > p { grid-column: 2; max-width: 720px; margin: 18px 0 0; color: #b6b6bf; font-size: 13px; line-height: 1.75; }
.content-meta { grid-column: 2; margin-top: 22px; display: flex; gap: 30px; flex-wrap: wrap; }
.content-meta span { display: grid; gap: 7px; color: var(--text); font-size: 10px; }
.content-meta i { color: #93939d; font-size: 9px; font-style: normal; letter-spacing: .1em; }
.content-detail-body { position: relative; z-index: 2; padding: 105px 3.2vw 130px; border-bottom: 1px solid var(--line); background: var(--void); }
.rich-content { max-width: 1260px; margin: 90px auto 0; display: grid; grid-template-columns: 140px minmax(0,900px); justify-content: center; gap: 64px; }
.rich-content > span { color: var(--neon); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.rich-content > div:not(.detail-deliverables) { color: #ceced4; font-size: clamp(16px,1.2vw,19px); line-height: 1.8; }
.rich-content-body { min-width: 0; overflow-wrap: anywhere; }
.rich-content-body > :first-child { margin-top: 0; }
.rich-content-body > :last-child { margin-bottom: 0; }
.rich-content-body h2 { margin: 2.1em 0 .55em; color: var(--text); font-size: clamp(34px,4.2vw,62px); line-height: 1; letter-spacing: -.055em; }
.rich-content-body h3 { margin: 1.9em 0 .55em; color: var(--text); font-size: clamp(26px,3vw,42px); line-height: 1.08; letter-spacing: -.04em; }
.rich-content-body h4 { margin: 1.7em 0 .5em; color: var(--neon); font-size: clamp(19px,2vw,27px); line-height: 1.2; letter-spacing: -.025em; }
.rich-content-body p { margin: 0 0 1.35em; }
.rich-content-body ul,.rich-content-body ol { margin: 1.3em 0 1.6em; padding-left: 1.4em; }
.rich-content-body li { margin: .5em 0; padding-left: .35em; }
.rich-content-body blockquote { margin: 2em 0; padding: 22px 28px; color: var(--text); border-left: 2px solid var(--neon); background: rgba(255,255,255,.035); }
.rich-content-body a { color: var(--neon); text-decoration: underline; text-underline-offset: .22em; }
.rich-content-body pre { max-width: 100%; margin: 2em 0; padding: 22px; overflow: auto; color: #dcffe0; background: #09090d; border: 1px solid var(--line); font: 13px/1.7 ui-monospace,SFMono-Regular,Consolas,monospace; white-space: pre; }
.rich-content-body :not(pre) > code { padding: .15em .4em; color: var(--neon); background: rgba(199,255,24,.08); font: .9em/1.5 ui-monospace,SFMono-Regular,Consolas,monospace; }
.rich-content-body hr { margin: 3em 0; border: 0; border-top: 1px solid var(--line); }
.content-detail-body .section-rail.reveal,
.content-detail-body .rich-content.reveal { opacity: 1; transform: none; }
.detail-deliverables { grid-column: 2; margin-top: 30px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.detail-deliverables span { min-height: 80px; padding: 18px; display: flex; align-items: center; gap: 15px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 11px; }
.detail-deliverables i { color: var(--neon); font-size: 8px; font-style: normal; }

@media (max-width: 1180px) and (min-width: 901px) {
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 12px; }
}

@media (max-width: 900px) {
  .blog-section,.content-detail-body { padding: 75px 18px 85px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card > div { min-height: 300px; padding: 24px 18px; }
  .service-category { padding-top: 65px; }
  .service-category > header { grid-template-columns: 1fr; }
  .service-category > header h2 { font-size: clamp(48px,14vw,74px); }
  .content-detail-hero { min-height: 720px; padding: 120px 18px 55px; }
  .content-detail-head { grid-template-columns: 1fr; }
  .content-detail-head h1,.content-detail-head > p,.content-meta { grid-column: 1; }
  .content-detail-head h1 { font-size: clamp(55px,16vw,88px); }
  .rich-content { margin-top: 65px; grid-template-columns: 1fr; gap: 32px; }
  .rich-content-body h2 { font-size: clamp(32px,11vw,48px); }
  .rich-content-body h3 { font-size: clamp(25px,8vw,36px); }
  .rich-content-body h4 { font-size: clamp(19px,6vw,26px); }
  .detail-deliverables { grid-column: 1; grid-template-columns: 1fr; }
}

/* Image-only project cards */
.archive-card {
  min-height: 0;
  padding: 0;
  display: block;
  aspect-ratio: 4 / 3;
  background: #07070a;
  clip-path: polygon(18px 0,100% 0,100% calc(100% - 18px),calc(100% - 18px) 100%,0 100%,0 18px);
}
.project-image-link { position: relative; width: 100%; height: 100%; display: block; overflow: hidden; background: #07070a; }
.project-image-link::after { content: ""; position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; height: 42%; pointer-events: none; background: linear-gradient(to top,rgba(5,5,7,.92),rgba(5,5,7,.45) 48%,transparent); }
.project-image-link img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1),filter .55s ease; }
.archive-card:hover .project-image-link img { transform: scale(1.035); filter: saturate(1.08) contrast(1.03); }
.project-image-placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: #777782; 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: 48px 48px; font-size: 8px; font-weight: 800; letter-spacing: .16em; }
.project-image-copy { position: absolute; left: 22px; right: 90px; bottom: 20px; z-index: 3; display: grid; gap: 8px; }
.project-image-name { color: #f5f5f3; font-size: clamp(24px,3vw,46px); font-weight: 650; line-height: .95; letter-spacing: -.055em; text-shadow: 0 3px 24px rgba(0,0,0,.75); }
.project-service-category { color: #e0e0e5; font-size: 11px; font-weight: 750; line-height: 1.35; letter-spacing: .09em; text-transform: uppercase; text-shadow: 0 2px 16px rgba(0,0,0,.8); }
.project-arrow { position: absolute; right: 18px; bottom: 18px; z-index: 3; width: 54px; height: 54px; display: grid; place-items: center; color: var(--card-accent); border: 1px solid color-mix(in srgb,var(--card-accent) 70%,#ffffff 5%); border-radius: 50%; background: color-mix(in srgb,var(--card-accent) 18%,rgba(5,5,7,.9)); backdrop-filter: blur(8px); transition: transform .35s ease,color .35s ease,background .35s ease; }
.project-arrow .arrow-icon { width: 19px; height: 19px; }
.archive-card:hover .project-arrow { color: var(--void); background: var(--card-accent); transform: rotate(45deg) scale(1.06); }

@media (max-width: 900px) {
  .archive-card { min-height: 0; aspect-ratio: 4 / 3; padding: 0; }
  .project-image-copy { left: 15px; right: 72px; bottom: 15px; gap: 6px; }
  .project-image-name { font-size: clamp(22px,7vw,34px); }
  .project-service-category { font-size: 10px; }
  .project-arrow { right: 12px; bottom: 12px; width: 46px; height: 46px; }
}

/* Readability pass: essential copy never uses decorative micro type. */
.brand-copy { font-size: 14px; }
.main-nav a { color: #e1e1e6; }
.main-nav a span { color: #8f8f99; }
.header-cta { font-size: 15px; }
.hero-lower p { max-width: 760px; color: #d0d0d7; font-size: clamp(21px,1.28vw,23px); line-height: 1.72; }
.section-head > p,
.manifesto-sticky > p,
.system-card > p,
.metric-grid p,
.services-title p,
.service-line > p,
.process-track p,
.sub-hero-aside > p,
.brief-intro > p,
.phase-content p,
.principles-grid p,
.service-detail-copy p,
.tech-stack-copy p,
.brief-grid p,
.service-category > header p,
.blog-card p,
.content-detail-head > p {
  color: #b8b8c1;
  font-size: clamp(18px,1.08vw,20px);
  line-height: 1.72;
}
.contact-data a,.contact-data p,.contact-page-data a,.contact-page-data p { font-size: 15px; }
.content-meta span { font-size: 14px; }
.detail-deliverables span { font-size: 15px; line-height: 1.5; }
.footer-bottom > p,.footer-bottom > div,.subpage-footer .footer-bottom > nav { font-size: 13px; }

@media (min-width: 1181px) {
  .main-nav a { font-size: 20px; font-weight: 680; }
  .main-nav a span { font-size: 12px; }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .main-nav a { font-size: 16px; }
  .main-nav a span { font-size: 11px; }
}

@media (max-width: 900px) {
  .brand-copy { font-size: 12px; }
  .hero-lower p { max-width: 100%; color: #d0d0d7; font-size: 18px; line-height: 1.68; }
  .section-head > p,
  .manifesto-sticky > p,
  .system-card > p,
  .metric-grid p,
  .services-title p,
  .service-line > p,
  .process-track p,
  .sub-hero-aside > p,
  .brief-intro > p,
  .phase-content p,
  .principles-grid p,
  .service-detail-copy p,
  .tech-stack-copy p,
  .brief-grid p,
  .service-category > header p,
  .blog-card p,
  .content-detail-head > p { font-size: 17px; line-height: 1.7; }
  .contact-data a,.contact-data p,.contact-page-data a,.contact-page-data p { font-size: 14px; }
  .section-rail { font-size: 11px; letter-spacing: .09em; }
}

/* Wider editorial layouts for service and blog detail pages. */
.page-hizmet-detay .rich-content,
.page-blog-detay .rich-content,
.page-kvkk .rich-content,
.page-cerez-politikasi .rich-content { max-width: 1640px; grid-template-columns: 120px minmax(0,1280px); gap: 70px; }
.page-hizmet-detay .rich-content-body,
.page-blog-detay .rich-content-body,
.page-kvkk .rich-content-body,
.page-cerez-politikasi .rich-content-body { width: 100%; max-width: none; }
.policy-detail-body { padding-top: 105px; }
.policy-content .rich-content-body { color: #d3d3da; font-size: clamp(18px,1.25vw,21px); line-height: 1.85; }
.policy-content .rich-content-body h2 { font-size: clamp(34px,3.5vw,56px); }

.service-related-section,.service-faq-section { position: relative; z-index: 2; padding: 105px 3.2vw 130px; border-bottom: 1px solid var(--line); background: var(--void); }
.detail-section-heading { margin: 85px 0 0; display: grid; grid-template-columns: minmax(120px,1fr) minmax(0,2.2fr) minmax(240px,1fr); gap: 36px; align-items: end; }
.detail-section-heading > span { align-self: start; color: var(--neon); font-size: 11px; font-weight: 850; letter-spacing: .13em; }
.detail-section-heading h2 { margin: 0; color: var(--text); font-size: clamp(56px,7.2vw,130px); line-height: .82; letter-spacing: -.075em; }
.detail-section-heading h2 i { color: transparent; font-style: normal; -webkit-text-stroke: max(1px,.012em) var(--neon); }
.detail-section-heading > p { margin: 0; color: #b8b8c1; font-size: 18px; line-height: 1.7; }
.service-related-section .archive-grid { padding-top: 70px; }

.faq-layout { max-width: 1640px; margin: 85px auto 0; display: grid; grid-template-columns: minmax(340px,.85fr) minmax(0,1.45fr); gap: clamp(55px,7vw,130px); align-items: start; }
.faq-layout .detail-section-heading { position: sticky; top: 120px; margin: 0; display: block; }
.faq-layout .detail-section-heading > span { display: block; margin-bottom: 28px; }
.faq-layout .detail-section-heading h2 { font-size: clamp(50px,5.8vw,104px); }
.faq-layout .detail-section-heading > p { max-width: 480px; margin-top: 30px; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-item summary { min-height: 102px; padding: 24px 6px; display: grid; grid-template-columns: 44px minmax(0,1fr) 48px; gap: 20px; align-items: center; color: var(--text); cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span { color: var(--neon); font-size: 11px; font-weight: 850; letter-spacing: .1em; }
.faq-item summary strong { font-size: clamp(20px,1.8vw,29px); font-weight: 620; line-height: 1.25; letter-spacing: -.025em; }
.faq-item summary i { width: 42px; height: 42px; display: grid; place-items: center; justify-self: end; color: var(--neon); border: 1px solid var(--line-strong); border-radius: 50%; font-size: 23px; font-style: normal; font-weight: 350; transition: transform .25s ease,background .25s ease,color .25s ease; }
.faq-item[open] summary i { color: var(--void); background: var(--neon); transform: rotate(45deg); }
.faq-answer { padding: 0 68px 34px 64px; color: #c8c8cf; font-size: 18px; line-height: 1.75; }
.faq-answer p { margin: 0 0 1em; }

@media (max-width: 900px) {
  .page-hizmet-detay .rich-content,.page-blog-detay .rich-content,.page-kvkk .rich-content,.page-cerez-politikasi .rich-content { grid-template-columns: 1fr; gap: 32px; }
  .service-related-section,.service-faq-section { padding: 78px 18px 92px; }
  .detail-section-heading { margin-top: 60px; grid-template-columns: 1fr; gap: 24px; }
  .detail-section-heading h2 { font-size: clamp(48px,14vw,76px); }
  .detail-section-heading > p { font-size: 17px; }
  .service-related-section .archive-grid { padding-top: 50px; }
  .faq-layout { margin-top: 60px; grid-template-columns: 1fr; gap: 48px; }
  .faq-layout .detail-section-heading { position: static; }
  .faq-item summary { min-height: 88px; padding: 20px 0; grid-template-columns: 32px minmax(0,1fr) 40px; gap: 12px; }
  .faq-item summary strong { font-size: 19px; }
  .faq-item summary i { width: 38px; height: 38px; }
  .faq-answer { padding: 0 0 28px 44px; font-size: 17px; }
  .footer-social-section { padding: 78px 18px 88px; grid-template-columns: 1fr; gap: 55px; }
  .footer-social-section h2 { margin-top: 22px; font-size: clamp(54px,17vw,82px); }
  .footer-social-section p { font-size: 17px; }
  .footer-social-grid { grid-template-columns: 1fr; }
  .footer-social-grid a { min-height: 92px; padding: 19px 16px; border-right: 0; }
}

/* Accessible first-visit cookie consent and preference controls. */
.visually-hidden { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }
.cookie-consent { position: fixed; z-index: 10000; left: 50%; bottom: 24px; width: min(1420px,calc(100vw - 48px)); color: #f4f4f7; background: rgba(10,10,16,.96); border: 1px solid rgba(255,255,255,.2); border-radius: 38px; box-shadow: 0 25px 90px rgba(0,0,0,.62),0 0 55px rgba(87,50,180,.16); backdrop-filter: blur(24px); opacity: 0; transform: translate(-50%,22px); transition: opacity .26s ease,transform .26s ease,border-radius .26s ease; }
.cookie-consent.is-visible { opacity: 1; transform: translate(-50%,0); }
.cookie-consent.has-open-panel { border-radius: 28px; }
.cookie-consent-main { min-height: 108px; padding: 18px 20px 18px 34px; display: grid; grid-template-columns: minmax(320px,1fr) auto; gap: 36px; align-items: center; }
.cookie-consent-copy { display: flex; gap: 20px; align-items: center; }
.cookie-consent-icon { width: 42px; height: 42px; display: grid; flex: 0 0 42px; place-items: center; font-size: 28px; filter: saturate(.9); }
.cookie-consent-copy p { max-width: 590px; margin: 0; color: #d0d0d7; font-size: 18px; font-weight: 560; line-height: 1.5; }
.cookie-consent-copy p a { color: var(--neon); text-decoration: underline; text-underline-offset: .22em; }
.cookie-consent-actions { display: flex; gap: 12px; align-items: center; }
.cookie-text-button,.cookie-primary-button { min-height: 54px; padding: 0 24px; border: 0; border-radius: 999px; font: 700 16px/1 "Plus Jakarta Sans Variable",Arial,sans-serif; cursor: pointer; transition: color .2s ease,background .2s ease,border-color .2s ease,transform .2s ease; }
.cookie-text-button { color: #d4d4da; background: transparent; text-decoration: underline; text-underline-offset: .22em; }
.cookie-text-button:hover,.cookie-text-button:focus-visible { color: var(--neon); }
.cookie-primary-button { min-width: 178px; color: #070709; background: var(--neon); border: 1px solid var(--neon); }
.cookie-primary-button:hover,.cookie-primary-button:focus-visible { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(199,255,24,.2); }
.cookie-preference-panel { padding: 0 34px 30px; border-top: 1px solid rgba(255,255,255,.12); }
.cookie-preference-panel > header { padding: 28px 0 22px; display: flex; justify-content: space-between; gap: 32px; }
.cookie-preference-panel > header span { color: var(--neon); font-size: 10px; font-weight: 850; letter-spacing: .13em; }
.cookie-preference-panel h2 { margin: 8px 0 6px; font-size: clamp(26px,2.3vw,38px); letter-spacing: -.04em; }
.cookie-preference-panel > header p { max-width: 780px; margin: 0; color: #aaaab4; font-size: 15px; line-height: 1.6; }
.cookie-preference-panel > header > button { width: 42px; height: 42px; flex: 0 0 42px; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; font-size: 28px; cursor: pointer; }
.cookie-category-list { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid rgba(255,255,255,.13); }
.cookie-category-list article { min-height: 142px; padding: 24px; display: flex; gap: 24px; justify-content: space-between; align-items: flex-start; border-right: 1px solid rgba(255,255,255,.13); }
.cookie-category-list article:last-child { border-right: 0; }
.cookie-category-list h3 { margin: 0 0 9px; font-size: 18px; }
.cookie-category-list p { margin: 0; color: #aaaab4; font-size: 14px; line-height: 1.55; }
.cookie-always-on { flex: 0 0 auto; color: var(--neon); font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.cookie-switch { position: relative; width: 52px; height: 30px; flex: 0 0 52px; cursor: pointer; }
.cookie-switch input { position: absolute; opacity: 0; pointer-events: none; }
.cookie-switch span { position: absolute; inset: 0; background: #292932; border: 1px solid #555560; border-radius: 999px; transition: .2s ease; }
.cookie-switch span::after { content: ''; position: absolute; top: 4px; left: 4px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform .2s ease; }
.cookie-switch input:checked + span { background: var(--neon); border-color: var(--neon); }
.cookie-switch input:checked + span::after { background: #070709; transform: translateX(22px); }
.cookie-switch input:focus-visible + span { outline: 2px solid #fff; outline-offset: 3px; }
.cookie-panel-actions { padding-top: 22px; display: flex; justify-content: space-between; align-items: center; }
.cookie-panel-actions > a { color: #c7c7cf; font-size: 14px; text-decoration: underline; text-underline-offset: .22em; }

@media (max-width: 900px) {
  .cookie-consent { bottom: 10px; width: calc(100vw - 20px); border-radius: 24px; }
  .cookie-consent-main { min-height: 0; padding: 22px; grid-template-columns: 1fr; gap: 18px; }
  .cookie-consent-copy { align-items: flex-start; }
  .cookie-consent-icon { width: 32px; height: 32px; flex-basis: 32px; font-size: 23px; }
  .cookie-consent-copy p { font-size: 16px; }
  .cookie-consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-text-button,.cookie-primary-button { min-width: 0; min-height: 50px; padding: 0 14px; font-size: 14px; }
  .cookie-primary-button { grid-column: 1/-1; }
  .cookie-preference-panel { max-height: min(68vh,650px); padding: 0 22px 22px; overflow-y: auto; }
  .cookie-preference-panel > header { padding-top: 22px; }
  .cookie-preference-panel h2 { font-size: 28px; }
  .cookie-category-list { grid-template-columns: 1fr; }
  .cookie-category-list article { min-height: 0; padding: 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .cookie-category-list article:last-child { border-bottom: 0; }
  .cookie-panel-actions { gap: 20px; align-items: stretch; flex-direction: column; }
  .cookie-panel-actions .cookie-primary-button { width: 100%; }
}

/* ================================================================
   KOMPAKT VE OKUNAKLI BAŞLIK ÖLÇEĞİ
   Bu blok dosyanın sonunda olduğu için eski büyük başlıkları kesin olarak ezer.
   ================================================================ */
@media (min-width: 901px) {
  .hero-title,
  .sub-hero-copy h1,
  .contact-page-main h1,
  .content-detail-head h1 {
    max-width: 960px;
    font-size: clamp(52px, 5vw, 92px) !important;
    line-height: 1.1 !important;
    letter-spacing: -.026em !important;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-title .title-line,
  .sub-hero-copy h1,
  .contact-page-main h1 {
    padding-top: .04em;
    padding-bottom: .04em;
  }

  .hero-title .title-line-neon { padding-left: 3.5vw; }
  .contact-page-main { padding-right: min(27vw, 420px); }

  .section-head h2,
  .manifesto-sticky h2,
  .services-title h2,
  .process-head h2,
  .contact-main h2,
  .footer-social-section h2,
  .sub-cta h2,
  .approach-intro h2,
  .brief-intro h2,
  .tech-stack-copy h2,
  .service-detail-copy h2,
  .service-category > header h2,
  .detail-section-heading h2,
  .faq-layout .detail-section-heading h2 {
    font-size: clamp(38px, 3.7vw, 68px) !important;
    line-height: 1.12 !important;
    letter-spacing: -.024em !important;
  }

  .archive-card-foot h2,
  .blog-card h2,
  .contact-option-grid h2,
  .rich-content-body h2,
  .policy-content .rich-content-body h2 {
    font-size: clamp(28px, 2.45vw, 42px) !important;
    line-height: 1.18 !important;
    letter-spacing: -.018em !important;
  }

  .system-card h3,
  .service-line h3,
  .phase-content h3,
  .principles-grid h3,
  .brief-grid h3,
  .rich-content-body h3 {
    font-size: clamp(23px, 2vw, 36px) !important;
    line-height: 1.24 !important;
    letter-spacing: -.014em !important;
  }
}

@media (max-width: 900px) {
  .hero-title,
  .sub-hero-copy h1,
  .contact-page-main h1,
  .content-detail-head h1 {
    font-size: clamp(35px, 9.6vw, 44px) !important;
    line-height: 1.11 !important;
    letter-spacing: -.022em !important;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-title .title-line,
  .sub-hero-copy h1,
  .contact-page-main h1 {
    padding-top: .035em;
    padding-bottom: .035em;
  }

  .hero-title .title-line-neon { padding-left: 2.5vw; }

  .section-head h2,
  .manifesto-sticky h2,
  .services-title h2,
  .process-head h2,
  .contact-main h2,
  .footer-social-section h2,
  .sub-cta h2,
  .approach-intro h2,
  .brief-intro h2,
  .tech-stack-copy h2,
  .service-detail-copy h2,
  .service-category > header h2,
  .detail-section-heading h2,
  .faq-layout .detail-section-heading h2 {
    font-size: clamp(29px, 7.8vw, 36px) !important;
    line-height: 1.14 !important;
    letter-spacing: -.02em !important;
  }

  .archive-card-foot h2,
  .blog-card h2,
  .contact-option-grid h2,
  .rich-content-body h2,
  .policy-content .rich-content-body h2 {
    font-size: clamp(26px, 7vw, 32px) !important;
    line-height: 1.19 !important;
    letter-spacing: -.016em !important;
  }

  .system-card h3,
  .service-line h3,
  .phase-content h3,
  .principles-grid h3,
  .brief-grid h3,
  .rich-content-body h3 {
    font-size: clamp(21px, 5.8vw, 28px) !important;
    line-height: 1.25 !important;
    letter-spacing: -.012em !important;
  }
}

@media (max-width: 390px) {
  .hero-title,
  .sub-hero-copy h1,
  .contact-page-main h1,
  .content-detail-head h1 {
    font-size: clamp(33px, 9.2vw, 39px) !important;
  }
}
