:root {
  --background: #090414;
  --background-soft: #100821;
  --surface: #150c29;
  --surface-light: #1b1033;
  --foreground: #f7f4ff;
  --muted: #a9a1b8;
  --line: rgba(255, 255, 255, 0.1);
  --purple: #8f4df7;
  --violet: #b55cff;
  --gradient: linear-gradient(135deg, #7b3ff2 0%, #a855f7 52%, #d176ff 100%);
  --scroll-progress: 0;
  --pointer-x: 50vw;
  --pointer-y: 30vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--background);
  overflow-x: clip;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(133, 64, 237, 0.075), transparent 26rem),
    var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

main {
  overflow-x: clip;
}

body.menu-locked {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

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

[hidden] {
  display: none !important;
}

.admin-bar .site-header { top: 46px; }
.admin-bar .scroll-progress { top: 32px; }

::selection {
  background: #9a50f5;
  color: #fff;
}

:focus-visible {
  outline: 2px solid #c787ff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: white;
  color: #090414;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 14px !important;
  left: 50%;
  display: grid;
  grid-template-columns: 190px 1fr 230px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  padding: 9px 10px 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(10, 4, 24, 0.74);
  box-shadow: 0 20px 60px rgba(2, 0, 10, 0.22);
  backdrop-filter: blur(18px) saturate(140%);
  transform: translate3d(-50%, 0, 0);
}

.admin-bar .site-header { top: 46px !important; }

.brand {
  display: inline-flex;
  align-items: center;
  width: 154px;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  color: #c7c0d3;
  font-size: 0.86rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 14px 0;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: #b06bff;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 56px;
  padding: 0 23px;
  border: 0;
  border-radius: 13px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button span {
  transition: transform 180ms ease;
}

.button:hover span {
  transform: translate(2px, -2px);
}

.button-small {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.78rem;
}

.button-small:hover {
  border-color: rgba(174, 102, 255, 0.6);
  box-shadow: 0 8px 28px rgba(118, 57, 219, 0.24);
}

.button-primary {
  position: relative;
  overflow: hidden;
  background: var(--gradient);
  box-shadow: 0 18px 45px rgba(123, 63, 242, 0.34), inset 0 1px rgba(255, 255, 255, 0.25);
}

.button-primary::before {
  position: absolute;
  top: -50%;
  left: -65%;
  width: 45%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  content: "";
  transform: rotate(16deg);
  transition: left 500ms ease;
}

.button-primary:hover::before {
  left: 120%;
}

.button-primary > * {
  position: relative;
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: 34px;
  min-height: 100svh;
  padding: 132px max(24px, calc((100vw - 1180px) / 2)) 82px;
  isolation: isolate;
  overflow: clip;
}

.hero::after {
  position: absolute;
  z-index: -2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, transparent, #090414);
  content: "";
}

.hero-grid {
  position: absolute;
  z-index: -4;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, #000 20%, transparent 90%);
}

.hero-aurora {
  position: absolute;
  z-index: -3;
  top: -35%;
  left: 36%;
  width: 65vw;
  height: 62vw;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 50%, rgba(163, 81, 255, .27), transparent 32%),
    conic-gradient(from 220deg, transparent, rgba(106, 39, 235, .2), transparent 35%);
  filter: blur(55px);
  animation: aurora-float 12s ease-in-out infinite alternate;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 35px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 25px;
  color: #b8adc9;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bd77ff;
  box-shadow: 0 0 18px #a95cff;
}

.status-dot::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(187, 109, 255, .45);
  border-radius: 50%;
  content: "";
  animation: pulse-ring 2s ease-out infinite;
}

.hero h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(3.25rem, 5.45vw, 5.2rem);
  font-weight: 750;
  letter-spacing: -0.068em;
  line-height: 0.98;
}

.hero h1 span,
.section h2 span,
.cta-section h2 span {
  background: linear-gradient(105deg, #fff 2%, #d6acff 43%, #8d4cf5 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 span {
  display: block;
  margin-top: 13px;
}

.hero-lead {
  max-width: 640px;
  margin: 30px 0 0;
  color: #b8b0c5;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #e5dded;
  font-size: 0.9rem;
  font-weight: 700;
}

.text-link span {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 180ms ease, transform 180ms ease;
}

.text-link:hover span {
  border-color: #ad65fa;
  transform: translateY(2px);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
}

.proof-avatars {
  display: flex;
}

.proof-avatars span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: -7px;
  place-items: center;
  border: 2px solid #0b0516;
  border-radius: 50%;
  background: linear-gradient(145deg, #23113c, #8a41db);
  color: white;
  font-size: 0.64rem;
  font-weight: 850;
}

.proof-avatars span:first-child {
  margin-left: 0;
}

.hero-proof p {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 0.76rem;
}

.hero-proof strong {
  color: white;
  letter-spacing: .04em;
}

.hero-proof p span {
  color: #8f879a;
}

.system-visual {
  position: relative;
  width: min(47vw, 590px);
  aspect-ratio: 1;
  margin-left: auto;
  perspective: 1000px;
}

.visual-glow {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: #7534cf;
  filter: blur(75px);
  opacity: .34;
  animation: visual-glow 5s ease-in-out infinite alternate;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(179, 105, 255, .25);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(64deg) rotateZ(-18deg);
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d19bff;
  box-shadow: 0 0 15px #a450f6;
  content: "";
}

.orbit::before { top: 4%; left: 28%; }
.orbit::after { right: 7%; bottom: 24%; }
.orbit-one { width: 88%; height: 88%; animation: orbit-one 12s linear infinite; }
.orbit-two { width: 63%; height: 63%; transform: translate(-50%, -50%) rotateX(64deg) rotateZ(38deg); animation: orbit-two 9s linear infinite reverse; }

.system-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(42, 22, 70, .97), rgba(13, 7, 28, .95));
  box-shadow: 0 45px 80px rgba(0,0,0,.35), inset 0 1px rgba(255,255,255,.18), 0 0 0 13px rgba(121,58,230,.06);
  transform: translate(-50%, -50%) rotate(-3deg);
  animation: core-float 5s ease-in-out infinite;
}

.system-core > span {
  color: #ab70ef;
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .24em;
}

.system-core strong {
  margin-top: 7px;
  font-size: 1.85rem;
  letter-spacing: -.06em;
}

.system-core small {
  color: #978da7;
  font-size: .72rem;
}

.core-pulse {
  position: absolute;
  right: 23px;
  bottom: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c179ff;
  box-shadow: 0 0 18px #aa50fa;
}

.system-node {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  min-width: 116px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(20, 11, 40, .88);
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}

.system-node i {
  grid-row: 1 / 3;
  color: #9b5ee5;
  font-size: .58rem;
  font-style: normal;
  font-weight: 800;
}

.system-node span {
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.system-node small {
  color: #887f94;
  font-size: .6rem;
}

.node-web { top: 16%; left: 4%; animation: node-float 5.8s ease-in-out infinite; }
.node-ads { top: 12%; right: 3%; animation: node-float 5s ease-in-out 1s infinite; }
.node-data { right: -1%; bottom: 20%; animation: node-float 6.2s ease-in-out .5s infinite; }
.node-leads { bottom: 12%; left: 9%; animation: node-float 5.4s ease-in-out 1.4s infinite; }

.signal-card {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(15,8,31,.85);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
}

.signal-top {
  top: 32%;
  right: -4%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  transform: rotate(3deg);
}

.signal-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: var(--gradient);
}

.signal-top p { display: flex; flex-direction: column; margin: 0; }
.signal-top small, .signal-bottom small { color: #8e839a; font-size: .55rem; text-transform: uppercase; letter-spacing: .08em; }
.signal-top strong { font-size: .7rem; }

.signal-bottom {
  bottom: 27%;
  left: -2%;
  width: 132px;
  padding: 12px;
  transform: rotate(-4deg);
}

.signal-bars {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 36px;
  margin-top: 8px;
}

.signal-bars i {
  flex: 1;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(to top, #6c32cf, #c878ff);
  animation: bars 2.2s ease-in-out infinite alternate;
}
.signal-bars i:nth-child(1) { height: 35%; }
.signal-bars i:nth-child(2) { height: 52%; animation-delay: .2s; }
.signal-bars i:nth-child(3) { height: 43%; animation-delay: .4s; }
.signal-bars i:nth-child(4) { height: 72%; animation-delay: .6s; }
.signal-bars i:nth-child(5) { height: 96%; animation-delay: .8s; }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  gap: 10px;
  color: #71697c;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .17em;
}

.scroll-cue span {
  display: block;
  width: 34px;
  height: 1px;
  background: #776e82;
}

.capability-marquee {
  overflow: hidden;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.015);
  color: #6f677c;
}

.capability-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.capability-group {
  display: flex;
  flex: none;
  align-items: center;
}

.capability-item {
  display: flex;
  flex: none;
  align-items: center;
  gap: 28px;
  padding-left: 28px;
}

.capability-item b {
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.capability-item i {
  color: #8744d8;
  font-style: normal;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 135px 0;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 66px;
}

.section h2,
.cta-section h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.75rem);
  font-weight: 720;
  letter-spacing: -.06em;
  line-height: 1.02;
}

.section-intro > p:last-child {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(24,14,45,.72), rgba(12,7,25,.9));
  transition: border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}

.service-card::before {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(127,61,225,.1);
  filter: blur(45px);
  content: "";
}

.service-card:hover {
  border-color: rgba(176,100,255,.42);
  box-shadow: 0 25px 70px rgba(4,0,12,.35);
  transform: translateY(-8px);
}

.service-card.featured {
  background: linear-gradient(160deg, rgba(95,39,167,.33), rgba(20,10,38,.91) 55%);
}

.service-number,
.reason-index {
  color: #786f84;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .68rem;
}

.service-symbol {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 135px;
  margin: 26px 0 10px;
}

.service-symbol-web span {
  position: absolute;
  width: 125px;
  height: 82px;
  border: 1px solid rgba(204,160,255,.4);
  border-radius: 10px;
  background: rgba(139,62,232,.08);
  box-shadow: 0 15px 40px rgba(56,14,110,.2);
}
.service-symbol-web span:nth-child(1) { transform: translate(-40px, 18px) rotate(-9deg); }
.service-symbol-web span:nth-child(2) { transform: translate(40px, 14px) rotate(8deg); }
.service-symbol-web span:nth-child(3) { background: linear-gradient(145deg, rgba(154,77,244,.3), rgba(19,10,38,.85)); }

.service-symbol-ads span {
  position: absolute;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(199,145,255,.35);
  border-radius: 15px;
  background: rgba(137,61,224,.12);
}
.service-symbol-ads span:nth-child(1) { transform: translate(-55px,-28px); }
.service-symbol-ads span:nth-child(2) { transform: translate(57px,-20px); }
.service-symbol-ads span:nth-child(3) { transform: translate(-42px,47px); }
.service-symbol-ads span:nth-child(4) { width: 72px; height: 72px; background: var(--gradient); box-shadow: 0 0 45px rgba(145,66,236,.4); }

.service-symbol-growth {
  gap: 9px;
  align-items: end;
  padding-bottom: 22px;
}
.service-symbol-growth span { width: 38px; border-radius: 7px 7px 2px 2px; background: linear-gradient(to top, #4c237f, #a35bf2); }
.service-symbol-growth span:nth-child(1) { height: 44px; }
.service-symbol-growth span:nth-child(2) { height: 72px; }
.service-symbol-growth span:nth-child(3) { height: 106px; box-shadow: 0 0 30px rgba(159,83,242,.27); }

.service-card h3 {
  margin: 16px 0 10px;
  font-size: 1.65rem;
  letter-spacing: -.04em;
}

.service-card > p {
  margin: 0;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.65;
}

.tag-row,
.modal-tags,
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.tag-row span,
.modal-tags span,
.tech-tags span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #9e95aa;
  font-size: .57rem;
  font-weight: 750;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.projects-section {
  width: 100%;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(to bottom, transparent, rgba(21,10,43,.45) 20%, rgba(21,10,43,.28) 75%, transparent);
}

.projects-heading {
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: end;
  gap: 60px;
}

.projects-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.75;
}

.portfolio-proof {
  display: grid;
  grid-template-columns: .7fr 1.2fr 1fr;
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(115deg, rgba(119,55,197,.12), rgba(255,255,255,.018));
}

.portfolio-proof > div {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 26px;
  border-right: 1px solid var(--line);
}

.portfolio-proof > div:last-child { border-right: 0; }

.portfolio-proof strong {
  color: #f1e9fa;
  font-size: .84rem;
  letter-spacing: .08em;
}

.portfolio-proof span {
  margin-top: 6px;
  color: #776d84;
  font-size: .62rem;
  letter-spacing: .04em;
}

.project-filters {
  display: flex;
  gap: 8px;
  margin: 46px 0 30px;
}

.project-filters button {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #978fa3;
  font-size: .69rem;
  font-weight: 700;
  cursor: pointer;
  transition: .18s ease;
}

.project-filters button:hover,
.project-filters button.is-active {
  border-color: #9351e6;
  background: rgba(134,61,225,.16);
  color: white;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px 20px;
}

.project-card.project-featured {
  grid-column: 1 / -1;
}

.project-card:last-child:nth-child(even) {
  grid-column: 1 / -1;
}

.project-image {
  position: relative;
  display: block;
  width: 100%;
  min-height: 460px;
  overflow: hidden;
  padding: 44px 25px 5px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 23px;
  background: #0e081d;
  color: white;
  cursor: pointer;
  transition: border-color 250ms ease, transform 350ms cubic-bezier(.2,.8,.2,1), box-shadow 350ms ease;
}

.project-image::before {
  position: absolute;
  z-index: 0;
  inset: -2px;
  background:
    linear-gradient(180deg, rgba(8,4,18,.05), rgba(8,4,18,.32)),
    url('images/portfolio-stage.png') center / cover no-repeat;
  content: "";
  filter: saturate(.92) hue-rotate(-4deg);
  opacity: .7;
  transition: opacity 350ms ease, transform 700ms cubic-bezier(.2,.8,.2,1);
}

.project-image:hover::before {
  opacity: .88;
  transform: scale(1.025);
}

.project-featured .project-image {
  min-height: 590px;
}

.project-image::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.09) .7px, transparent .7px);
  background-size: 12px 12px;
  content: "";
  opacity: .35;
  pointer-events: none;
}

.project-image:hover {
  border-color: color-mix(in srgb, var(--project-accent) 58%, white 10%);
  box-shadow: 0 35px 75px rgba(0,0,0,.35);
  transform: translateY(-6px);
}

.project-image img {
  position: relative;
  z-index: 2;
  width: min(100%, 580px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 28px 28px rgba(0,0,0,.32));
  transition: transform 500ms cubic-bezier(.2,.8,.2,1);
}

.project-featured .project-image img {
  width: min(72%, 720px);
}

.project-image:hover img {
  transform: scale(1.04) translateY(-4px);
}

.browser-chrome {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 38px;
  padding: 0 15px;
  border-bottom: 1px solid var(--line);
  background: rgba(8,4,16,.42);
}

.browser-chrome i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5e5667;
}

.browser-chrome b {
  margin-left: auto;
  color: #62596c;
  font-size: .5rem;
  font-weight: 600;
  letter-spacing: .08em;
}

.project-index {
  position: absolute;
  z-index: 4;
  top: 58px;
  left: 20px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(8,4,18,.58);
  color: rgba(255,255,255,.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .11em;
  backdrop-filter: blur(12px);
}

.project-view {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10,5,20,.72);
  font-size: .65rem;
  font-weight: 700;
  opacity: 0;
  backdrop-filter: blur(10px);
  transform: translateY(10px);
  transition: .25s ease;
}

.project-view i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient);
  font-style: normal;
}

.project-image:hover .project-view {
  opacity: 1;
  transform: translateY(0);
}

.project-info {
  display: grid;
  grid-template-columns: 1fr minmax(210px, 1.1fr) auto;
  align-items: start;
  gap: 25px;
  padding: 20px 4px 0;
}

.project-info h3 {
  margin: 3px 0 0;
  font-size: 1.5rem;
  letter-spacing: -.045em;
}

.project-info p {
  margin: 0;
  color: #9b92a8;
  font-size: .82rem;
  line-height: 1.55;
}

.project-info > div p {
  color: var(--project-accent);
  font-size: .56rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-info button {
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
  background: none;
  color: white;
  font-size: .68rem;
  font-weight: 700;
  cursor: pointer;
}

.project-info button span { margin-left: 7px; color: var(--project-accent); }

.project-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin-top: 20px;
  padding: 19px 21px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 17px;
  background: rgba(255,255,255,.018);
}

.project-story > div:not(.project-tags) {
  padding-left: 15px;
  border-left: 1px solid color-mix(in srgb, var(--project-accent) 65%, transparent);
}

.project-story span {
  color: var(--project-accent);
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-story p {
  margin: 6px 0 0;
  color: #91879d;
  font-size: .72rem;
  line-height: 1.55;
}

.project-tags {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 5px;
}

.project-tags span {
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: #756c80;
  font-size: .5rem;
  letter-spacing: .05em;
}

.process-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 74px;
}

.process-intro .section-kicker {
  align-self: flex-start;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.process-line {
  position: absolute;
  top: 24px;
  right: 0;
  left: 0;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.process-line span {
  position: absolute;
  top: 0;
  left: -30%;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #b86cff, transparent);
  animation: line-flow 4s linear infinite;
}

.process-step {
  position: relative;
}

.step-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 33px;
  border: 1px solid rgba(180,105,255,.42);
  border-radius: 50%;
  background: #0d071b;
  box-shadow: 0 0 0 9px #090414;
}

.step-marker::after {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(143,71,235,.16);
  content: "";
}

.step-marker span {
  position: relative;
  z-index: 1;
  color: #c890ff;
  font-family: ui-monospace, monospace;
  font-size: .65rem;
}

.process-step h3 {
  margin: 0 0 13px;
  font-size: 1.23rem;
  letter-spacing: -.035em;
}

.process-step p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.7;
}

.reasons {
  padding-top: 70px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.reason-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(23,13,43,.78), rgba(12,7,24,.92));
}

.reason-card h3 {
  max-width: 450px;
  margin: 35px 0 10px;
  font-size: 1.45rem;
  letter-spacing: -.04em;
}

.reason-card > p,
.reason-wide p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.7;
}

.reason-large {
  grid-row: span 2;
  min-height: 736px;
}

.reason-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  min-height: 270px;
}

.vendor-visual {
  position: relative;
  height: 350px;
  margin: 60px 0 12px;
}

.vendor-visual span {
  position: absolute;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(188,117,255,.25);
  border-radius: 50%;
  background: rgba(99,42,170,.1);
  color: #8c8199;
  font-size: .55rem;
  font-weight: 800;
}
.vendor-visual span:nth-child(1) { top: 0; left: 12%; }
.vendor-visual span:nth-child(2) { top: 5%; right: 12%; }
.vendor-visual span:nth-child(3) { bottom: 8%; left: 8%; }
.vendor-visual span:nth-child(4) { right: 8%; bottom: 3%; }
.vendor-visual strong {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border: 1px solid rgba(204,151,255,.42);
  border-radius: 38px;
  background: linear-gradient(145deg, #7b3ff2, #a855f7);
  box-shadow: 0 0 70px rgba(137,62,230,.32);
  font-size: .8rem;
  letter-spacing: .1em;
  transform: translate(-50%,-50%) rotate(-3deg);
}

.vendor-visual::before,
.vendor-visual::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,87,246,.38), transparent);
  content: "";
  transform: translate(-50%,-50%) rotate(28deg);
}
.vendor-visual::after { transform: translate(-50%,-50%) rotate(-28deg); }

.data-visual {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 115px;
  margin: 34px 0 20px;
  padding: 0 30px 0 6px;
  border-bottom: 1px solid var(--line);
}
.data-visual i { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(to top, #4d257d, #a95df6); }
.data-visual i:nth-child(1) { height: 25%; }
.data-visual i:nth-child(2) { height: 44%; }
.data-visual i:nth-child(3) { height: 37%; }
.data-visual i:nth-child(4) { height: 67%; }
.data-visual i:nth-child(5) { height: 92%; box-shadow: 0 0 24px rgba(173,91,246,.25); }

.build-visual {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 72%;
  margin: 34px auto 25px;
  perspective: 700px;
}
.build-visual i {
  padding: 12px;
  border: 1px solid rgba(181,107,248,.2);
  border-radius: 9px;
  background: rgba(128,57,205,.08);
  color: #9a8ca6;
  font-size: .55rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .11em;
  text-align: center;
  transform: rotateX(52deg);
}

.tech-tags {
  align-content: end;
  justify-content: flex-end;
  margin: 0;
}

.tech-tags span {
  padding: 12px 14px;
  border-color: rgba(182,106,248,.24);
  background: rgba(124,54,204,.08);
}

.cta-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(480px, .72fr);
  gap: 80px;
  width: min(1228px, calc(100% - 32px));
  overflow: hidden;
  margin: 40px auto 0;
  padding: 95px 72px;
  border: 1px solid rgba(192,126,255,.22);
  border-radius: 32px;
  background:
    linear-gradient(rgba(255,255,255,.02), rgba(255,255,255,.02)),
    linear-gradient(130deg, #170b2d, #0c0619 70%);
  isolation: isolate;
}

.cta-section::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  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;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
  content: "";
}

.cta-orb {
  position: absolute;
  z-index: -1;
  top: -190px;
  left: -130px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,63,231,.29), transparent 66%);
  filter: blur(20px);
}

.cta-copy {
  align-self: center;
}

.cta-copy > p:not(.section-kicker) {
  max-width: 480px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.direct-contact {
  display: flex;
  gap: 34px;
  margin-top: 50px;
}

.direct-contact a {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.direct-contact small {
  color: #847a91;
  font-size: .66rem;
}

.direct-contact strong {
  font-size: .85rem;
  font-weight: 650;
}

.contact-form {
  position: relative;
  padding: 27px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 23px;
  background: rgba(9,4,20,.78);
  box-shadow: 0 40px 90px rgba(0,0,0,.32);
  backdrop-filter: blur(16px);
}

.form-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}

.form-top span {
  font-size: .82rem;
  font-weight: 750;
}

.form-top small {
  color: #7f768b;
  font-size: .58rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label {
  display: block;
  margin-bottom: 12px;
}

.contact-form label > span {
  display: block;
  margin: 0 0 7px 3px;
  color: #9c92a8;
  font-size: .62rem;
  font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 11px;
  background: rgba(255,255,255,.035);
  color: white;
  outline: none;
  transition: border-color .18s ease, background .18s ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 104px;
  padding: 13px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #655d6e;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #9851ed;
  background: rgba(153,74,235,.07);
}

.form-submit {
  width: 100%;
  margin-top: 5px;
}

.form-privacy {
  margin: 12px 8px 0;
  color: #70687b;
  font-size: .55rem;
  line-height: 1.5;
  text-align: center;
}

.form-privacy a {
  color: #9e71d2;
}

.form-note {
  margin: 12px 0 0;
  color: #c993ff;
  font-size: .68rem;
  text-align: center;
}

.fluent-contact .ff-el-group {
  margin-bottom: 12px;
}

.fluent-contact .ff-el-input--label label {
  margin: 0 0 7px 3px;
  color: #9c92a8;
  font-size: .62rem;
  font-weight: 650;
}

.fluent-contact .ff-el-form-control {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 11px;
  background: rgba(255,255,255,.035);
  color: white;
  box-shadow: none;
}

.fluent-contact .ff-el-form-check {
  display: inline-flex;
  align-items: center;
  margin: 0 15px 10px 0;
}

.fluent-contact .ff-el-form-check-label {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  margin: 0 !important;
  color: #a79caf !important;
  line-height: 1.35;
}

.fluent-contact input[type="checkbox"],
.fluent-contact input[type="radio"] {
  position: relative;
  display: inline-grid !important;
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  flex: 0 0 18px;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(190,125,249,.48) !important;
  border-radius: 5px !important;
  background: rgba(255,255,255,.045) !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  accent-color: #9d52f3;
  box-shadow: none !important;
  place-content: center;
}

.fluent-contact input[type="radio"] { border-radius: 50% !important; }
.fluent-contact input[type="checkbox"]:checked,
.fluent-contact input[type="radio"]:checked { border-color: #b867ff !important; background: #9348e7 !important; }
.fluent-contact input[type="checkbox"]:checked::before { color: #fff; content: "✓"; font-size: 12px; font-weight: 900; line-height: 1; }
.fluent-contact input[type="radio"]:checked::before { width: 7px; height: 7px; border-radius: 50%; background: #fff; content: ""; }

.fluent-contact textarea.ff-el-form-control {
  min-height: 104px;
  padding: 13px;
}

.fluent-contact .ff-btn-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 5px;
  border: 0;
  border-radius: 13px;
  background: var(--gradient);
  color: #fff;
  font-size: .82rem;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 14px 38px rgba(133,59,229,.24);
}

.fluent-contact .ff-el-is-error .ff-el-form-control {
  border-color: #ef6c83;
}

.fluent-contact .error.text-danger,
.fluent-contact .ff-el-form-check-label,
.fluent-contact .ff-el-form-check-label a {
  color: #83798f;
  font-size: .6rem;
}

.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 55px;
  padding-bottom: 60px;
}

.footer-brand img {
  width: 170px;
}

.footer-brand p {
  max-width: 360px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: #8f869a;
  font-size: .75rem;
}

.footer-column h3 {
  margin: 0 0 10px;
  color: white;
  font-size: .7rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.footer-column a:hover {
  color: #c58aff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: #625b6b;
  font-size: .62rem;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.project-modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  overflow-y: auto;
  padding: 30px;
  place-items: center;
  background: rgba(5,2,11,.82);
  backdrop-filter: blur(14px);
  animation: modal-in .22s ease both;
}

.modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(1080px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 25px;
  background: #100821;
  box-shadow: 0 50px 120px rgba(0,0,0,.5);
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(10,5,20,.68);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-visual {
  display: grid;
  min-height: 590px;
  padding: 40px;
  place-items: center;
  background:
    radial-gradient(circle, color-mix(in srgb, var(--project-accent) 22%, transparent), transparent 54%),
    #0b0617;
}

.modal-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  filter: drop-shadow(0 25px 30px rgba(0,0,0,.32));
}

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.modal-copy h2 {
  margin: 0 0 34px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -.06em;
}

.modal-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.modal-detail span {
  color: #9f5fe4;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.modal-detail p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65;
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@keyframes aurora-float { to { transform: translate(-5%, 7%) rotate(16deg); } }
@keyframes pulse-ring { 0% { opacity: .8; transform: scale(.65); } 100% { opacity: 0; transform: scale(1.6); } }
@keyframes visual-glow { to { opacity: .52; transform: scale(1.08); } }
@keyframes orbit-one { to { transform: translate(-50%,-50%) rotateX(64deg) rotateZ(342deg); } }
@keyframes orbit-two { to { transform: translate(-50%,-50%) rotateX(64deg) rotateZ(398deg); } }
@keyframes core-float { 50% { transform: translate(-50%,-54%) rotate(1deg); } }
@keyframes node-float { 50% { transform: translateY(-9px); } }
@keyframes bars { to { filter: brightness(1.25); transform: scaleY(.86); transform-origin: bottom; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes line-flow { to { left: 100%; } }
@keyframes modal-in { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 155px 1fr 210px; }
  .desktop-nav { gap: 18px; font-size: .78rem; }
  .hero { grid-template-columns: 1fr 430px; }
  .system-visual { width: 440px; }
  .cta-section { grid-template-columns: 1fr 470px; gap: 40px; padding: 72px 50px; }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 62px;
    padding: 8px 10px 8px 16px;
  }
  .brand { width: 140px; }
  .desktop-nav, .desktop-cta { display: none; }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,.04);
  }
  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: white;
    transition: .2s 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); }
  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 105px 30px 38px;
    background: rgba(9,4,20,.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: .25s ease;
  }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu nav a {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.7rem, 7vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -.05em;
  }
  .mobile-menu nav a span { color: #7741bc; font-family: ui-monospace, monospace; font-size: .6rem; }
  .mobile-contact { display: flex; flex-direction: column; gap: 7px; margin-top: auto; color: #998fa6; font-size: .78rem; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 155px;
    text-align: center;
  }
  .hero-copy { padding: 0; }
  .eyebrow, .hero-actions, .hero-proof { justify-content: center; }
  .hero h1, .hero-lead { margin-right: auto; margin-left: auto; }
  .system-visual { width: min(610px, 90vw); margin: 15px auto 0; }
  .scroll-cue { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 360px; }
  .projects-heading { grid-template-columns: 1fr; gap: 26px; }
  .projects-heading > p { max-width: 570px; }
  .portfolio-proof { grid-template-columns: repeat(3, 1fr); }
  .portfolio-proof > div { padding: 18px; }
  .project-image, .project-featured .project-image { min-height: 430px; }
  .project-featured .project-image img { width: min(92%, 620px); }
  .process-track { gap: 28px; }
  .cta-section { grid-template-columns: 1fr; }
  .cta-copy { text-align: center; }
  .cta-copy > p { margin-right: auto !important; margin-left: auto !important; }
  .cta-copy .section-kicker, .direct-contact { justify-content: center; }
  .footer-main { grid-template-columns: 2fr repeat(2, 1fr); }
  .footer-column:last-child { display: flex; }
  .modal-panel { grid-template-columns: 1fr; max-width: 650px; }
  .modal-visual { min-height: 0; padding: 64px 28px 30px; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 80px; }
  .site-header { top: 9px; width: calc(100% - 20px); }
  .admin-bar .site-header { top: 55px; }
  .hero {
    gap: 16px;
    padding: 132px 20px 60px;
  }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); line-height: 1; }
  .hero h1 span { margin-top: 8px; }
  .hero-lead { margin-top: 23px; font-size: .96rem; line-height: 1.65; }
  .eyebrow { margin-bottom: 19px; font-size: .6rem; }
  .hero-actions { flex-direction: column; gap: 19px; margin-top: 30px; }
  .hero-actions .button { width: min(100%, 350px); }
  .hero-proof { margin-top: 30px; }
  .system-visual { width: min(430px, 100%); margin: 5px auto 0; transform: scale(.94); }
  .system-core { width: 145px; height: 145px; border-radius: 34px; }
  .system-core strong { font-size: 1.5rem; }
  .system-node { min-width: 105px; padding: 9px 10px; }
  .node-web { left: 5%; }
  .node-ads { right: 5%; }
  .node-data { right: 4%; }
  .signal-top { right: 2%; }
  .signal-bottom { left: 2%; }
  .section { width: calc(100% - 32px); padding: 95px 0; }
  .section-intro { margin-bottom: 42px; }
  .section h2, .cta-section h2 { font-size: clamp(2.4rem, 11.5vw, 3.6rem); }
  .section-intro > p:last-child { margin-top: 22px; font-size: .92rem; }
  .section-kicker { margin-bottom: 18px; font-size: .63rem; }
  .service-card { min-height: 370px; padding: 25px; }
  .service-symbol { height: 115px; margin-top: 18px; }
  .projects-section { padding-right: 16px; padding-left: 16px; }
  .portfolio-proof { grid-template-columns: 1fr; margin-top: 34px; }
  .portfolio-proof > div { min-height: 74px; border-right: 0; border-bottom: 1px solid var(--line); }
  .portfolio-proof > div:last-child { border-bottom: 0; }
  .project-filters { width: calc(100vw - 16px); overflow-x: auto; padding: 0 16px 8px 0; scrollbar-width: none; }
  .project-filters::-webkit-scrollbar { display: none; }
  .project-filters button { flex: 0 0 auto; }
  .project-grid { grid-template-columns: 1fr; gap: 43px; }
  .project-card.project-featured { grid-column: auto; }
  .project-card:last-child:nth-child(even) { grid-column: auto; }
  .project-image, .project-featured .project-image { min-height: 360px; padding: 44px 5px 0; }
  .project-image img, .project-featured .project-image img { width: min(112%, 500px); max-width: none; }
  .project-info { grid-template-columns: 1fr auto; gap: 12px; }
  .project-info > p { grid-column: 1 / -1; grid-row: 2; }
  .project-info button { grid-column: 2; grid-row: 1; align-self: center; }
  .project-story { grid-template-columns: 1fr; padding: 17px; }
  .project-tags { grid-column: auto; }
  .project-view { display: none; }
  .process-intro { display: block; margin-bottom: 45px; }
  .process-track { grid-template-columns: 1fr; gap: 0; padding-left: 13px; }
  .process-line { top: 0; bottom: 0; left: 37px; width: 1px; height: auto; }
  .process-line span { display: none; }
  .process-step { padding: 0 0 50px 75px; }
  .step-marker { position: absolute; top: 0; left: 0; margin: 0; }
  .process-step p { max-width: none; }
  .reason-grid { grid-template-columns: 1fr; }
  .reason-large { min-height: 650px; }
  .reason-wide { grid-column: auto; grid-template-columns: 1fr; min-height: 340px; }
  .vendor-visual { height: 300px; margin-top: 40px; }
  .tech-tags { justify-content: flex-start; margin-top: 35px; }
  .cta-section {
    width: calc(100% - 20px);
    gap: 46px;
    padding: 72px 18px 18px;
    border-radius: 25px;
  }
  .cta-copy { padding: 0 8px; }
  .direct-contact { flex-direction: column; gap: 17px; align-items: center; margin-top: 35px; }
  .contact-form { padding: 20px 15px; border-radius: 18px; }
  .form-top { align-items: flex-start; }
  .form-top small { max-width: 120px; text-align: right; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .site-footer { width: calc(100% - 32px); padding-top: 75px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; gap: 20px; }
  .footer-bottom div { flex-direction: column; gap: 5px; text-align: right; }
  .project-modal { padding: 10px; align-items: start; }
  .modal-panel { margin: 8px 0; border-radius: 20px; }
  .modal-visual { min-height: 0; padding: 58px 14px 18px; }
  .modal-copy { padding: 34px 22px; }
  .modal-detail { grid-template-columns: 1fr; gap: 7px; }
  .modal-actions { flex-direction: column; align-items: stretch; }
  .modal-actions .text-link { justify-content: center; }
}

@media (min-width: 901px) and (max-height: 760px) {
  .hero {
    min-height: 780px;
    padding-top: 124px;
  }
  .hero-copy { padding-top: 0; }
  .site-header { top: 12px !important; }
  .admin-bar .site-header { top: 44px !important; }
}

/* Thank-you and streamlined legacy pages */
.thank-you-page {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: 155px 24px 85px;
  place-items: center;
}

.thank-you-card {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
  padding: 60px;
  border: 1px solid rgba(190,118,255,.25);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(120,51,201,.16), rgba(8,4,18,.92));
  box-shadow: 0 50px 120px rgba(0,0,0,.38);
  text-align: center;
}

.success-mark { display: grid; width: 76px; height: 76px; margin: 0 auto 28px; place-items: center; border: 1px solid rgba(192,122,255,.34); border-radius: 24px; background: rgba(132,57,218,.14); box-shadow: 0 0 50px rgba(153,69,234,.24); }
.success-mark span { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; background: var(--gradient); font-size: 1.3rem; font-weight: 800; }
.error-mark { display: grid; width: 88px; height: 68px; margin: 0 auto 28px; place-items: center; border: 1px solid rgba(192,122,255,.34); border-radius: 22px; background: rgba(132,57,218,.14); box-shadow: 0 0 50px rgba(153,69,234,.24); color: #fff; font-size: 1.35rem; font-weight: 850; letter-spacing: .08em; }
.thank-you-card .section-kicker { justify-content: center; }
.thank-you-card h1 { margin: 0; font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -.07em; line-height: .96; }
.thank-you-card h1 span { background: linear-gradient(95deg,#9f51f4,#d07bff); background-clip: text; color: transparent; }
.thank-you-card > p:not(.section-kicker) { max-width: 620px; margin: 25px auto 0; color: var(--muted); line-height: 1.75; }
.thank-you-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 42px; }
.thank-you-steps > div { display: flex; min-height: 145px; flex-direction: column; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.018); text-align: left; }
.thank-you-steps span { color: #a657ee; font-family: ui-monospace, monospace; font-size: .55rem; }
.thank-you-steps strong { margin: 19px 0 6px; font-size: .82rem; }
.thank-you-steps small { color: #7f7589; font-size: .65rem; line-height: 1.55; }
.thank-you-actions { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: 35px; }

.generic-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .66fr);
  align-items: center;
  gap: 75px;
  min-height: 760px;
  overflow: hidden;
  padding: 165px max(24px, calc((100vw - 1180px) / 2)) 90px;
  border-bottom: 1px solid var(--line);
}

.generic-hero-copy { position: relative; z-index: 2; }
.generic-hero-copy h1 { max-width: 780px; margin: 0; font-size: clamp(3.2rem, 6.3vw, 6rem); letter-spacing: -.07em; line-height: .98; }
.generic-hero-copy > p:not(.section-kicker) { max-width: 650px; margin: 27px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.generic-system-card { position: relative; z-index: 2; padding: 35px; border: 1px solid rgba(190,116,255,.25); border-radius: 25px; background: linear-gradient(145deg, rgba(120,51,199,.17), rgba(9,4,19,.92)); box-shadow: 0 35px 85px rgba(0,0,0,.3); }
.generic-system-card > span { color: #9e5adf; font-size: .58rem; font-weight: 800; letter-spacing: .13em; }
.generic-system-card > strong { display: block; margin: 12px 0 30px; font-size: 1.55rem; letter-spacing: -.04em; }
.generic-system-card > div { display: grid; grid-template-columns: 37px 1fr; gap: 12px; padding: 16px 0; border-top: 1px solid var(--line); }
.generic-system-card i { color: #ab5df2; font-family: ui-monospace, monospace; font-size: .58rem; font-style: normal; }
.generic-system-card p { margin: 0; color: #d6cedd; font-size: .76rem; font-weight: 700; }
.generic-system-card small { display: block; margin-top: 4px; color: #776d82; font-size: .62rem; font-weight: 400; line-height: 1.5; }

.generic-benefits-section { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 120px 0; }
.generic-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.generic-benefits-grid article { min-height: 270px; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.018); }
.generic-benefits-grid span { color: #a656ed; font-family: ui-monospace, monospace; font-size: .58rem; }
.generic-benefits-grid h3 { margin: 60px 0 11px; font-size: 1.25rem; letter-spacing: -.04em; }
.generic-benefits-grid p { margin: 0; color: #8c8297; font-size: .76rem; line-height: 1.7; }
.generic-page-cta { display: flex; align-items: center; justify-content: space-between; gap: 50px; width: min(1180px, calc(100% - 32px)); margin: 0 auto 20px; padding: 70px; border: 1px solid rgba(188,112,255,.22); border-radius: 28px; background: linear-gradient(130deg,#170b2e,#0c0618); }
.generic-page-cta h2 { max-width: 760px; margin: 0; font-size: clamp(2.5rem, 4.6vw, 4.4rem); letter-spacing: -.06em; line-height: 1; }
.generic-page-cta h2 span { background: linear-gradient(95deg,#9f51f4,#d17cff); background-clip: text; color: transparent; }
.generic-page-cta .button { flex: 0 0 auto; }
.legal-page-shell { width: min(900px, calc(100% - 48px)); margin: 0 auto; padding: 100px 0 130px; }
.legal-content { max-width: 820px; margin: 0 auto; }
.generic-contact-section { margin-top: 90px; }
.generic-contact-section a { color: inherit; }

@media (max-width: 900px) {
  .generic-page-hero { grid-template-columns: 1fr; min-height: auto; gap: 45px; }
  .generic-system-card { max-width: 650px; }
  .generic-benefits-grid { grid-template-columns: 1fr; }
  .generic-page-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .site-header { top: 9px !important; }
  .admin-bar .site-header { top: 55px !important; }
  .thank-you-page { padding: 135px 10px 50px; }
  .thank-you-card { padding: 40px 18px; border-radius: 24px; }
  .thank-you-steps { grid-template-columns: 1fr; }
  .thank-you-steps > div { min-height: 120px; }
  .thank-you-actions { flex-direction: column; }
  .generic-page-hero { padding: 145px 20px 70px; }
  .generic-hero-copy h1 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .generic-system-card { padding: 25px 20px; }
  .generic-benefits-section { width: calc(100% - 32px); padding: 90px 0; }
  .generic-page-cta { width: calc(100% - 20px); padding: 55px 20px; }
  .legal-page-shell { width: calc(100% - 32px); padding: 70px 0 90px; }
  .generic-contact-section { margin-top: 20px; }
  .fluent-contact .ff-el-form-check { display: flex; margin-right: 0; }
}

/* Shared subpages: blog, articles and Exkluzívny partner */
.subpage-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) .8fr;
  align-items: center;
  gap: 80px;
  min-height: 610px;
  overflow: hidden;
  padding: 175px max(24px, calc((100vw - 1180px) / 2)) 100px;
  border-bottom: 1px solid var(--line);
}

.subpage-hero-copy { position: relative; z-index: 2; }
.subpage-hero h1,
.partner-hero h1,
.article-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(3.25rem, 7vw, 6.6rem);
  font-weight: 750;
  letter-spacing: -.07em;
  line-height: .98;
}

.subpage-hero-copy > p:last-child {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.journal-mark {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  border: 1px solid rgba(194,128,255,.22);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(124,53,205,.22), rgba(17,8,34,.82));
  box-shadow: 0 40px 100px rgba(0,0,0,.3);
  transform: rotate(2deg);
}

.journal-mark::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  content: "";
}

.journal-mark span { color: #9b63dc; font-size: .65rem; font-weight: 800; letter-spacing: .2em; }
.journal-mark strong { margin: 10px 0; font-size: clamp(2.2rem, 4vw, 4.2rem); letter-spacing: -.06em; }
.journal-mark small { color: #776d83; font-size: .66rem; letter-spacing: .09em; text-transform: uppercase; }

.blog-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0 135px;
}

.blog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 40px;
}

.blog-toolbar > div { display: flex; flex-direction: column; gap: 4px; }
.blog-toolbar span { font-weight: 750; }
.blog-toolbar small { color: #756c80; font-size: .65rem; }
.blog-search { display: flex; width: min(360px, 100%); }
.blog-search label { flex: 1; }
.blog-search input {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 12px 0 0 12px;
  background: rgba(255,255,255,.025);
  color: white;
  outline: none;
}
.blog-search button {
  width: 50px;
  border: 0;
  border-radius: 0 12px 12px 0;
  background: var(--gradient);
  color: white;
  cursor: pointer;
}

.article-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 20px;
}

.article-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  transition: border-color .25s ease, transform .3s ease;
}
.article-card:hover { border-color: rgba(174,98,244,.42); transform: translateY(-5px); }
.article-featured { display: grid; grid-column: 1 / -1; grid-template-columns: 1.2fr .8fr; min-height: 500px; }
.article-cover { position: relative; display: block; min-height: 245px; overflow: hidden; background: #150b29; }
.article-featured .article-cover { min-height: 100%; }
.article-cover::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,3,15,.55)); content: ""; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.article-card:hover .article-cover img { transform: scale(1.035); }
.article-cover > span { position: absolute; z-index: 2; top: 18px; left: 18px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(8,4,18,.7); font-size: .54rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(10px); }
.article-card-copy { padding: 24px; }
.article-featured .article-card-copy { display: flex; flex-direction: column; justify-content: center; padding: 48px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 7px; color: #766c82; font-size: .6rem; letter-spacing: .04em; }
.article-card h2, .article-card h3 { margin: 16px 0 12px; font-size: 1.35rem; letter-spacing: -.045em; line-height: 1.16; }
.article-featured h2 { font-size: clamp(2rem, 3.5vw, 3.6rem); }
.article-card-copy > p { margin: 0; color: #92889e; font-size: .82rem; line-height: 1.7; }
.article-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; color: #c8bcd5; font-size: .7rem; font-weight: 750; }
.article-link span { color: #b060fa; }

.blog-pagination { margin-top: 55px; }
.blog-pagination .nav-links { display: flex; justify-content: center; gap: 8px; }
.blog-pagination a, .blog-pagination span { display: grid; min-width: 42px; height: 42px; padding: 0 12px; place-items: center; border: 1px solid var(--line); border-radius: 10px; color: #9a90a5; font-size: .7rem; }
.blog-pagination .current { border-color: #994fe8; background: rgba(137,63,223,.18); color: white; }
.empty-state { padding: 90px 25px; border: 1px solid var(--line); border-radius: 24px; text-align: center; }

.newsletter-section,
.article-cta {
  display: grid;
  grid-template-columns: 1fr minmax(390px, .75fr);
  align-items: center;
  gap: 70px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px;
  border: 1px solid rgba(187,111,255,.22);
  border-radius: 30px;
  background: linear-gradient(130deg, #170b2e, #0c0618 70%);
}
.newsletter-copy h2, .article-cta h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 4.6rem); letter-spacing: -.06em; line-height: 1; }
.newsletter-copy h2 span, .article-cta h2 span { background: linear-gradient(95deg,#9f52f5,#cf7cff); background-clip: text; color: transparent; }
.newsletter-copy > p:last-child { max-width: 540px; color: var(--muted); line-height: 1.7; }
.newsletter-form { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: rgba(6,3,14,.48); }
.newsletter-form input { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid var(--line); border-radius: 11px; background: rgba(255,255,255,.035); color: white; }
.newsletter-form button { width: 100%; min-height: 50px; margin-top: 8px; border: 0; border-radius: 11px; background: var(--gradient); color: white; font-weight: 750; }

.article-hero { position: relative; overflow: hidden; padding: 185px max(24px, calc((100vw - 980px) / 2)) 80px; border-bottom: 1px solid var(--line); }
.article-hero-copy { position: relative; z-index: 2; }
.article-hero h1 { max-width: 980px; font-size: clamp(3rem, 6vw, 5.8rem); }
.back-to-blog { position: relative; z-index: 2; display: inline-block; margin-bottom: 50px; color: #8d8299; font-size: .7rem; font-weight: 700; }
.article-byline { display: flex; gap: 8px; margin-top: 30px; color: #807588; font-size: .66rem; }
.single-cover { width: min(1180px, calc(100% - 48px)); max-height: 680px; overflow: hidden; margin: 70px auto 0; border: 1px solid var(--line); border-radius: 25px; }
.single-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 220px minmax(0, 720px); justify-content: center; gap: 70px; width: min(1120px, calc(100% - 48px)); margin: 75px auto 130px; }
.article-aside { position: sticky; top: 120px; align-self: start; padding: 20px 0; border-top: 1px solid #8d45d4; color: #82778d; }
.article-aside span { color: white; font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-aside p { font-size: .74rem; line-height: 1.6; }
.article-aside a { color: #c584ff; font-size: .68rem; font-weight: 750; }
.article-content { color: #c1b8cb; font-size: 1.04rem; line-height: 1.85; }
.article-content > *:first-child { margin-top: 0; }
.article-content h2, .article-content h3, .article-content h4 { margin: 2.2em 0 .7em; color: white; letter-spacing: -.04em; line-height: 1.15; }
.article-content h2 { font-size: 2.15rem; }
.article-content h3 { font-size: 1.55rem; }
.article-content a { color: #c47cff; text-decoration: underline; text-underline-offset: 3px; }
.article-content img { height: auto; margin: 34px auto; border-radius: 16px; }
.article-content blockquote { margin: 35px 0; padding: 24px 28px; border-left: 2px solid #a255ef; border-radius: 0 14px 14px 0; background: rgba(144,67,226,.08); color: #e4d9eb; }
.article-content li { margin: 8px 0; }
.article-content table { display: block; max-width: 100%; overflow-x: auto; border-collapse: collapse; }
.article-content td, .article-content th { padding: 12px; border: 1px solid var(--line); }
.related-section { width: min(1180px, calc(100% - 48px)); margin: 0 auto 110px; }
.related-heading { margin-bottom: 35px; }
.related-heading h2 { margin: 0; font-size: 2.6rem; letter-spacing: -.05em; }
.article-cta { margin-bottom: 20px; }
.article-cta .button { justify-self: end; }

/* Exkluzívny partner */
.partner-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .66fr);
  align-items: center;
  gap: 70px;
  min-height: 860px;
  overflow: hidden;
  padding: 165px max(24px, calc((100vw - 1180px) / 2)) 90px;
}
.partner-hero-copy { position: relative; z-index: 2; }
.partner-hero h1 span, .partner-problem h2 span, .partner-system h2 span, .partner-process h2 span, .industries-section h2 span, .partner-price-copy h2 span, .faq-section h2 span, .partner-form-copy h2 span, .exclusivity-section h2 span { background: linear-gradient(95deg,#9e50f4,#d17cff); background-clip: text; color: transparent; }
.partner-hero-copy > p { max-width: 630px; margin: 26px 0 0; color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.partner-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 50px; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: var(--line); }
.partner-stats div { display: flex; min-height: 88px; flex-direction: column; justify-content: center; padding: 16px; background: rgba(12,6,24,.92); }
.partner-stats strong { font-size: 1rem; }
.partner-stats span { margin-top: 5px; color: #766d81; font-size: .58rem; }
.partner-offer-card { position: relative; z-index: 2; padding: 38px; border: 1px solid rgba(191,119,255,.28); border-radius: 28px; background: linear-gradient(150deg, rgba(119,52,198,.2), rgba(10,5,20,.92)); box-shadow: 0 40px 100px rgba(0,0,0,.38); }
.offer-status { display: flex; align-items: center; gap: 8px; margin-bottom: 30px; color: #ad9db8; font-size: .62rem; }
.offer-status i { width: 7px; height: 7px; border-radius: 50%; background: #55d58d; box-shadow: 0 0 14px #55d58d; }
.partner-offer-card h2 { margin: 0; font-size: 2.1rem; letter-spacing: -.05em; }
.partner-offer-card ul, .pricing-card ul, .partner-system-grid ul { margin: 25px 0; padding: 0; list-style: none; }
.partner-offer-card li, .pricing-card li, .partner-system-grid li { position: relative; margin: 10px 0; padding-left: 22px; color: #aa9fb4; font-size: .76rem; }
.partner-offer-card li::before, .pricing-card li::before, .partner-system-grid li::before { position: absolute; left: 0; color: #a959f1; content: "✓"; }
.offer-price { display: flex; margin: 28px 0; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); flex-direction: column; }
.offer-price > span, .offer-price em { color: #746b7f; font-size: .6rem; font-style: normal; }
.offer-price strong { margin: 5px 0; font-size: 2.2rem; letter-spacing: -.05em; }
.offer-price strong small { font-size: .8rem; font-weight: 600; }
.partner-offer-card > small { display: block; margin-top: 13px; color: #6e6678; font-size: .55rem; line-height: 1.5; text-align: center; }

.partner-pillars { display: grid; grid-template-columns: repeat(3, 1fr); width: min(1180px, calc(100% - 48px)); margin: 0 auto; overflow: hidden; border: 1px solid var(--line); border-radius: 21px; }
.partner-pillars article { min-height: 155px; padding: 28px; border-right: 1px solid var(--line); background: rgba(255,255,255,.018); }
.partner-pillars article:last-child { border-right: 0; }
.partner-pillars article > span, .partner-problem-grid article > span, .partner-system-grid article > span { color: #a757ef; font-family: ui-monospace, monospace; font-size: .58rem; font-weight: 800; }
.partner-pillars strong { display: block; margin: 19px 0 5px; font-size: .9rem; }
.partner-pillars p { margin: 0; color: #7c7287; font-size: .7rem; }

.partner-problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.partner-problem-grid article, .partner-system-grid article { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.018); }
.partner-problem-grid h3, .partner-system-grid h3 { margin: 30px 0 10px; font-size: 1.25rem; letter-spacing: -.04em; }
.partner-problem-grid p, .partner-system-grid p { margin: 0; color: #8e8499; font-size: .78rem; line-height: 1.7; }
.partner-system-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 55px; }
.partner-system-grid article { min-height: 340px; }
.partner-system-grid h3 { font-size: 1.5rem; }

.partner-steps { border-top: 1px solid var(--line); }
.partner-steps article { display: grid; grid-template-columns: 170px 1fr 1.2fr; align-items: center; gap: 35px; min-height: 145px; padding: 25px 10px; border-bottom: 1px solid var(--line); }
.partner-steps article > div { display: flex; align-items: center; gap: 17px; }
.partner-steps article > div span { display: grid; width: 47px; height: 47px; place-items: center; border: 1px solid rgba(174,92,245,.34); border-radius: 50%; color: #b567f7; font-family: ui-monospace, monospace; }
.partner-steps article > div small { color: #82768d; font-size: .6rem; text-transform: uppercase; letter-spacing: .08em; }
.partner-steps h3 { margin: 0; font-size: 1.15rem; }
.partner-steps p { margin: 0; color: #867b91; font-size: .76rem; line-height: 1.65; }

.exclusivity-section { display: grid; grid-template-columns: .75fr 1fr; align-items: center; gap: 90px; width: min(1180px, calc(100% - 32px)); margin: 20px auto 0; padding: 85px; border: 1px solid rgba(186,111,252,.22); border-radius: 30px; background: linear-gradient(130deg,#160a2b,#0c0618); }
.exclusivity-section h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -.06em; line-height: 1; }
.exclusivity-section p { color: var(--muted); line-height: 1.7; }
.exclusivity-section blockquote { margin: 28px 0; padding: 18px 20px; border-left: 2px solid #a958ee; background: rgba(255,255,255,.025); color: #92869d; font-size: .73rem; line-height: 1.6; }
.exclusivity-section blockquote strong { display: block; margin-bottom: 5px; color: white; }
.exclusivity-orbit { position: relative; display: grid; width: 310px; height: 310px; margin: auto; place-items: center; border: 1px solid rgba(175,97,243,.27); border-radius: 50%; }
.exclusivity-orbit::before, .exclusivity-orbit::after { position: absolute; inset: 38px; border: 1px solid rgba(175,97,243,.19); border-radius: 50%; content: ""; }
.exclusivity-orbit::after { inset: 85px; }
.exclusivity-orbit span { position: relative; z-index: 2; display: grid; width: 85px; height: 85px; place-items: center; border-radius: 25px; background: var(--gradient); box-shadow: 0 0 60px rgba(146,68,226,.45); font-size: 2rem; font-weight: 800; }
.exclusivity-orbit i { position: absolute; padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; background: #160a2a; color: #91849c; font-size: .52rem; font-style: normal; font-weight: 800; }
.exclusivity-orbit i:nth-of-type(1) { top: 19px; right: 36px; }
.exclusivity-orbit i:nth-of-type(2) { right: -12px; bottom: 65px; }
.exclusivity-orbit i:nth-of-type(3) { bottom: 9px; left: 35px; }

.industry-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.industry-tags span { padding: 15px 18px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.018); color: #9a8fa5; font-size: .72rem; }
.partner-pricing { display: grid; grid-template-columns: 1fr minmax(420px, .75fr); align-items: center; gap: 80px; width: min(1180px, calc(100% - 32px)); margin: 20px auto; padding: 80px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(145deg, rgba(255,255,255,.025), rgba(112,46,191,.08)); }
.partner-price-copy h2, .partner-form-copy h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 4.7rem); letter-spacing: -.06em; line-height: 1; }
.partner-price-copy > p:last-child, .partner-form-copy > p { color: var(--muted); line-height: 1.75; }
.pricing-card { padding: 36px; border: 1px solid rgba(188,113,250,.3); border-radius: 24px; background: rgba(9,4,20,.72); box-shadow: 0 35px 80px rgba(0,0,0,.28); }
.pricing-card .price { display: flex; align-items: baseline; gap: 8px; }
.pricing-card .price strong { font-size: 3.2rem; letter-spacing: -.06em; }
.pricing-card .price span { color: #81758b; font-size: .7rem; }
.pricing-card > p { color: #8f849a; font-size: .76rem; line-height: 1.65; }
.pricing-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; }
.pricing-facts div { display: flex; min-height: 80px; flex-direction: column; justify-content: center; padding: 13px; border: 1px solid var(--line); border-radius: 12px; }
.pricing-facts span { color: #746a7f; font-size: .54rem; }
.pricing-facts strong { margin-top: 5px; font-size: .76rem; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 5px; color: #ded6e5; font-size: .92rem; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: #ae5df4; font-size: 1.3rem; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 850px; margin: -5px 0 25px; color: #8f849a; font-size: .8rem; line-height: 1.7; }

.partner-form-section { display: grid; grid-template-columns: 1fr minmax(470px, .8fr); align-items: center; gap: 75px; width: min(1180px, calc(100% - 32px)); margin: 30px auto; padding: 80px; border: 1px solid rgba(191,113,255,.23); border-radius: 30px; background: linear-gradient(130deg,#170b2e,#0c0618); }
.partner-form-copy ol { display: flex; flex-direction: column; gap: 14px; margin: 30px 0 0; padding: 0; list-style: none; }
.partner-form-copy li { display: flex; align-items: center; gap: 12px; color: #92869d; font-size: .76rem; }
.partner-form-copy li span { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid rgba(177,93,246,.35); border-radius: 50%; color: #b969fa; font-size: .58rem; }

@media (max-width: 1000px) {
  .subpage-hero, .partner-hero { grid-template-columns: 1fr; gap: 50px; }
  .journal-mark { max-width: 620px; }
  .article-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-section, .article-cta, .exclusivity-section, .partner-pricing, .partner-form-section { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; display: none; }
  .partner-offer-card { max-width: 680px; }
  .partner-problem-grid { grid-template-columns: 1fr; }
  .exclusivity-orbit { order: 2; }
  .article-cta .button { justify-self: start; }
}

@media (max-width: 680px) {
  .subpage-hero, .partner-hero { min-height: auto; padding: 145px 20px 75px; }
  .subpage-hero { grid-template-columns: 1fr; }
  .subpage-hero h1, .partner-hero h1, .article-hero h1 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
  .journal-mark { min-height: 210px; padding: 30px; }
  .blog-shell { width: calc(100% - 32px); padding: 75px 0 95px; }
  .blog-toolbar { align-items: stretch; flex-direction: column; }
  .blog-search { width: 100%; }
  .article-grid, .related-grid { grid-template-columns: 1fr; }
  .article-featured { display: block; grid-column: auto; min-height: 0; }
  .article-featured .article-cover { min-height: 280px; }
  .article-featured .article-card-copy { padding: 25px; }
  .newsletter-section, .article-cta, .exclusivity-section, .partner-pricing, .partner-form-section { width: calc(100% - 20px); gap: 45px; padding: 55px 20px; border-radius: 24px; }
  .article-hero { padding: 150px 20px 65px; }
  .back-to-blog { margin-bottom: 35px; }
  .single-cover { width: calc(100% - 20px); margin-top: 25px; border-radius: 18px; }
  .article-layout { width: calc(100% - 32px); margin: 55px auto 90px; }
  .article-content { font-size: .96rem; }
  .article-content h2 { font-size: 1.8rem; }
  .related-section { width: calc(100% - 32px); margin-bottom: 80px; }
  .partner-stats { grid-template-columns: 1fr; }
  .partner-offer-card { padding: 25px 20px; }
  .partner-pillars { grid-template-columns: 1fr; width: calc(100% - 32px); }
  .partner-pillars article { border-right: 0; border-bottom: 1px solid var(--line); }
  .partner-pillars article:last-child { border-bottom: 0; }
  .partner-system-grid { grid-template-columns: 1fr; }
  .partner-steps article { grid-template-columns: 1fr; gap: 13px; padding: 25px 5px; }
  .exclusivity-orbit { width: 250px; height: 250px; }
  .industry-tags span { width: 100%; text-align: center; }
  .partner-pricing { margin-top: 0; }
  .pricing-card { padding: 25px 18px; }
  .pricing-facts { grid-template-columns: 1fr; }
  .faq-list summary { font-size: .82rem; }
  .partner-form-section { margin-top: 0; }
}

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

/* Setuply 1.3 — editorial portfolio, continuous ticker and theme reset */
body,
html body.setuply-v2 {
  padding-top: 0 !important;
}

.hero {
  min-height: min(900px, 100svh);
  padding-top: 118px;
  padding-bottom: 64px;
}

.capability-track {
  animation-duration: 34s;
}

@keyframes marquee {
  to { transform: translateX(-16.6666667%); }
}

.projects-section {
  position: relative;
  padding-top: 155px;
  padding-bottom: 155px;
  background:
    radial-gradient(circle at 50% 16%, rgba(135, 61, 226, .18), transparent 30rem),
    linear-gradient(to bottom, transparent, rgba(18, 8, 38, .66) 14%, rgba(11, 5, 24, .82) 88%, transparent);
}

.projects-section::before {
  position: absolute;
  inset: 70px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(190, 117, 255, .38), transparent);
  content: "";
}

.projects-heading {
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
}

.projects-heading h2 {
  max-width: 880px;
}

.projects-heading > p {
  padding-left: 28px;
  border-left: 1px solid rgba(180, 102, 249, .34);
}

.portfolio-proof {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-color: rgba(185, 107, 251, .2);
  border-radius: 16px;
  background: rgba(8, 4, 18, .54);
  backdrop-filter: blur(16px);
}

.portfolio-proof > div {
  min-height: 86px;
}

.portfolio-proof strong {
  font-size: .72rem;
}

.project-filters {
  margin: 38px 0 24px;
}

.project-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.project-card,
.project-card.project-featured,
.project-card:last-child:nth-child(even) {
  display: grid;
  min-height: 660px;
  overflow: hidden;
  grid-column: auto;
  grid-template-areas:
    "visual info"
    "visual story";
  grid-template-columns: minmax(0, 1.48fr) minmax(330px, .72fr);
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(35, 16, 68, .62), rgba(9, 4, 20, .96) 58%),
    #0b0617;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .24);
}

.project-card:nth-child(even) {
  grid-template-areas:
    "info visual"
    "story visual";
  grid-template-columns: minmax(330px, .72fr) minmax(0, 1.48fr);
}

.project-image,
.project-featured .project-image {
  grid-area: visual;
  height: 100%;
  min-height: 660px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #10091f;
}

.project-image::before {
  z-index: 3;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 2, 14, .04) 56%, rgba(6, 2, 14, .48));
  opacity: 1;
  pointer-events: none;
}

.project-image::after {
  z-index: 3;
  background:
    linear-gradient(90deg, transparent 70%, rgba(9, 4, 20, .22)),
    radial-gradient(circle at 50% 100%, rgba(0, 0, 0, .24), transparent 48%);
  opacity: 1;
}

.project-card:nth-child(even) .project-image::after {
  background:
    linear-gradient(270deg, transparent 70%, rgba(9, 4, 20, .22)),
    radial-gradient(circle at 50% 100%, rgba(0, 0, 0, .24), transparent 48%);
}

.project-image img,
.project-featured .project-image img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  filter: saturate(.96) contrast(1.02);
  transform: scale(1.002);
}

.project-image:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.project-image:hover img {
  transform: scale(1.025);
}

.browser-chrome {
  top: 18px;
  right: auto;
  bottom: auto;
  left: 18px;
  width: auto;
  height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(8, 4, 18, .7);
  backdrop-filter: blur(15px);
}

.browser-chrome i {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, .45);
}

.browser-chrome b {
  margin-left: 5px;
  color: rgba(255, 255, 255, .76);
  font-size: .48rem;
  letter-spacing: .12em;
}

.project-index {
  top: 18px;
  right: 18px;
  left: auto;
  background: rgba(8, 4, 18, .7);
}

.project-view {
  right: 22px;
  bottom: 22px;
  opacity: 1;
  transform: none;
}

.project-info {
  display: block;
  grid-area: info;
  padding: 48px 46px 22px;
}

.project-info h3 {
  margin-top: 8px;
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: -.065em;
  line-height: .98;
}

.project-info > div p {
  font-size: .61rem;
  letter-spacing: .13em;
}

.project-info > p {
  margin-top: 26px;
  color: #aba1b6;
  font-size: .84rem;
  line-height: 1.72;
}

.project-info button {
  margin-top: 28px;
  padding: 0 0 8px;
  border-bottom-color: color-mix(in srgb, var(--project-accent) 62%, transparent);
  font-size: .7rem;
}

.project-story {
  display: block;
  grid-area: story;
  margin: 0;
  padding: 0 46px 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.project-story > div:not(.project-tags) {
  margin-top: 20px;
  padding-left: 17px;
}

.project-story > div:first-child {
  margin-top: 0;
}

.project-story p {
  font-size: .72rem;
  line-height: 1.68;
}

.project-tags {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.project-tags span {
  padding: 7px 10px;
  color: #9a90a6;
}

@media (min-width: 901px) and (max-height: 760px) {
  .hero {
    min-height: 720px;
    padding-top: 105px;
    padding-bottom: 54px;
  }
}

@media (max-width: 1000px) {
  .project-card,
  .project-card.project-featured,
  .project-card:last-child:nth-child(even),
  .project-card:nth-child(even) {
    min-height: 0;
    grid-template-areas:
      "visual"
      "info"
      "story";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .project-image,
  .project-featured .project-image {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .project-info {
    padding: 34px 34px 18px;
  }

  .project-story {
    padding: 0 34px 34px;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 112px;
  }

  .projects-section {
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .projects-heading > p {
    padding-left: 18px;
  }

  .portfolio-proof {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card.project-featured,
  .project-card:last-child:nth-child(even) {
    border-radius: 20px;
  }

  .project-image,
  .project-featured .project-image {
    min-height: 250px;
    aspect-ratio: 4 / 3;
  }

  .browser-chrome {
    top: 12px;
    left: 12px;
  }

  .project-index {
    top: 12px;
    right: 12px;
  }

  .project-view {
    right: 12px;
    bottom: 12px;
  }

  .project-info {
    padding: 28px 22px 16px;
  }

  .project-info h3 {
    font-size: 2.4rem;
  }

  .project-story {
    padding: 0 22px 28px;
  }
}

/* Blog lead form */
.blog-lead-section {
  grid-template-columns: minmax(0, .75fr) minmax(560px, 1fr);
  align-items: start;
  gap: 64px;
  padding: 78px;
}

.blog-form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.blog-form-trust span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  color: #968a9f;
  font-size: .58rem;
  font-weight: 700;
}

.newsletter-lead-form {
  padding: 30px;
  background: rgba(5, 2, 12, .58);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
}

.newsletter-lead-form .form-top {
  margin-bottom: 22px;
}

.newsletter-lead-form .ff-t-container {
  gap: 12px;
}

.newsletter-lead-form .ff-t-cell {
  min-width: 0;
}

.newsletter-lead-form .ff-el-group {
  margin-bottom: 14px;
}

.newsletter-lead-form .ff-btn-submit {
  margin-top: 7px;
}

@media (max-width: 1000px) {
  .blog-lead-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .blog-lead-section {
    padding: 50px 18px;
  }

  .newsletter-lead-form {
    padding: 22px 16px;
  }

  .newsletter-lead-form .ff-t-container {
    display: block;
  }
}

/* Setuply 1.4 — persuasive agency positioning and mobile portfolio title */
.portfolio-title-main,
.portfolio-title-accent {
  display: block;
}

.portfolio-title-main {
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: #f7f4ff !important;
  -webkit-text-fill-color: #f7f4ff;
}

.portfolio-title-accent {
  margin-top: .08em;
}

.reasons {
  padding-top: 100px;
}

.reason-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(310px, .68fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 58px;
}

.reason-heading h2 {
  max-width: 830px;
}

.reason-heading > p {
  margin: 0 0 8px;
  padding-left: 28px;
  border-left: 1px solid rgba(186, 108, 251, .34);
  color: #9f94aa;
  font-size: .94rem;
  line-height: 1.78;
}

.reason-system {
  position: relative;
  display: grid;
  min-height: 440px;
  overflow: hidden;
  grid-template-columns: minmax(330px, .74fr) minmax(0, 1.26fr);
  align-items: center;
  gap: 58px;
  padding: 52px;
  border: 1px solid rgba(192, 119, 255, .24);
  border-radius: 30px;
  background:
    radial-gradient(circle at 84% 35%, rgba(149, 68, 238, .24), transparent 28rem),
    linear-gradient(135deg, rgba(31, 14, 60, .92), rgba(9, 4, 19, .98) 62%);
  box-shadow: 0 38px 100px rgba(0, 0, 0, .28);
  isolation: isolate;
}

.reason-system::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  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: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
  content: "";
}

.reason-system::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 15%;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(177, 94, 247, .13);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(130, 48, 221, .14), inset 0 0 80px rgba(130, 48, 221, .08);
  content: "";
  transform: translateY(-50%);
}

.reason-system-copy {
  position: relative;
  z-index: 2;
}

.reason-label {
  color: #b968ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.reason-system-copy h3 {
  max-width: 520px;
  margin: 24px 0 18px;
  font-size: clamp(2.25rem, 3.6vw, 3.75rem);
  letter-spacing: -.06em;
  line-height: .98;
}

.reason-system-copy p {
  max-width: 520px;
  margin: 0;
  color: #a69bac;
  font-size: .87rem;
  line-height: 1.75;
}

.reason-system-copy a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(189, 109, 255, .5);
  color: #f4edfb;
  font-size: .72rem;
  font-weight: 800;
}

.reason-system-copy a span {
  color: #bd67ff;
}

.reason-flow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(72px, 1fr) 20px) minmax(82px, 1.05fr);
  align-items: center;
  gap: 7px;
}

.reason-flow span,
.reason-flow strong {
  display: flex;
  min-width: 0;
  min-height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid rgba(195, 125, 255, .22);
  border-radius: 18px;
  background: rgba(8, 3, 17, .68);
  color: #d9cedf;
  font-size: .68rem;
  font-weight: 800;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
}

.reason-flow strong {
  border-color: rgba(206, 146, 255, .48);
  background: linear-gradient(145deg, #7b3aeb, #a74ef3);
  color: white;
  box-shadow: 0 20px 55px rgba(132, 53, 225, .34);
}

.reason-flow small {
  color: #766c80;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .48rem;
  letter-spacing: .08em;
}

.reason-flow strong small {
  color: rgba(255, 255, 255, .68);
}

.reason-flow i {
  color: #79508e;
  font-size: .8rem;
  font-style: normal;
  text-align: center;
}

.reason-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.reason-benefit {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(27, 14, 49, .78), rgba(9, 5, 18, .95));
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.reason-benefit::before {
  position: absolute;
  top: -100px;
  right: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(137, 57, 225, .1);
  filter: blur(42px);
  content: "";
}

.reason-benefit:hover {
  border-color: rgba(185, 104, 252, .34);
  box-shadow: 0 28px 75px rgba(0, 0, 0, .25);
  transform: translateY(-5px);
}

.reason-benefit-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reason-benefit-top span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(190, 112, 255, .25);
  border-radius: 13px;
  background: rgba(129, 54, 215, .1);
  color: #c078ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .58rem;
}

.reason-benefit-top small {
  color: #786e83;
  font-size: .53rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.reason-benefit h3 {
  max-width: 330px;
  margin: 62px 0 15px;
  font-size: 1.45rem;
  letter-spacing: -.045em;
  line-height: 1.12;
}

.reason-benefit > p {
  margin: 0;
  color: #978c9f;
  font-size: .8rem;
  line-height: 1.7;
}

.reason-benefit ul {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .075);
  list-style: none;
}

.reason-benefit li {
  position: relative;
  padding-left: 22px;
  color: #c1b6ca;
  font-size: .68rem;
  line-height: 1.55;
}

.reason-benefit li::before {
  position: absolute;
  top: .08em;
  left: 0;
  color: #a856f2;
  content: "✓";
  font-weight: 900;
}

.reason-outcomes {
  display: grid;
  grid-template-columns: minmax(300px, .76fr) minmax(0, 1.24fr);
  align-items: center;
  gap: 58px;
  margin-top: 16px;
  padding: 42px 46px;
  border: 1px solid rgba(185, 107, 250, .18);
  border-radius: 24px;
  background: rgba(12, 6, 24, .72);
}

.reason-outcomes > div:first-child > span {
  color: #a960e8;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.reason-outcomes h3 {
  max-width: 500px;
  margin: 13px 0 0;
  font-size: 1.35rem;
  letter-spacing: -.04em;
  line-height: 1.18;
}

.reason-outcome-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.reason-outcome-list > span {
  display: flex;
  min-height: 82px;
  flex-direction: column;
  justify-content: center;
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, .08);
}

.reason-outcome-list b {
  color: #eee7f4;
  font-size: .7rem;
}

.reason-outcome-list small {
  margin-top: 7px;
  color: #786e81;
  font-size: .6rem;
  line-height: 1.45;
}

@media (max-width: 1000px) {
  .reason-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .reason-heading > p {
    max-width: 680px;
  }

  .reason-system {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .reason-flow {
    max-width: 680px;
  }

  .reason-benefits {
    grid-template-columns: 1fr;
  }

  .reason-benefit {
    min-height: 0;
  }

  .reason-benefit h3 {
    margin-top: 42px;
  }

  .reason-outcomes {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 680px) {
  .projects-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
  }

  .projects-heading > p {
    max-width: 100%;
    padding-left: 18px;
  }

  .projects-heading .portfolio-title {
    max-width: 100%;
    font-size: clamp(2.08rem, 10.4vw, 3rem);
    letter-spacing: -.065em;
    line-height: .98;
    overflow-wrap: normal;
    text-wrap: balance;
    word-break: normal;
    hyphens: none;
  }

  .portfolio-title-accent {
    margin-top: .2em;
  }

  .reasons {
    width: calc(100% - 24px);
    padding-top: 78px;
  }

  .reason-heading {
    margin-bottom: 38px;
  }

  .reason-heading h2 {
    font-size: clamp(2.28rem, 11vw, 3.15rem);
    line-height: .99;
    text-wrap: balance;
  }

  .reason-heading > p {
    padding-left: 18px;
    font-size: .86rem;
  }

  .reason-system {
    min-height: 0;
    gap: 36px;
    padding: 30px 20px;
    border-radius: 22px;
  }

  .reason-system::after {
    right: -45%;
    width: 300px;
    height: 300px;
  }

  .reason-system-copy h3 {
    font-size: clamp(2.15rem, 10.8vw, 3rem);
  }

  .reason-flow {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .reason-flow span,
  .reason-flow strong {
    min-height: 66px;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 20px;
    border-radius: 14px;
  }

  .reason-flow i {
    transform: rotate(90deg);
  }

  .reason-benefits {
    gap: 12px;
    margin-top: 12px;
  }

  .reason-benefit {
    padding: 25px 21px;
    border-radius: 20px;
  }

  .reason-benefit h3 {
    margin-top: 36px;
    font-size: 1.33rem;
  }

  .reason-outcomes {
    gap: 27px;
    margin-top: 12px;
    padding: 30px 21px;
    border-radius: 20px;
  }

  .reason-outcome-list {
    grid-template-columns: 1fr;
  }

  .reason-outcome-list > span {
    min-height: 70px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-left: 0;
  }
}
