:root {
  --bg: #05070a;
  --bg-soft: #090d14;
  --panel: rgba(13, 18, 28, 0.72);
  --panel-solid: #0c111b;
  --ink: #f4f7fb;
  --muted: #8b95a7;
  --muted-dark: #586174;
  --line: rgba(164, 181, 214, 0.15);
  --blue: #3974ff;
  --blue-bright: #6fa8ff;
  --cyan: #64e6ff;
  --pointer-x: 0deg;
  --pointer-y: 0deg;
  --cursor-x: 74vw;
  --cursor-y: 28vh;
}

/* Bitrix/Ranx integration. The solution writes the selected content width to
   html/body/#blocks_wrapper. The reference is fluid with a 1480px inner
   container, so only the inner sections may be constrained. */
html,
body.extreme-web-theme,
body:has(.extreme-section),
body.extreme-web-theme #blocks_wrapper,
body.extreme-web-theme #blocks_wrapper > .block-wrap,
body.extreme-web-theme #blocks_wrapper > .block-wrap > .block,
body:has(.extreme-section) #blocks_wrapper,
body:has(.extreme-section) #blocks_wrapper > .block-wrap,
body:has(.extreme-section) #blocks_wrapper > .block-wrap > .block {
  width: 100% !important;
  max-width: none !important;
}

body.extreme-web-theme,
body:has(.extreme-section) {
  font-family: InterEW, Inter, Manrope, "Helvetica Neue", Arial, sans-serif !important;
  background:
    radial-gradient(circle at 18% 6%, rgba(47, 97, 227, 0.14), transparent 24%),
    linear-gradient(180deg, #05070a 0%, #06090f 48%, #040609 100%) !important;
}

body.extreme-web-theme #blocks_wrapper,
body:has(.extreme-section) #blocks_wrapper {
  display: flex !important;
  flex-direction: column !important;
  overflow: visible !important;
}

body.extreme-web-theme #blocks_wrapper > .block-wrap,
body:has(.extreme-section) #blocks_wrapper > .block-wrap {
  flex: 0 0 auto !important;
  align-self: stretch !important;
}

body.extreme-web-theme .block[class*="blockextreme-"],
body:has(.extreme-section) .block[class*="blockextreme-"] {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

body.extreme-web-theme .block[class*="blockextreme-"] > .block-inner,
body:has(.extreme-section) .block[class*="blockextreme-"] > .block-inner {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

body.extreme-web-theme h1,
body.extreme-web-theme h2,
body.extreme-web-theme h3,
body:has(.extreme-section) h1,
body:has(.extreme-section) h2,
body:has(.extreme-section) h3 {
  font-family: InterEW, Inter, Manrope, "Helvetica Neue", Arial, sans-serif !important;
}

/* The section numbers were deliberately removed from the approved Bitrix
   version. If an older saved block still outputs one, keep it hidden. */
body.extreme-web-theme .extreme-kicker,
body.extreme-web-theme .section-index,
body:has(.extreme-section) .extreme-kicker,
body:has(.extreme-section) .section-index {
  display: none !important;
}

/* The reference uses a single page atmosphere. Repeated grids on every Ranx
   block caused the visibly different tiled backgrounds. */
body.extreme-web-theme .extreme-section::before,
body:has(.extreme-section) .extreme-section::before {
  content: none !important;
}

/* Ranx first/last block indentation must not change the reference rhythm. */
body.extreme-web-theme .services-section,
body.extreme-web-theme .projects-section,
body.extreme-web-theme .about-section,
body.extreme-web-theme .reviews-section,
body:has(.extreme-section) .services-section,
body:has(.extreme-section) .projects-section,
body:has(.extreme-section) .about-section,
body:has(.extreme-section) .reviews-section {
  box-sizing: border-box;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Manrope, "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "ss01" 1, "cv11" 1;
}

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

::selection { background: var(--blue); color: white; }

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
  background:
    radial-gradient(circle at 18% 6%, rgba(47, 97, 227, 0.14), transparent 24%),
    linear-gradient(180deg, #05070a 0%, #06090f 48%, #040609 100%);
}

.site-shell::after {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.page-aura {
  position: fixed;
  left: var(--cursor-x);
  top: var(--cursor-y);
  z-index: 0;
  width: 760px;
  height: 760px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 116, 255, 0.12), rgba(51, 100, 224, 0.035) 42%, transparent 68%);
  filter: blur(34px);
  transform: translate(-50%, -50%);
  transition: left 0.18s linear, top 0.18s linear;
}

.page-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(132, 159, 217, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 159, 217, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0, transparent 41%);
}

.cursor-ring,
.cursor-dot {
  position: fixed;
  left: var(--cursor-x);
  top: var(--cursor-y);
  z-index: 200;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(114, 171, 255, 0.7);
  background: rgba(31, 81, 196, 0.04);
  box-shadow: 0 0 24px rgba(57, 116, 255, 0.18);
  opacity: 0;
  backdrop-filter: blur(3px);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.cursor-ring span {
  color: white;
  font-size: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.cursor-ring[data-visible="true"] { opacity: 1; }

.cursor-ring[data-active="true"] {
  width: 72px;
  height: 72px;
  border-color: rgba(111, 168, 255, 0.85);
  background: rgba(34, 86, 213, 0.26);
  box-shadow: 0 0 34px rgba(57, 116, 255, 0.3), inset 0 0 26px rgba(100, 230, 255, 0.09);
}

.cursor-ring[data-active="true"] span { font-size: 8px; }

.cursor-dot {
  width: 4px;
  height: 4px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 10, 0.74);
  backdrop-filter: blur(24px) saturate(135%);
}

.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 56px, 1480px);
  height: 82px;
  margin: 0 auto;
}

.brand-memory {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  width: max-content;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.brand-emblem {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 1px solid rgba(105, 160, 255, 0.48);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(58, 116, 255, 0.21), rgba(9, 15, 28, 0.7));
  box-shadow: inset 0 0 22px rgba(57, 116, 255, 0.11), 0 0 28px rgba(57, 116, 255, 0.08);
  transition: border-radius 0.45s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.45s ease;
}

.brand-emblem .shard {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform-origin: center;
  transition: transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1), width 0.55s ease, opacity 0.35s ease;
}

.shard-a { transform: translate(-50%, -50%) rotate(45deg) translateX(-6px); }
.shard-b { transform: translate(-50%, -50%) rotate(-45deg) translateX(6px); }
.shard-c { transform: translate(-50%, -50%) rotate(135deg) translateX(-6px); opacity: 0.58; }
.shard-d { transform: translate(-50%, -50%) rotate(-135deg) translateX(6px); opacity: 0.58; }

.brand-emblem b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 10px;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.28s ease 0.15s, transform 0.4s ease 0.12s;
}

.brand-copy { display: grid; gap: 3px; }
.brand-copy strong { font-size: 15px; letter-spacing: -0.025em; }
.brand-copy small { color: #697387; font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase; }

.brand-origin {
  position: absolute;
  top: 58px;
  left: 0;
  display: grid;
  width: 390px;
  gap: 5px;
  padding: 18px 20px;
  border: 1px solid rgba(95, 151, 255, 0.3);
  border-radius: 14px;
  background: rgba(8, 13, 22, 0.95);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(57, 116, 255, 0.09);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px) scale(0.96);
  transform-origin: top left;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.brand-origin::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 72%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.brand-origin small { color: var(--blue-bright); font-size: 8px; letter-spacing: 0.16em; }
.brand-origin strong { margin-top: 5px; font-size: 13px; }
.brand-origin em { color: var(--muted); font-size: 10px; font-style: normal; }

.brand-memory:hover .brand-emblem,
.brand-memory.is-open .brand-emblem {
  border-color: var(--cyan);
  border-radius: 50%;
  box-shadow: inset 0 0 24px rgba(57, 116, 255, 0.24), 0 0 36px rgba(57, 116, 255, 0.3);
  transform: rotate(180deg);
}

.brand-memory:hover .shard,
.brand-memory.is-open .shard { width: 18px; opacity: 0.12; }
.brand-memory:hover .shard-a, .brand-memory.is-open .shard-a { transform: translate(-50%, -50%) rotate(0deg) translateX(-11px); }
.brand-memory:hover .shard-b, .brand-memory.is-open .shard-b { transform: translate(-50%, -50%) rotate(90deg) translateX(11px); }
.brand-memory:hover .shard-c, .brand-memory.is-open .shard-c { transform: translate(-50%, -50%) rotate(180deg) translateX(-11px); }
.brand-memory:hover .shard-d, .brand-memory.is-open .shard-d { transform: translate(-50%, -50%) rotate(270deg) translateX(11px); }
.brand-memory:hover .brand-emblem b, .brand-memory.is-open .brand-emblem b { opacity: 1; transform: rotate(-180deg) scale(1); }
.brand-memory:hover .brand-origin, .brand-memory.is-open .brand-origin { opacity: 1; transform: translateY(0) scale(1); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { position: relative; padding: 12px 0; color: #9ba5b8; font-size: 12px; transition: color 0.25s ease; }
.nav a::after { position: absolute; right: 0; bottom: 5px; left: 0; height: 1px; content: ""; background: linear-gradient(90deg, var(--blue), var(--cyan)); transform: scaleX(0); transition: transform 0.3s ease; }
.nav a:hover { color: white; }
.nav a:hover::after { transform: scaleX(1); }

.header-contacts { display: flex; align-items: center; justify-self: end; gap: 8px; }
.phone { margin-right: 10px; color: #c7cfdd; font-size: 12px; white-space: nowrap; }
.social-icon { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #aeb9cc; font-size: 9px; font-weight: 700; transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease; }
.social-icon:hover { border-color: var(--blue-bright); background: rgba(57, 116, 255, 0.13); color: white; }

.magnetic { --magnet-x: 0px; --magnet-y: 0px; transform: translate(var(--magnet-x), var(--magnet-y)); transition: transform 0.16s ease-out, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease; }

.header-project {
  display: inline-flex;
  height: 40px;
  align-items: center;
  gap: 12px;
  margin-left: 7px;
  padding: 0 16px;
  border: 1px solid rgba(93, 148, 255, 0.34);
  border-radius: 100px;
  background: rgba(45, 92, 199, 0.07);
  font-size: 11px;
}

.header-project span { color: var(--blue-bright); }
.header-project:hover { border-color: var(--blue-bright); background: rgba(57, 116, 255, 0.14); box-shadow: 0 0 30px rgba(57, 116, 255, 0.12); }

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, 0.95fr);
  width: min(100% - 56px, 1480px);
  min-height: calc(100svh - 82px);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: #7f8aa0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span { width: 28px; height: 1px; background: linear-gradient(90deg, var(--blue), var(--cyan)); box-shadow: 0 0 12px var(--blue); }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(61px, 6.6vw, 106px);
  font-weight: 590;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

h1 span {
  display: block;
  padding-bottom: 0.08em;
  background: linear-gradient(98deg, #a9c6ff 0%, #4c83ff 48%, #72edff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 26px rgba(57, 116, 255, 0.16));
}

.hero-lead { max-width: 660px; margin: 34px 0 0; color: #99a3b5; font-size: clamp(16px, 1.25vw, 19px); line-height: 1.65; }
.hero-lead-typed { min-height:3.3em; }
.hero-typing-text { color:#aab8cd; }
.hero-typing-caret { display:inline-block; width:1px; height:.95em; margin-left:3px; background:var(--cyan); box-shadow:0 0 9px rgba(100,230,255,.7); vertical-align:-.08em; animation:heroCaretBlink .5s steps(1,end) infinite; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }

.project-button {
  display: flex;
  width: 236px;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px 0 20px;
  border: 1px solid rgba(88, 149, 255, 0.48);
  border-radius: 100px;
  background: linear-gradient(120deg, rgba(41, 87, 199, 0.22), rgba(8, 13, 23, 0.72));
  box-shadow: inset 0 0 22px rgba(57, 116, 255, 0.08), 0 0 34px rgba(57, 116, 255, 0.06);
  font-size: 12px;
  font-weight: 650;
}

.project-button i { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--blue), #2758d1); box-shadow: 0 0 24px rgba(57, 116, 255, 0.38); font-size: 17px; font-style: normal; transition: transform 0.3s ease; }
.project-button:hover { border-color: var(--cyan); background: linear-gradient(120deg, rgba(52, 108, 239, 0.35), rgba(10, 18, 34, 0.78)); box-shadow: inset 0 0 28px rgba(57, 116, 255, 0.12), 0 0 45px rgba(57, 116, 255, 0.16); }
.project-button:hover i { transform: rotate(45deg); }

.works-link { display: inline-flex; align-items: center; gap: 13px; color: #a8b1c1; font-size: 12px; }
.works-link span { color: var(--cyan); transition: transform 0.25s ease; }
.works-link:hover span { transform: translateY(5px); }

.hero-facts { display: grid; grid-template-columns: repeat(3, max-content); gap: clamp(28px, 4vw, 58px); margin-top: auto; padding-top: 58px; }
.hero-facts div { display: grid; gap: 5px; }
.hero-facts strong { font-size: 17px; font-weight: 620; letter-spacing: -0.03em; }
.hero-facts span { color: #626d81; font-size: 8px; letter-spacing: 0.13em; text-transform: uppercase; }

.hero-visual { position: relative; display: grid; place-items: center; min-height: 660px; border-left: 1px solid var(--line); perspective: 1200px; overflow: hidden; }
.hero-visual::before { position: absolute; inset: 12% 6%; content: ""; border-radius: 50%; background: radial-gradient(circle, rgba(42, 95, 227, 0.2), rgba(43, 86, 182, 0.05) 43%, transparent 69%); filter: blur(20px); }
.visual-status { position: absolute; top: 34px; right: 0; display: flex; align-items: center; gap: 8px; color: #6d788d; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 8px; letter-spacing: 0.13em; }
.visual-status span { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: pulse 1.8s infinite ease-in-out; }

.portal-stage { position: relative; width: min(38vw, 560px); aspect-ratio: 1; transform: rotateX(var(--pointer-y)) rotateY(var(--pointer-x)); transform-style: preserve-3d; transition: transform 0.18s ease-out; }
.portal-stage::before, .portal-stage::after { position: absolute; top: 50%; left: 50%; content: ""; background: linear-gradient(90deg, transparent, rgba(100, 230, 255, 0.18), transparent); transform: translate(-50%, -50%); }
.portal-stage::before { width: 120%; height: 1px; }
.portal-stage::after { width: 1px; height: 120%; }

.portal-ring { position: absolute; inset: 11%; border: 1px solid rgba(97, 151, 255, 0.23); border-radius: 50%; transform-style: preserve-3d; }
.ring-one { animation: portalSpin 13s linear infinite; }
.ring-two { inset: 22%; border-color: rgba(100, 230, 255, 0.21); transform: rotateX(69deg) rotateZ(20deg); animation: portalSpin 9s linear infinite reverse; }
.ring-three { inset: 2%; border-style: dashed; border-color: rgba(112, 153, 232, 0.12); animation: portalSpin 24s linear infinite reverse; }
.portal-ring::after { position: absolute; top: 50%; left: -4px; width: 7px; height: 7px; border-radius: 50%; content: ""; background: var(--cyan); box-shadow: 0 0 20px var(--cyan); }

.portal-orb { position: absolute; top: 50%; left: 50%; width: 47%; aspect-ratio: 1; border: 1px solid rgba(133, 178, 255, 0.36); border-radius: 50%; background: radial-gradient(circle at 35% 29%, rgba(160, 201, 255, 0.26), rgba(32, 79, 195, 0.18) 28%, rgba(5, 10, 20, 0.94) 68%); box-shadow: inset -34px -28px 70px rgba(19, 54, 145, 0.3), inset 18px 15px 48px rgba(118, 225, 255, 0.08), 0 0 75px rgba(50, 104, 240, 0.28); transform: translate(-50%, -50%) translateZ(38px); animation: orbFloat 5s ease-in-out infinite; }
.orb-glass { position: absolute; inset: 7%; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 50%; background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 38%); }
.orb-core { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(135deg, #d5e4ff, var(--blue-bright) 44%, var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; font-size: clamp(58px, 7vw, 108px); font-weight: 280; letter-spacing: -0.12em; text-shadow: 0 0 40px rgba(80, 143, 255, 0.1); transform: translateX(-0.05em); }

.data-node { position: absolute; display: flex; align-items: center; gap: 9px; padding: 10px 12px; border: 1px solid rgba(121, 159, 230, 0.18); border-radius: 100px; background: rgba(7, 11, 18, 0.72); color: #99a8be; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 8px; letter-spacing: 0.08em; backdrop-filter: blur(12px); box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22); }
.data-node small { color: var(--cyan); font-size: 7px; }
.node-one { top: 18%; left: 2%; animation: nodeFloat 4.5s ease-in-out infinite; }
.node-two { top: 34%; right: -2%; animation: nodeFloat 5.5s ease-in-out infinite reverse; }
.node-three { right: 12%; bottom: 13%; animation: nodeFloat 4.8s ease-in-out infinite 0.6s; }

.visual-caption { position: absolute; right: 0; bottom: 34px; left: 34px; display: flex; align-items: center; gap: 12px; color: #59657a; font-size: 8px; letter-spacing: 0.11em; text-transform: uppercase; }
.visual-caption i { width: 22px; height: 1px; background: #25314a; }

.services-section, .projects-section, .about-section, .reviews-section, .footer { position: relative; z-index: 2; width: min(100% - 56px, 1480px); margin: 0 auto; }
.services-section, .projects-section, .about-section, .reviews-section { padding: 142px 0; border-bottom: 1px solid var(--line); }

.section-heading { display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: end; gap: 34px; margin-bottom: 70px; }
.section-heading.compact { grid-template-columns: 1fr 3fr; }
.section-index { align-self: start; color: #58657d; font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(44px, 5vw, 76px); font-weight: 520; letter-spacing: -0.055em; line-height: 0.98; }
.section-heading h2 span { color: #6e7990; }
.section-heading p { margin-bottom: 4px; color: var(--muted); font-size: 14px; line-height: 1.65; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.service-card { position: relative; display: flex; min-height: 285px; flex-direction: column; padding: 26px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, rgba(13, 18, 28, 0.68), rgba(7, 10, 16, 0.9)); transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.2, 1), border-color 0.3s ease, background 0.3s ease; }
.service-card.featured { grid-column: span 2; min-height: 330px; }
.card-top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; color: #5e6a81; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; }
.card-top i { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #8b98ad; font-style: normal; transition: transform 0.3s ease, background 0.3s ease; }
.service-card h3 { position: relative; z-index: 2; max-width: 520px; margin: auto 0 14px; font-size: clamp(23px, 2.1vw, 32px); font-weight: 540; letter-spacing: -0.04em; }
.service-card p { position: relative; z-index: 2; max-width: 560px; margin: 0; color: #7f8a9e; font-size: 12px; line-height: 1.65; }
.card-glow { position: absolute; right: -90px; bottom: -120px; width: 280px; height: 280px; border-radius: 50%; background: rgba(57, 116, 255, 0.17); filter: blur(85px); opacity: 0; transition: opacity 0.4s ease; }
.service-card:hover { border-color: rgba(91, 150, 255, 0.38); background: linear-gradient(145deg, rgba(19, 29, 49, 0.82), rgba(7, 11, 19, 0.94)); transform: translateY(-8px); }
.service-card:hover .card-top i { background: var(--blue); color: white; transform: rotate(45deg); }
.service-card:hover .card-glow { opacity: 1; }

.projects-list { border-top: 1px solid var(--line); }
.project-row { display: grid; grid-template-columns: 80px 1.4fr 1fr 60px; min-height: 118px; align-items: center; border-bottom: 1px solid var(--line); transition: padding 0.35s ease, background 0.35s ease; }
.project-number { color: #536078; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; }
.project-row strong { font-size: clamp(30px, 3.2vw, 52px); font-weight: 510; letter-spacing: -0.05em; transition: color 0.25s ease; }
.project-type { color: #778297; font-size: 11px; }
.project-row i { display: grid; width: 44px; height: 44px; place-items: center; justify-self: end; border: 1px solid var(--line); border-radius: 50%; color: var(--blue-bright); font-style: normal; transition: transform 0.3s ease, background 0.3s ease; }
.project-row:hover { padding: 0 18px; background: linear-gradient(90deg, rgba(40, 88, 203, 0.11), transparent 72%); }
.project-row:hover strong { color: #a9c9ff; }
.project-row:hover i { background: var(--blue); color: white; transform: rotate(45deg); }

.about-section { min-height: 610px; }
.about-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 9vw; margin-top: 76px; }
.about-layout h2 { margin: 0; font-size: clamp(48px, 5.5vw, 84px); font-weight: 510; letter-spacing: -0.06em; line-height: 0.98; }
.about-layout > div { align-self: end; }
.about-layout p { color: #7f8a9d; font-size: 14px; line-height: 1.75; }
.about-layout .about-lead { color: #bdc6d4; font-size: 18px; }
.certificates { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.certificates span { padding: 10px 13px; border: 1px solid var(--line); border-radius: 100px; color: #8490a5; font-size: 9px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.review-card { display: grid; grid-template-columns: auto 1fr auto; min-height: 180px; align-items: center; gap: 18px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(11, 15, 23, 0.62); transition: border-color 0.3s ease, transform 0.3s ease; }
.review-mark { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(105, 159, 255, 0.35); border-radius: 15px; background: linear-gradient(145deg, rgba(57, 116, 255, 0.23), rgba(24, 49, 108, 0.08)); color: #b7d0ff; font-size: 18px; font-weight: 700; }
.review-card h3 { margin: 0 0 7px; font-size: 18px; }
.review-card p { margin: 0; color: #778296; font-size: 11px; line-height: 1.55; }
.review-card > span { color: #64718a; transition: transform 0.3s ease, color 0.3s ease; }
.review-card:hover { border-color: rgba(90, 147, 255, 0.4); transform: translateY(-5px); }
.review-card:hover > span { color: var(--cyan); transform: rotate(45deg); }

.footer { padding-top: 20px; }
.request-block { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; padding: 130px 0; border-bottom: 1px solid var(--line); }
.request-copy h2 { margin: 42px 0 24px; font-size: clamp(48px, 5.8vw, 86px); font-weight: 500; letter-spacing: -0.06em; line-height: 0.96; }
.request-copy h2 span { background: linear-gradient(95deg, #a8c5ff, var(--blue), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.request-copy p { max-width: 480px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.request-form { display: grid; gap: 22px; align-self: center; }
.request-form label { display: grid; gap: 8px; }
.request-form label > span { color: #657187; font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; }
.request-form input, .request-form textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid var(--line); outline: none; background: transparent; color: white; font-size: 15px; resize: none; transition: border-color 0.25s ease; }
.request-form input:focus, .request-form textarea:focus { border-color: var(--blue-bright); }
.request-form input::placeholder, .request-form textarea::placeholder { color: #414b5e; }
.form-submit { display: flex; height: 58px; align-items: center; justify-content: space-between; margin-top: 8px; padding: 0 19px 0 22px; border: 1px solid rgba(89, 149, 255, 0.46); border-radius: 100px; background: linear-gradient(110deg, rgba(45, 96, 223, 0.26), rgba(8, 13, 23, 0.76)); cursor: pointer; font-size: 12px; }
.form-submit span { color: var(--cyan); font-size: 17px; }
.form-submit:hover { border-color: var(--cyan); box-shadow: 0 0 38px rgba(57, 116, 255, 0.15); }
.request-form > small { color: #414b5e; font-size: 8px; line-height: 1.5; }
.form-success { display: flex; min-height: 390px; align-items: flex-start; justify-content: center; flex-direction: column; padding: 42px; border: 1px solid rgba(91, 149, 255, 0.3); border-radius: 22px; background: rgba(20, 33, 61, 0.28); }
.form-success > span { display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 28px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 30px rgba(57, 116, 255, 0.4); }
.form-success h3 { margin-bottom: 10px; font-size: 28px; }
.form-success p { color: var(--muted); }
.form-success button { padding: 0; border: 0; border-bottom: 1px solid var(--blue-bright); background: transparent; cursor: pointer; color: #a8c7ff; font-size: 11px; }

.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 52px; padding: 70px 0; }
.footer-grid > div { display: flex; align-items: flex-start; flex-direction: column; gap: 10px; }
.footer-grid small { margin-bottom: 9px; color: #4f5a6f; font-size: 8px; letter-spacing: 0.14em; }
.footer-grid a, .footer-grid span { color: #7d889c; font-size: 11px; line-height: 1.5; }
.footer-grid a:hover { color: white; }
.footer-brand strong { margin-bottom: 4px; font-size: 18px; }
.footer-bottom { display: flex; min-height: 76px; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: #475267; font-size: 9px; }
.footer-bottom a:hover { color: #a9c6ff; }

@keyframes portalSpin { from { rotate: 0deg; } to { rotate: 360deg; } }
@keyframes orbFloat { 0%, 100% { translate: 0 -5px; } 50% { translate: 0 10px; } }
@keyframes nodeFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
@keyframes pulse { 0%, 100% { opacity: 0.45; } 50% { opacity: 1; } }

@media (pointer: fine) {
  .site-shell, .site-shell a, .site-shell button, .site-shell input, .site-shell textarea { cursor: none; }
}

@media (max-width: 1220px) {
  .phone { display: none; }
  .topbar-inner, .hero, .services-section, .projects-section, .about-section, .reviews-section, .footer { width: min(100% - 40px, 1480px); }
  .hero { grid-template-columns: 1.05fr 0.8fr; }
  .hero-copy { padding-right: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { grid-column: span 1; }
}

@media (max-width: 930px) {
  .nav { display: none; }
  .topbar-inner { grid-template-columns: 1fr auto; }
  .header-contacts { grid-column: 2; }
  .header-project { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 670px; padding: 90px 0 55px; }
  .hero-visual { min-height: 620px; border-top: 1px solid var(--line); border-left: 0; }
  .portal-stage { width: min(75vw, 570px); }
  .section-heading, .section-heading.compact { grid-template-columns: 1fr; }
  .section-heading p { max-width: 560px; }
  .about-layout { grid-template-columns: 1fr; gap: 50px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .request-block { grid-template-columns: 1fr; gap: 70px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .page-aura, .cursor-ring, .cursor-dot { display: none; }
  .page-grid { background-size: 52px 52px; }
  .topbar-inner, .hero, .services-section, .projects-section, .about-section, .reviews-section, .footer { width: calc(100% - 28px); }
  .topbar-inner { height: 72px; }
  .brand-emblem { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 13px; }
  .brand-copy small { font-size: 7px; }
  .brand-origin { top: 52px; width: min(350px, calc(100vw - 28px)); }
  .social-icon { width: 34px; height: 34px; }
  .hero-copy { min-height: 620px; padding: 74px 0 46px; }
  h1 { font-size: clamp(49px, 15.4vw, 72px); line-height: 0.98; }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .project-button { width: 100%; }
  .hero-facts { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
  .hero-facts div:first-child { grid-column: 1 / -1; }
  .hero-visual { min-height: 500px; }
  .portal-stage { width: 92vw; }
  .node-one { left: 0; }
  .node-two { right: 0; }
  .visual-caption { left: 0; gap: 7px; }
  .services-section, .projects-section, .about-section, .reviews-section { padding: 94px 0; }
  .section-heading { margin-bottom: 48px; }
  .section-heading h2 { font-size: 12vw; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card.featured { min-height: 270px; }
  .project-row { grid-template-columns: 38px 1fr 44px; min-height: 105px; }
  .project-type { display: none; }
  .project-row strong { font-size: 8.4vw; }
  .about-layout h2 { font-size: 13vw; }
  .reviews-grid { gap: 8px; }
  .review-card { grid-template-columns: auto 1fr; min-height: 150px; padding: 18px; }
  .review-card > span { display: none; }
  .request-block { padding: 95px 0; }
  .request-copy h2 { font-size: 13vw; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
}

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

/* V3 — angular brand, hover terminal, unified pictograms and cut-scroll motion */
.new-brand {
  min-width: 235px;
  isolation: isolate;
}

.extreme-logo {
  position: relative;
  display: flex;
  width: 232px;
  height: 58px;
  align-items: center;
  overflow: hidden;
}

.logo-symbol {
  position: relative;
  display: block;
  width: 72px;
  height: 54px;
  flex: 0 0 72px;
  filter: drop-shadow(0 0 13px rgba(62, 126, 255, 0.18));
}

.logo-symbol svg { width: 100%; height: 100%; overflow: visible; }
.logo-blade, .logo-cut { transform-box: fill-box; transform-origin: center; transition: transform 0.52s cubic-bezier(.16, 1, .3, 1), fill 0.35s ease, opacity 0.35s ease; }
.logo-blade { fill: #e9f1ff; }
.blade-2 { fill: #abc7ff; }
.blade-3 { fill: #3778ff; }
.blade-4 { fill: #63e5ff; }
.logo-cut { fill: #05070a; stroke: rgba(255,255,255,.28); stroke-width: .7; }
.logo-year { fill: #fff; font: 800 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: -.08em; opacity: 0; transform: translateX(-7px); transition: opacity .25s ease .1s, transform .38s cubic-bezier(.16,1,.3,1) .08s; }

.logo-type {
  position: relative;
  display: grid;
  width: 155px;
  gap: 3px;
  transform: skewX(-7deg);
  transform-origin: left center;
  transition: transform .42s cubic-bezier(.16,1,.3,1);
}

.logo-type strong {
  color: #f5f8ff;
  font-size: 18px;
  font-style: italic;
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: .82;
  transition: letter-spacing .4s cubic-bezier(.16,1,.3,1), color .25s ease;
}

.logo-type > span {
  display: block;
  width: max-content;
  padding: 3px 12px 3px 8px;
  clip-path: polygon(5% 0,100% 0,92% 100%,0 100%);
  background: linear-gradient(90deg, #275fff, #3d8bff 63%, #66e9ff);
  color: #dceaff;
  font-size: 7px;
  font-style: italic;
  font-weight: 750;
  letter-spacing: .14em;
  line-height: 1;
}

.logo-type > span b { color: white; font-size: 10px; letter-spacing: -.02em; }
.logo-type > i { position: absolute; right: 10px; bottom: -1px; color: var(--cyan); font: 700 7px/1 ui-monospace, SFMono-Regular, Menlo, monospace; font-style: normal; letter-spacing: .12em; opacity: 0; transform: translateX(10px); transition: opacity .28s ease .14s, transform .35s ease .12s; }
.logo-scan { position: absolute; top: 0; bottom: 0; left: -25%; width: 18%; background: linear-gradient(90deg, transparent, rgba(117,232,255,.85), transparent); filter: blur(3px); opacity: 0; transform: skewX(-18deg); }

.new-brand:hover .blade-1, .new-brand.is-open .blade-1 { transform: translate(-9px,-6px) rotate(-7deg); fill: #fff; }
.new-brand:hover .blade-2, .new-brand.is-open .blade-2 { transform: translate(4px,-3px) rotate(4deg); }
.new-brand:hover .blade-3, .new-brand.is-open .blade-3 { transform: translate(-5px,6px) rotate(-4deg); }
.new-brand:hover .blade-4, .new-brand.is-open .blade-4 { transform: translate(8px,2px) rotate(5deg); }
.new-brand:hover .logo-cut, .new-brand.is-open .logo-cut { transform: translate(-4px,7px) rotate(-9deg); }
.new-brand:hover .logo-year, .new-brand.is-open .logo-year { opacity: 1 !important; transform: translateX(0) !important; }
.new-brand:hover .logo-type, .new-brand.is-open .logo-type { transform: skewX(-10deg) translateX(4px); }
.new-brand:hover .logo-type strong, .new-brand.is-open .logo-type strong { color: #fff; letter-spacing: -.025em; }
.new-brand:hover .logo-type > i, .new-brand.is-open .logo-type > i { opacity: 1; transform: translateX(0); }
.new-brand:hover .logo-scan, .new-brand.is-open .logo-scan { animation: logoScan .72s cubic-bezier(.2,.8,.2,1) 1; }

.new-brand .brand-origin { top: 64px; width: 420px; border-radius: 0; clip-path: polygon(0 0,100% 0,96% 100%,0 100%); }
.new-brand:hover .brand-origin, .new-brand.is-open .brand-origin { opacity: 1 !important; transform: translateY(0) scale(1) !important; }

.matrix-visual {
  --matrix-x: 0deg;
  --matrix-y: 0deg;
  --spot-x: 50%;
  --spot-y: 50%;
  isolation: isolate;
  background-image:
    linear-gradient(rgba(112,154,226,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112,154,226,.06) 1px, transparent 1px),
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(51,111,255,.11), transparent 31%);
  background-size: 54px 54px, 54px 54px, 100% 100%;
  transition: background-position .12s linear;
}

.matrix-visual::before {
  inset: 16% 8%;
  border-radius: 0;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(42,101,242,.2), rgba(21,48,110,.045) 42%, transparent 68%);
  opacity: .48;
  transition: opacity .25s ease;
}

.matrix-visual::after {
  position: absolute;
  inset: 0;
  z-index: 8;
  border: 1px solid transparent;
  content: "";
  pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(104,228,255,.28) 49%, transparent 56%) -140% 0 / 70% 100% no-repeat;
  opacity: 0;
}

.matrix-visual:hover::before { opacity: 1; }
.matrix-visual:hover::after { opacity: 1; animation: terminalSlash .86s cubic-bezier(.16,1,.3,1) 1; }
.matrix-visual .visual-status { right: 24px; }
.matrix-visual .visual-status span { animation: none; }
.matrix-visual:hover .visual-status { color: #a8c5ff; }
.matrix-visual:hover .visual-status span { animation: pulse .8s ease-in-out infinite; }

.matrix-hint {
  position: absolute;
  top: 31px;
  left: 24px;
  z-index: 9;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #59667c;
  font: 600 8px/1.5 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.matrix-hint b { color: var(--cyan); font-size: 8px; }
.matrix-visual:hover .matrix-hint { color: #a1aec3; }

.matrix-shell {
  position: relative;
  z-index: 3;
  width: min(41vw, 550px);
  aspect-ratio: 1;
  transform: rotateX(var(--matrix-y)) rotateY(var(--matrix-x));
  transform-style: preserve-3d;
  transition: transform .18s ease-out, filter .28s ease;
}

.matrix-frame, .matrix-axis, .matrix-core, .matrix-orbit { position: absolute; }
.matrix-frame { border: 1px solid rgba(84,140,255,.18); transform-style: preserve-3d; }
.frame-a { inset: 8%; border-radius: 50%; }
.frame-b { inset: 19%; border-color: rgba(102,229,255,.2); clip-path: polygon(25% 0,75% 0,100% 25%,100% 75%,75% 100%,25% 100%,0 75%,0 25%); }
.frame-b::before { position: absolute; inset: 10px; border: 1px solid rgba(82,139,255,.13); content: ""; }
.frame-c { inset: 1%; border-style: dashed; border-color: rgba(128,167,235,.13); border-radius: 50%; }
.matrix-axis { top: 50%; left: 50%; background: linear-gradient(90deg, transparent, rgba(101,227,255,.18), transparent); transform: translate(-50%,-50%); }
.axis-x { width: 110%; height: 1px; }
.axis-y { width: 1px; height: 110%; }

.matrix-core {
  top: 50%;
  left: 50%;
  display: grid;
  width: 39%;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(99,161,255,.34);
  clip-path: polygon(14% 0,100% 0,86% 100%,0 100%);
  background: linear-gradient(145deg, rgba(28,64,145,.32), rgba(5,9,16,.92));
  box-shadow: inset 0 0 46px rgba(58,117,255,.16), 0 0 50px rgba(43,102,240,.17);
  transform: translate(-50%,-50%) translateZ(42px);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.matrix-core svg { width: 62%; fill: url(#none); filter: drop-shadow(0 0 15px rgba(87,160,255,.25)); }
.matrix-core svg path:first-child { fill: #eaf2ff; }
.matrix-core svg path:last-child { fill: #4c8fff; }
.matrix-core > span { position: absolute; right: 10px; bottom: 8px; color: #7192c6; font: 700 6px/1.3 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; text-align: right; }
.matrix-visual:hover .matrix-core { border-color: rgba(100,229,255,.66); box-shadow: inset 0 0 58px rgba(58,117,255,.24), 0 0 75px rgba(43,102,240,.3); }

.matrix-orbit { inset: 25%; border: 1px solid rgba(105,155,247,.22); border-radius: 50%; transform-style: preserve-3d; animation: systemSpin 7s linear infinite paused; }
.orbit-b { inset: 13%; border-style: dashed; border-color: rgba(103,225,255,.14); animation-duration: 12s; animation-direction: reverse; }
.matrix-orbit i { position: absolute; top: 50%; left: -4px; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 15px var(--cyan); }
.matrix-visual:hover .matrix-orbit, .matrix-visual:hover .matrix-frame { animation-play-state: running; }
.matrix-visual:hover .frame-a { animation: systemSpin 13s linear infinite; }
.matrix-visual:hover .frame-c { animation: systemSpin 22s linear infinite reverse; }

.matrix-node {
  position: absolute;
  z-index: 5;
  padding: 9px 12px;
  border: 1px solid rgba(112,157,235,.2);
  clip-path: polygon(6px 0,100% 0,calc(100% - 6px) 100%,0 100%);
  background: rgba(5,9,16,.82);
  color: #8090a8;
  font: 650 7px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em;
  backdrop-filter: blur(10px);
}

.matrix-node b { margin-right: 6px; color: var(--cyan); }
.node-a { top: 19%; left: 0; }
.node-b { top: 37%; right: -1%; }
.node-c { right: 9%; bottom: 14%; }
.matrix-visual:hover .node-a { animation: dataGlitch 2.2s steps(1,end) infinite; }
.matrix-visual:hover .node-b { animation: dataGlitch 2.7s steps(1,end) .4s infinite; }
.matrix-visual:hover .node-c { animation: dataGlitch 2.4s steps(1,end) .8s infinite; }

.code-rain { position: absolute; inset: 0; z-index: 1; overflow: hidden; opacity: .22; pointer-events: none; mask-image: linear-gradient(to bottom, transparent, black 22%, black 78%, transparent); }
.code-rain span { position: absolute; top: -45%; color: #5acfff; font: 600 7px/2.1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .07em; opacity: .42; animation: codeRain 4.2s linear infinite paused; }
.code-rain span:nth-child(1) { left: 7%; animation-duration: 4.6s; }
.code-rain span:nth-child(2) { left: 19%; animation-delay: -1.8s; animation-duration: 5.4s; }
.code-rain span:nth-child(3) { left: 32%; animation-delay: -.8s; }
.code-rain span:nth-child(4) { left: 46%; animation-delay: -2.8s; animation-duration: 5.8s; }
.code-rain span:nth-child(5) { left: 60%; animation-delay: -1.2s; animation-duration: 4.8s; }
.code-rain span:nth-child(6) { left: 73%; animation-delay: -3.5s; animation-duration: 6s; }
.code-rain span:nth-child(7) { left: 84%; animation-delay: -2.2s; }
.code-rain span:nth-child(8) { left: 94%; animation-delay: -1s; animation-duration: 5.2s; }
.matrix-visual:hover .code-rain span { animation-play-state: running; }

.code-console {
  position: absolute;
  bottom: 42px;
  left: 24px;
  z-index: 6;
  display: grid;
  width: 250px;
  gap: 5px;
  padding: 13px 15px;
  border-left: 1px solid rgba(100,229,255,.35);
  background: linear-gradient(90deg, rgba(7,13,24,.78), transparent);
  color: #738197;
  font: 500 7px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  opacity: .5;
  transition: opacity .25s ease, transform .32s cubic-bezier(.16,1,.3,1);
}

.code-console span { transform: translateX(-7px); opacity: .42; transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .25s ease; }
.code-console i { margin-right: 8px; color: #3e6da9; font-style: normal; }
.matrix-visual:hover .code-console { opacity: 1; transform: translateX(5px); }
.matrix-visual:hover .code-console span { transform: translateX(0); opacity: 1; }
.matrix-visual:hover .code-console span:nth-child(2) { transition-delay: .04s; }
.matrix-visual:hover .code-console span:nth-child(3) { transition-delay: .08s; }
.matrix-visual:hover .code-console span:nth-child(4) { transition-delay: .12s; }
.matrix-visual:hover .code-console span:nth-child(5) { color: var(--cyan); transition-delay: .16s; }

.matrix-progress { position: absolute; right: 24px; bottom: 29px; z-index: 6; display: grid; width: 43%; gap: 7px; justify-items: end; color: #4f5d73; font: 600 6px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .1em; }
.matrix-progress i { position: relative; display: block; width: 100%; height: 1px; overflow: hidden; background: rgba(113,151,220,.16); }
.matrix-progress i::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, transparent, var(--cyan), transparent); transform: translateX(-105%); }
.matrix-visual:hover .matrix-progress i::after { animation: progressScan 1.35s linear infinite; }

.card-top { align-items: flex-start; }
.service-icon { display: grid; width: 56px; height: 56px; place-items: center; border: 1px solid rgba(108,158,245,.2); clip-path: polygon(9px 0,100% 0,calc(100% - 9px) 100%,0 100%); background: linear-gradient(145deg, rgba(40,88,202,.16), rgba(7,12,20,.48)); color: #75a7ff; transition: color .3s ease, border-color .3s ease, background .3s ease, transform .35s cubic-bezier(.16,1,.3,1); }
.service-icon svg { width: 29px; height: 29px; }
.service-card .card-top > span { color: #526078; font: 700 8px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .1em; }
.service-card .card-arrow { position: absolute; top: 25px; right: 25px; display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #8b98ad; font-style: normal; transition: transform .32s cubic-bezier(.16,1,.3,1), background .3s ease, color .3s ease; }
.service-card:hover .service-icon { border-color: rgba(100,229,255,.65); background: linear-gradient(145deg, rgba(49,108,242,.28), rgba(7,14,25,.65)); color: var(--cyan); transform: translateY(-3px) skewX(-4deg); }
.service-card:hover .card-arrow { background: var(--blue); color: white; transform: rotate(45deg); }
.service-card::after { position: absolute; top: 0; left: -25%; width: 18%; height: 100%; content: ""; background: linear-gradient(90deg, transparent, rgba(96,213,255,.08), transparent); transform: skewX(-13deg); transition: left .65s cubic-bezier(.16,1,.3,1); }
.service-card:hover::after { left: 120%; }

.rating-card { display: flex; min-height: 285px; align-items: stretch; flex-direction: column; gap: 0; background: linear-gradient(145deg, rgba(13,18,28,.78), rgba(7,10,16,.92)); }
.rating-head { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; }
.rating-head h3 { margin: 0; }
.rating-head > span { color: #66758e; transition: transform .3s ease, color .3s ease; }
.rating-line { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.rating-line strong { font-size: 48px; font-weight: 520; letter-spacing: -.06em; line-height: 1; }
.rating-line span { color: #657087; font-size: 11px; }
.stars { margin-top: 8px; color: #597096; font-size: 18px; letter-spacing: .16em; text-shadow: 0 0 16px rgba(58,117,255,.15); transition: color .35s ease, text-shadow .35s ease; }
.rating-card p { margin: 18px 0 12px; }
.rating-card > small { color: #465268; font: 650 7px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .1em; }
.rating-card:hover .stars { color: #6ba4ff; text-shadow: 0 0 20px rgba(58,117,255,.45); }
.rating-card:hover .rating-head > span { color: var(--cyan); transform: rotate(45deg); }

.cut-reveal {
  scroll-margin-top: 82px;
  opacity: .08;
  clip-path: polygon(0 0,100% 0,100% 35%,94% 35%,100% 48%,100% 100%,0 100%,0 68%,6% 68%,0 55%);
  transform: translateY(72px) skewY(-.65deg);
  transition: opacity .22s linear, transform .62s cubic-bezier(.16,1,.3,1), clip-path .58s cubic-bezier(.16,1,.3,1);
}

.cut-reveal::before {
  position: absolute;
  top: 0;
  right: 100%;
  z-index: 20;
  width: 46%;
  height: 2px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan));
  box-shadow: 0 0 24px rgba(57,116,255,.8);
  transform: skewX(-35deg);
}

.cut-reveal.is-revealed { opacity: 1; clip-path: polygon(0 0,100% 0,100% 100%,0 100%); transform: translateY(0) skewY(0); }
.cut-reveal.is-revealed::before { animation: cutBlade .64s cubic-bezier(.16,1,.3,1) 1; }

@keyframes logoScan { 0% { left:-25%; opacity:0; } 18% { opacity:.8; } 100% { left:115%; opacity:0; } }
@keyframes terminalSlash { from { background-position:-140% 0; } to { background-position:260% 0; } }
@keyframes systemSpin { from { rotate:0deg; } to { rotate:360deg; } }
@keyframes dataGlitch { 0%,89%,100% { transform:translate(0); } 90% { transform:translate(3px,-1px); } 92% { transform:translate(-2px,1px); } 94% { transform:translate(0); } }
@keyframes codeRain { from { transform:translateY(0); } to { transform:translateY(190%); } }
@keyframes progressScan { from { transform:translateX(-105%); } to { transform:translateX(105%); } }
@keyframes cutBlade { 0% { right:100%; width:46%; } 100% { right:-46%; width:30%; } }

@media (max-width: 1220px) {
  .new-brand { min-width: 220px; }
  .extreme-logo { width: 215px; }
  .matrix-shell { width: min(45vw, 520px); }
}

@media (max-width: 930px) {
  .matrix-shell { width: min(76vw, 550px); }
  .code-console { bottom: 30px; }
  .matrix-progress { bottom: 23px; }
}

@media (max-width: 640px) {
  .new-brand { min-width: 172px; }
  .extreme-logo { width: 170px; }
  .logo-symbol { width: 59px; height: 48px; flex-basis: 59px; }
  .logo-type { width: 108px; }
  .logo-type strong { font-size: 14px; }
  .logo-type > span { padding: 3px 9px 3px 6px; font-size: 5px; }
  .logo-type > span b { font-size: 8px; }
  .logo-type > i { display: none; }
  .new-brand .brand-origin { width: min(360px, calc(100vw - 28px)); }
  .matrix-shell { width: 98vw; }
  .matrix-node { padding: 7px 9px; font-size: 6px; }
  .node-a { left: 4%; }
  .node-b { right: 3%; }
  .code-console { left: 12px; bottom: 25px; width: 205px; padding: 10px; font-size: 6px; }
  .matrix-progress { right: 12px; bottom: 18px; width: 45%; }
  .matrix-hint { left: 12px; }
  .matrix-visual .visual-status { right: 12px; }
  .service-icon { width: 50px; height: 50px; }
  .rating-card { min-height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  .cut-reveal { opacity: 1; clip-path: none; transform: none; }
  .matrix-visual:hover .code-rain span, .matrix-visual:hover .matrix-orbit, .matrix-visual:hover .matrix-frame { animation: none !important; }
}

/* V4 — heritage logo terminal, real service marks and full-cycle system map */
.new-brand {
  width: 282px;
  min-width: 282px;
  height: 58px;
  overflow: visible;
}

.logo-terminal {
  position: relative;
  display: flex;
  width: 282px;
  height: 58px;
  align-items: center;
  overflow: visible;
  isolation: isolate;
}

.heritage-symbol {
  position: relative;
  z-index: 3;
  display: block;
  width: 64px;
  height: 54px;
  flex: 0 0 64px;
  filter: drop-shadow(0 0 12px rgba(75, 139, 255, .16));
}

.heritage-symbol svg { width: 100%; height: 100%; overflow: visible; }
.heritage-shard, .heritage-eye { transform-box: fill-box; transform-origin: center; transition: transform .62s cubic-bezier(.16,1,.3,1), opacity .28s ease, fill .25s ease; }
.heritage-a { fill: #f5f8ff; }
.heritage-b { fill: #a9c8ff; }
.heritage-c { fill: #3778ff; }
.heritage-d { fill: #65e8ff; }
.heritage-eye { fill: #05070a; stroke: rgba(255,255,255,.32); stroke-width: .8; }

.heritage-wordmark {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  width: 205px;
  height: 52px;
  transform: skewX(-7deg);
}

.heritage-wordmark strong, .heritage-wordmark b { display: flex; align-items: center; }
.heritage-wordmark strong { color: #f6f8fd; font-size: 18px; font-weight: 850; letter-spacing: -.045em; }
.heritage-wordmark b { position: relative; padding: 6px 11px 5px 9px; clip-path: polygon(8% 0,100% 0,90% 100%,0 100%); background: linear-gradient(100deg,#255cff,#408dff 64%,#65e8ff); color: white; font-size: 12px; font-weight: 850; letter-spacing: -.025em; }
.heritage-wordmark i { display: block; font-style: normal; transform-origin: center; transition: transform .62s cubic-bezier(.16,1,.3,1), opacity .24s ease, filter .25s ease; }

.brand-php {
  position: absolute;
  top: 11px;
  left: 6px;
  z-index: 2;
  display: grid;
  width: 278px;
  height: 40px;
  align-content: center;
  gap: 4px;
  overflow: hidden;
  border-left: 1px solid rgba(100,230,255,.5);
  padding-left: 9px;
  background: linear-gradient(90deg, rgba(8,18,34,.96), rgba(7,12,21,.76) 82%, transparent);
  color: #8da4c7;
  font: 600 6.7px/1.15 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: -.01em;
  opacity: 0;
  transform: scaleX(.76);
  transform-origin: left center;
  transition: opacity .14s ease, transform .3s cubic-bezier(.16,1,.3,1);
}

.brand-php code { display: block; width: 0; overflow: hidden; white-space: nowrap; }
.brand-php em { color: var(--cyan); font-style: normal; }
.php-caret { position: absolute; right: 5px; bottom: 8px; width: 1px; height: 8px; background: var(--cyan); opacity: 0; }

.new-brand:hover .heritage-a { transform: translate(-62px,-34px) rotate(-28deg); opacity: .08; }
.new-brand:hover .heritage-b { transform: translate(-38px,48px) rotate(36deg); opacity: .08; }
.new-brand:hover .heritage-c { transform: translate(17px,56px) rotate(-24deg); opacity: .08; }
.new-brand:hover .heritage-d { transform: translate(52px,-40px) rotate(32deg); opacity: .08; }
.new-brand:hover .heritage-eye { transform: translate(-23px,24px) rotate(55deg); opacity: 0; }
.new-brand:hover .heritage-wordmark i { opacity: .04; filter: blur(2px); }
.new-brand:hover .letter-1 { transform: translate(-75px,-35px) rotate(-20deg); }
.new-brand:hover .letter-2 { transform: translate(-54px,45px) rotate(18deg); }
.new-brand:hover .letter-3 { transform: translate(-24px,-52px) rotate(-11deg); }
.new-brand:hover .letter-4 { transform: translate(4px,52px) rotate(24deg); }
.new-brand:hover .letter-5 { transform: translate(30px,-48px) rotate(-18deg); }
.new-brand:hover .letter-6 { transform: translate(58px,42px) rotate(16deg); }
.new-brand:hover .letter-7 { transform: translate(84px,-30px) rotate(31deg); }
.new-brand:hover .web-letter-1 { transform: translate(18px,-58px) rotate(-24deg); }
.new-brand:hover .web-letter-2 { transform: translate(55px,52px) rotate(20deg); }
.new-brand:hover .web-letter-3 { transform: translate(92px,-36px) rotate(-16deg); }
.new-brand:hover .brand-php { opacity: 1; transform: scaleX(1); transition-delay: .16s; }
.new-brand:hover .php-line-1 { animation: typePhpOne .72s steps(38,end) .25s forwards; }
.new-brand:hover .php-line-2 { animation: typePhpTwo .68s steps(39,end) .92s forwards; }
.new-brand:hover .php-caret { animation: caretBlink .48s steps(1,end) .3s infinite; }

.fullcycle-visual { overflow: hidden; }
.fullcycle-visual::before { inset: 5%; background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(44,103,243,.25), rgba(22,53,121,.06) 38%, transparent 68%); }

.php-matrix {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 2%, black 18%, black 82%, transparent 99%);
}

.php-matrix span {
  position: absolute;
  top: -48%;
  width: 145px;
  white-space: pre-wrap;
  color: #5bd4f5;
  font: 500 6.5px/1.85 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .02em;
  opacity: .13;
  text-shadow: 0 0 12px rgba(75,191,255,.25);
  animation: phpMatrixFall 8s linear infinite paused;
}

.php-matrix span:nth-child(1) { left: 3%; animation-duration: 9.2s; }
.php-matrix span:nth-child(2) { left: 24%; animation-delay: -3.4s; animation-duration: 10.8s; }
.php-matrix span:nth-child(3) { left: 47%; animation-delay: -6.2s; animation-duration: 9.7s; }
.php-matrix span:nth-child(4) { left: 69%; animation-delay: -2.1s; animation-duration: 11.5s; }
.php-matrix span:nth-child(5) { left: 88%; animation-delay: -7.5s; animation-duration: 10.2s; }
.fullcycle-visual:hover .php-matrix span { animation-play-state: running; }

.fullcycle-map {
  position: relative;
  z-index: 4;
  width: min(43vw, 640px);
  aspect-ratio: 640 / 560;
  transform: rotateX(var(--matrix-y)) rotateY(var(--matrix-x));
  transform-style: preserve-3d;
  transition: transform .18s ease-out, filter .3s ease;
}

.system-links { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.system-links path { fill: none; stroke: rgba(97,160,255,.58); stroke-width: 1.2; stroke-dasharray: 470; stroke-dashoffset: 470; filter: drop-shadow(0 0 5px rgba(80,148,255,.5)); }
.system-links circle { fill: var(--cyan); opacity: .35; filter: drop-shadow(0 0 7px var(--cyan)); }
.fullcycle-visual:hover .system-links path { animation: drawSystemLine .92s cubic-bezier(.16,1,.3,1) forwards; }
.fullcycle-visual:hover .system-links path:nth-child(2) { animation-delay: .08s; }
.fullcycle-visual:hover .system-links path:nth-child(3) { animation-delay: .16s; }
.fullcycle-visual:hover .system-links path:nth-child(4) { animation-delay: .24s; }
.fullcycle-visual:hover .system-links path:nth-child(5) { animation-delay: .32s; }
.fullcycle-visual:hover .system-links path:nth-child(6) { animation-delay: .4s; }
.fullcycle-visual:hover .system-links circle { animation: endpointPulse 1.1s ease-in-out infinite .55s; }

.flow-node {
  position: absolute;
  z-index: 5;
  display: grid;
  width: 124px;
  height: 70px;
  grid-template-columns: 38px 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  gap: 0 8px;
  padding: 10px 10px;
  border: 1px solid rgba(116,158,230,.22);
  clip-path: polygon(8px 0,100% 0,calc(100% - 8px) 100%,0 100%);
  background: linear-gradient(145deg,rgba(11,21,39,.94),rgba(5,9,16,.84));
  box-shadow: inset 0 0 24px rgba(57,116,255,.045), 0 13px 30px rgba(0,0,0,.24);
  opacity: .72;
  transition: border-color .28s ease, box-shadow .28s ease, opacity .28s ease, transform .55s cubic-bezier(.16,1,.3,1);
}

.flow-node strong { align-self: end; color: #c1cee2; font: 750 7px/1 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .06em; }
.flow-node small { align-self: start; color: #52627c; font: 650 5.5px/1.4 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .04em; }
.node-icon { grid-row: 1 / 3; display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(103,161,255,.36); background: rgba(39,89,196,.13); color: #70a8ff; font: 750 10px/1 ui-monospace,SFMono-Regular,Menlo,monospace; font-style: normal; }
.server-icon { align-content: center; gap: 3px; padding: 7px 6px; }
.server-icon b { display: block; width: 100%; height: 3px; border: 1px solid currentColor; }
.php-icon { font-size: 8px; }
.traffic-icon { font-family: Arial,sans-serif; font-size: 17px; }
.crm-icon { border-radius: 50%; }
.bot-icon { border-radius: 50%; font-size: 16px; }
.bot-icon span { transform: translate(-1px,1px) rotate(-17deg); }
.flow-server { top: 8%; left: 3%; }
.flow-php { top: 43%; left: 0; }
.flow-bitrix { bottom: 6%; left: 10%; }
.flow-traffic { top: 8%; right: 3%; }
.flow-crm { top: 43%; right: 0; }
.flow-bot { right: 9%; bottom: 6%; }
.fullcycle-visual:hover .flow-node { border-color: rgba(104,181,255,.54); box-shadow: inset 0 0 30px rgba(57,116,255,.1), 0 0 24px rgba(44,102,239,.13); opacity: 1; }
.fullcycle-visual:hover .flow-server { transform: translate(4px,4px); transition-delay: .05s; }
.fullcycle-visual:hover .flow-php { transform: translateX(7px); transition-delay: .12s; }
.fullcycle-visual:hover .flow-bitrix { transform: translate(5px,-5px); transition-delay: .2s; }
.fullcycle-visual:hover .flow-traffic { transform: translate(-4px,4px); transition-delay: .28s; }
.fullcycle-visual:hover .flow-crm { transform: translateX(-7px); transition-delay: .36s; }
.fullcycle-visual:hover .flow-bot { transform: translate(-5px,-5px); transition-delay: .44s; }

.project-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 7;
  width: 188px;
  height: 154px;
  overflow: hidden;
  border: 1px solid rgba(111,176,255,.5);
  clip-path: polygon(10px 0,100% 0,calc(100% - 12px) 100%,0 100%);
  background: rgba(5,10,19,.94);
  box-shadow: inset 0 0 38px rgba(47,101,222,.14), 0 0 45px rgba(42,97,223,.15);
  transform: translate(-50%,-50%) translateZ(45px);
  transition: transform .42s cubic-bezier(.16,1,.3,1), border-color .3s ease, box-shadow .3s ease;
}

.browser-bar { display: flex; height: 25px; align-items: center; gap: 4px; padding: 0 9px; border-bottom: 1px solid rgba(110,153,229,.18); background: rgba(23,44,79,.42); }
.browser-bar i { width: 4px; height: 4px; border-radius: 50%; background: #546a8d; }
.browser-bar span { margin-left: 7px; color: #5f7393; font: 600 5.5px/1 ui-monospace,SFMono-Regular,Menlo,monospace; }
.site-preview { position: relative; display: grid; height: 105px; align-content: start; gap: 3px; padding: 15px 14px; background: radial-gradient(circle at 75% 18%,rgba(55,116,255,.19),transparent 42%); }
.site-preview b { color: #7888a2; font: 700 5px/1 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .14em; }
.site-preview strong { color: white; font-size: 23px; font-weight: 580; letter-spacing: -.06em; }
.site-preview > span { display: block; width: 58%; height: 2px; margin-top: 2px; background: #2a3850; }
.site-preview > span:nth-of-type(2) { width: 42%; }
.site-preview em { position: absolute; right: 13px; bottom: 14px; padding: 6px 8px; border: 1px solid rgba(105,176,255,.48); border-radius: 100px; background: rgba(43,95,214,.15); color: #8cb9ff; font: 700 5px/1 ui-monospace,SFMono-Regular,Menlo,monospace; font-style: normal; }
.project-core > small { position: absolute; right: 8px; bottom: 5px; color: #4d678f; font: 650 4.5px/1 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .12em; }
.fullcycle-visual:hover .project-core { border-color: var(--cyan); box-shadow: inset 0 0 48px rgba(47,101,222,.22), 0 0 62px rgba(42,97,223,.3); transform: translate(-50%,-50%) translateZ(58px) scale(1.04); }

.core-pulse { position: absolute; top: 50%; left: 50%; z-index: 2; width: 220px; height: 220px; border: 1px solid rgba(93,155,255,.22); border-radius: 50%; opacity: .2; transform: translate(-50%,-50%); }
.pulse-two { width: 270px; height: 270px; border-style: dashed; border-color: rgba(99,224,255,.15); }
.fullcycle-visual:hover .core-pulse { animation: systemPulse 1.8s ease-out infinite; }
.fullcycle-visual:hover .pulse-two { animation-delay: .6s; }

.assembly-caption { position: absolute; right: 24px; bottom: 59px; left: 24px; z-index: 7; display: flex; align-items: center; justify-content: center; gap: 9px; color: #536178; font: 650 5.5px/1 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .09em; }
.assembly-caption i { width: 18px; height: 1px; background: rgba(95,143,224,.25); }
.fullcycle-visual:hover .assembly-caption { color: #7f94b4; }

.service-card { min-height: 355px; }
.service-card.featured { min-height: 405px; }
.service-card .card-top { height: 158px; }
.service-card.featured .card-top { height: 184px; }
.service-icon {
  width: 190px;
  height: 132px;
  border: 0;
  clip-path: none;
  background: transparent;
  color: #75a7ff;
  filter: drop-shadow(0 0 18px rgba(57,116,255,.12));
}
.service-card.featured .service-icon { width: 224px; height: 155px; }
.service-icon svg { width: 100%; height: 100%; overflow: visible; }
.brand-glyph { color: #79aaff; }
.brand-glyph text { fill: currentColor; font-family: InterEW,Inter,Manrope,"Helvetica Neue",Arial,sans-serif; font-size: 27px; font-weight: 820; letter-spacing: -.04em; }
.brand-glyph .glyph-caption { fill: #597398; font: 700 8px/1 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .08em; }
.brand-glyph path, .brand-glyph circle { vector-effect: non-scaling-stroke; }
.orbit-burst circle, .orbit-burst path, .seo-glyph > path, .bx-rays, .support-glyph > path { fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.orbit-burst circle { fill: rgba(69,134,255,.08); }
.direct-mark { fill: currentColor; }
.direct-arrow { fill: none; stroke: var(--cyan); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.telegram-glyph > circle { fill: rgba(58,117,255,.2); stroke: currentColor; stroke-width: 2; }
.telegram-plane { fill: currentColor; }
.seo-word { font-size: 70px !important; font-weight: 850 !important; letter-spacing: -.08em !important; }
.bx-cloud { fill: rgba(57,116,255,.13); stroke: currentColor; stroke-width: 2.2; }
.support-code { stroke: var(--cyan) !important; }
.service-card:hover .service-icon { border: 0; background: transparent; color: var(--cyan); transform: translateY(-4px) scale(1.035); }

@keyframes typePhpOne { from { width: 0; } to { width: 100%; } }
@keyframes typePhpTwo { from { width: 0; } to { width: 100%; } }
@keyframes caretBlink { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }
@keyframes phpMatrixFall { from { transform: translateY(0); } to { transform: translateY(210%); } }
@keyframes drawSystemLine { to { stroke-dashoffset: 0; } }
@keyframes endpointPulse { 0%,100% { opacity: .25; r: 3; } 50% { opacity: 1; r: 5; } }
@keyframes systemPulse { 0% { opacity: .32; transform: translate(-50%,-50%) scale(.68); } 100% { opacity: 0; transform: translate(-50%,-50%) scale(1.32); } }
@keyframes mobileLogoCode { 0%,12%,86%,100% { opacity:0; transform:scaleX(.76); } 20%,78% { opacity:1; transform:scaleX(1); } }
@keyframes mobileLetterBurst { 0%,12%,86%,100% { opacity:1; transform:translate(0) rotate(0); filter:none; } 22%,78% { opacity:.03; transform:translate(var(--burst-x),var(--burst-y)) rotate(var(--burst-r)); filter:blur(2px); } }
@keyframes mobileShardBurst { 0%,12%,86%,100% { opacity:1; transform:translate(0) rotate(0); } 22%,78% { opacity:.05; transform:translate(var(--burst-x),var(--burst-y)) rotate(var(--burst-r)); } }
@keyframes mobileTypeOne { 0%,20% { width:0; } 42%,78% { width:100%; } 86%,100% { width:0; } }
@keyframes mobileTypeTwo { 0%,40% { width:0; } 64%,78% { width:100%; } 86%,100% { width:0; } }

@media (max-width: 1220px) {
  .new-brand, .logo-terminal { width: 248px; min-width: 248px; }
  .heritage-wordmark { width: 174px; }
  .brand-php { width: 244px; font-size: 5.8px; }
  .fullcycle-map { width: min(46vw,600px); }
}

@media (max-width: 930px) {
  .fullcycle-map { width: min(86vw,640px); }
  .service-card .card-top, .service-card.featured .card-top { height: 158px; }
  .service-card.featured .service-icon { width: 190px; height: 132px; }
}

@media (max-width: 640px) {
  .new-brand, .logo-terminal { width: 180px; min-width: 180px; }
  .heritage-symbol { width: 52px; height: 47px; flex-basis: 52px; }
  .heritage-wordmark { width: 128px; gap: 5px; }
  .heritage-wordmark strong { font-size: 13px; }
  .heritage-wordmark b { padding: 4px 7px; font-size: 9px; }
  .brand-php { top: 13px; width: 178px; height: 34px; padding-left: 5px; font-size: 4px; }
  .fullcycle-map { width: 104vw; transform: scale(.94) rotateX(var(--matrix-y)) rotateY(var(--matrix-x)); }
  .flow-node { width: 103px; height: 61px; grid-template-columns: 30px 1fr; padding: 8px 7px; }
  .node-icon { width: 29px; height: 29px; }
  .project-core { width: 155px; height: 134px; }
  .site-preview { height: 88px; padding: 12px; }
  .site-preview strong { font-size: 19px; }
  .assembly-caption { right: 8px; left: 8px; gap: 5px; }
  .assembly-caption i { width: 9px; }
  .service-card, .service-card.featured { min-height: 340px; }
  .service-card .card-top, .service-card.featured .card-top { height: 145px; }
  .service-icon, .service-card.featured .service-icon { width: 175px; height: 122px; }
}

@media (hover: none) {
  .brand-php { animation: mobileLogoCode 5.4s cubic-bezier(.16,1,.3,1) .8s 1 both; }
  .php-line-1 { animation: mobileTypeOne 5.4s steps(38,end) .8s 1 both; }
  .php-line-2 { animation: mobileTypeTwo 5.4s steps(39,end) .8s 1 both; }
  .heritage-wordmark i { --burst-x: 34px; --burst-y: -35px; --burst-r: 22deg; animation: mobileLetterBurst 5.4s cubic-bezier(.16,1,.3,1) .8s 1 both; }
  .heritage-wordmark i:nth-child(2n) { --burst-x: -30px; --burst-y: 40px; --burst-r: -18deg; }
  .heritage-wordmark i:nth-child(3n) { --burst-x: 52px; --burst-y: 32px; --burst-r: 28deg; }
  .heritage-shard { --burst-x: -38px; --burst-y: -32px; --burst-r: -25deg; animation: mobileShardBurst 5.4s cubic-bezier(.16,1,.3,1) .8s 1 both; }
  .heritage-b { --burst-x: -26px; --burst-y: 38px; --burst-r: 32deg; }
  .heritage-c { --burst-x: 25px; --burst-y: 42px; --burst-r: -24deg; }
  .heritage-d { --burst-x: 47px; --burst-y: -32px; --burst-r: 30deg; }
  .php-matrix span { animation-play-state: running; animation-iteration-count: 1; }
  .system-links path { animation: drawSystemLine 1.15s cubic-bezier(.16,1,.3,1) .5s forwards; }
  .flow-node { animation: endpointPulse 1.4s ease-in-out 1.3s 2; }
  .core-pulse { animation: systemPulse 1.8s ease-out 1.2s 2; }
}

@media (prefers-reduced-motion: reduce) {
  .new-brand:hover .heritage-shard, .new-brand:hover .heritage-eye, .new-brand:hover .heritage-wordmark i { transform: none !important; opacity: 1 !important; filter: none !important; }
  .new-brand:hover .brand-php, .brand-php, .php-matrix span, .system-links path, .flow-node, .core-pulse { animation: none !important; }
}

/* V5 — code-X wordmark, permanent PHP rain and image-led cases */
.new-brand,
.code-x-logo {
  width: 274px;
  min-width: 274px;
  height: 58px;
}

.new-brand { overflow: visible; }
.code-x-logo {
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
  isolation: isolate;
}

.wordmark-main {
  position: relative;
  z-index: 4;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  color: #f5f8ff;
  white-space: nowrap;
}

.brand-part {
  display: block;
  font-family: Inter, Manrope, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 760;
  letter-spacing: -.065em;
  transition: transform .65s cubic-bezier(.16,1,.3,1), opacity .22s ease, filter .22s ease;
}

.brand-e { margin-right: -2px; font-size: 24px; font-weight: 520; }
.brand-treme { margin-left: -2px; font-size: 24px; }
.brand-web {
  margin-left: 12px;
  padding: 6px 10px 6px 11px;
  border-left: 1px solid rgba(102,225,255,.52);
  background: linear-gradient(90deg,rgba(50,112,255,.12),transparent);
  color: #82aaff;
  font-size: 20px;
  letter-spacing: -.055em;
}

.code-x {
  position: relative;
  display: grid;
  width: 35px;
  height: 42px;
  flex: 0 0 35px;
  place-items: center;
  margin: 0 1px;
  filter: drop-shadow(0 0 12px rgba(65,142,255,.28));
}

.code-x b {
  position: relative;
  z-index: 2;
  color: #66e5ff;
  font: 850 31px/.9 Inter,Manrope,sans-serif;
  letter-spacing: -.1em;
  transform: skewX(-8deg);
  transition: transform .58s cubic-bezier(.16,1,.3,1), opacity .2s ease;
}

.code-x i {
  position: absolute;
  z-index: 3;
  top: 50%;
  color: #77a9ff;
  font: 800 10px/1 ui-monospace,SFMono-Regular,Menlo,monospace;
  font-style: normal;
  opacity: .5;
  transition: transform .58s cubic-bezier(.16,1,.3,1), opacity .2s ease, font-size .58s cubic-bezier(.16,1,.3,1);
}

.code-x i:first-child { left: 2px; transform: translateY(-50%) rotate(5deg); }
.code-x i:last-child { right: -1px; transform: translateY(-50%) rotate(-5deg); }

.logo-code-reveal {
  position: absolute;
  top: 10px;
  left: 3px;
  z-index: 2;
  display: grid;
  width: 268px;
  height: 40px;
  align-content: center;
  gap: 4px;
  overflow: hidden;
  border-left: 1px solid rgba(100,230,255,.62);
  padding-left: 12px;
  background: linear-gradient(90deg,rgba(5,11,20,.98),rgba(8,17,31,.94) 82%,transparent);
  color: #91a6c6;
  font: 650 7px/1.15 ui-monospace,SFMono-Regular,Menlo,monospace;
  opacity: 0;
  transform: scaleX(.72);
  transform-origin: center;
  transition: opacity .15s ease, transform .36s cubic-bezier(.16,1,.3,1);
}

.logo-code-reveal code { display: block; width: 0; overflow: hidden; white-space: nowrap; }
.logo-code-reveal em { color: var(--cyan); font-style: normal; }
.new-brand:hover .brand-e { transform: translate(-34px,-21px) rotate(-12deg); opacity: .07; filter: blur(1.5px); }
.new-brand:hover .brand-treme { transform: translate(51px,-23px) rotate(8deg); opacity: .06; filter: blur(1.5px); }
.new-brand:hover .brand-web { transform: translate(38px,25px) rotate(-7deg); opacity: .05; filter: blur(1.5px); }
.new-brand:hover .code-x { z-index: 6; }
.new-brand:hover .code-x b { transform: skewX(-8deg) scale(1.7) rotate(13deg); opacity: 0; }
.new-brand:hover .code-x i { color: var(--cyan); font-size: 21px; opacity: 1; text-shadow: 0 0 14px rgba(99,230,255,.65); }
.new-brand:hover .code-x i:first-child { transform: translate(74px,-50%) rotate(0); }
.new-brand:hover .code-x i:last-child { transform: translate(77px,-50%) rotate(0); }
.new-brand:hover .logo-code-reveal { opacity: 1; transform: scaleX(1); transition-delay: .12s; }
.new-brand:hover .logo-code-reveal .php-line-1 { animation: typePhpOne .58s steps(30,end) .24s forwards; }
.new-brand:hover .logo-code-reveal .php-line-2 { animation: typePhpTwo .66s steps(36,end) .82s forwards; }

.php-matrix { opacity: .88; }
.php-matrix::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,transparent,rgba(34,112,255,.08) 49%,transparent 52%);
  mix-blend-mode: screen;
  animation: rainScan 4.8s linear infinite;
}

.php-matrix span {
  top: -62%;
  width: 116px;
  color: #55c9ff;
  font-size: 6px;
  line-height: 1.72;
  opacity: .25;
  animation-duration: 6.7s;
  animation-play-state: running;
}

.php-matrix span:nth-child(1) { left: 1%; animation-duration: 6.1s; }
.php-matrix span:nth-child(2) { left: 13%; animation-delay: -2.8s; animation-duration: 7.3s; }
.php-matrix span:nth-child(3) { left: 25%; animation-delay: -5.2s; animation-duration: 6.5s; }
.php-matrix span:nth-child(4) { left: 37%; animation-delay: -1.3s; animation-duration: 7.7s; }
.php-matrix span:nth-child(5) { left: 49%; animation-delay: -4.5s; animation-duration: 6.8s; }
.php-matrix span:nth-child(6) { left: 61%; animation-delay: -3.2s; animation-duration: 7.5s; }
.php-matrix span:nth-child(7) { left: 73%; animation-delay: -5.8s; animation-duration: 6.3s; }
.php-matrix span:nth-child(8) { left: 84%; animation-delay: -1.9s; animation-duration: 7.1s; }
.php-matrix span:nth-child(9) { left: 93%; animation-delay: -4.1s; animation-duration: 6.6s; }
.fullcycle-visual:hover .php-matrix span { opacity: .4; animation-duration: 3.5s; text-shadow: 0 0 15px rgba(75,203,255,.48); }

.fullcycle-map { width: min(48vw,700px); }
.project-core {
  width: 286px;
  height: 232px;
  border-color: rgba(111,176,255,.6);
  box-shadow: inset 0 0 48px rgba(47,101,222,.18), 0 0 56px rgba(42,97,223,.18);
}
.browser-bar { height: 28px; }
.site-preview.modern-prototype {
  display: block;
  height: 198px;
  padding: 13px 15px;
  background: radial-gradient(circle at 85% 5%,rgba(65,140,255,.35),transparent 42%),linear-gradient(145deg,#091428,#050912 64%);
}
.prototype-nav { display: flex; height: 18px; align-items: center; gap: 12px; border-bottom: 1px solid rgba(116,156,224,.16); }
.prototype-nav b { color: var(--cyan); font: 850 9px/1 Inter,sans-serif; letter-spacing: -.08em; }
.prototype-nav span { width: 28px; height: 2px; margin: 0; background: #283b5d; }
.prototype-nav span:nth-of-type(2) { width: 20px; }
.prototype-nav em { margin-left: auto; padding: 4px 6px; border: 1px solid rgba(101,174,255,.4); border-radius: 20px; color: #9ec1ff; font: 700 4px/1 ui-monospace,monospace; font-style: normal; }
.modern-prototype > small { display: block; margin: 16px 0 5px; color: #6d83a8; font: 650 4.5px/1 ui-monospace,monospace; letter-spacing: .16em; }
.modern-prototype > strong { display: block; color: white; font: 730 24px/.88 Inter,sans-serif; letter-spacing: -.075em; }
.modern-prototype > strong i { color: #72a7ff; font-style: normal; }
.modern-prototype > p { margin: 7px 0 0; color: #71819c; font: 600 5px/1.4 ui-monospace,monospace; }
.prototype-cards { position: absolute; right: 15px; bottom: 17px; left: 15px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4px; }
.prototype-cards i { height: 26px; border: 1px solid rgba(89,140,226,.2); background: linear-gradient(145deg,rgba(44,87,172,.2),rgba(10,20,37,.2)); }
.prototype-cards i:first-child { border-color: rgba(96,224,255,.28); }
.prototype-cta { position: absolute; right: 17px; top: 78px; padding: 6px 8px; border-radius: 20px; background: #346ee9; color: white; font: 750 4.5px/1 ui-monospace,monospace; }
.project-core > small { z-index: 3; }
.core-pulse { width: 310px; height: 310px; }
.pulse-two { width: 370px; height: 370px; }
.flow-node { width: 112px; height: 66px; }
.flow-server { top: 4%; left: 1%; }
.flow-php { top: 44%; left: -1%; }
.flow-bitrix { bottom: 4%; left: 7%; }
.flow-traffic { top: 4%; right: 1%; }
.flow-crm { top: 44%; right: -1%; }
.flow-bot { right: 7%; bottom: 4%; }

.case-heading { align-items: end; }
.case-heading p { max-width: 510px; }
.case-grid {
  display: grid;
  grid-template-columns: repeat(12,minmax(0,1fr));
  gap: 14px;
}
.primary-cases .case-card { grid-column: span 3; }
.primary-cases .case-card.case-featured { grid-column: span 6; }
.primary-cases .case-card:nth-child(n+4) { grid-column: span 4; }
.case-card {
  position: relative;
  display: grid;
  min-height: 548px;
  grid-template-rows: 268px 1fr;
  overflow: hidden;
  border: 1px solid rgba(112,142,192,.22);
  background: linear-gradient(145deg,rgba(13,22,37,.86),rgba(5,9,16,.92));
  color: inherit;
  text-decoration: none;
  transition: border-color .34s ease, transform .45s cubic-bezier(.16,1,.3,1), box-shadow .34s ease;
}
.case-card::after { content: ""; position: absolute; right: 0; bottom: 0; width: 76px; height: 1px; background: linear-gradient(90deg,transparent,var(--cyan)); opacity: .35; transition: width .35s ease, opacity .35s ease; }
.case-card:hover { z-index: 2; border-color: rgba(101,174,255,.56); box-shadow: 0 28px 80px rgba(0,0,0,.28),inset 0 0 40px rgba(46,103,223,.05); transform: translateY(-7px); }
.case-card:hover::after { width: 58%; opacity: .85; }
.case-featured { grid-template-rows: 296px 1fr; }
.case-visual { position: relative; overflow: hidden; border-bottom: 1px solid rgba(105,145,211,.18); background: radial-gradient(circle at 75% 25%,rgba(42,102,234,.3),transparent 48%),#070d17; }
.case-visual::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(145deg,rgba(1,9,21,.1),rgba(17,70,173,.32)),linear-gradient(0deg,rgba(3,8,15,.68),transparent 62%); mix-blend-mode: color; pointer-events: none; }
.case-visual::after { content: ""; position: absolute; inset: 0; z-index: 3; background: linear-gradient(90deg,transparent 49%,rgba(108,184,255,.05) 50%,transparent 51%); background-size: 6px 100%; opacity: .36; pointer-events: none; }
.case-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: grayscale(.78) saturate(.75) brightness(.62) contrast(1.08) hue-rotate(172deg); transform: scale(1.015); transition: filter .55s ease, transform .85s cubic-bezier(.16,1,.3,1); }
.case-card:hover .case-visual img { filter: grayscale(.16) saturate(.9) brightness(.7) contrast(1.04) hue-rotate(182deg); transform: scale(1.055); }
.case-number,.case-live { position: absolute; z-index: 4; top: 17px; font: 700 7px/1 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .1em; }
.case-number { right: 17px; color: #7d92b3; }
.case-live { left: 17px; display: flex; align-items: center; gap: 7px; padding: 7px 9px; border: 1px solid rgba(112,160,233,.28); background: rgba(5,13,24,.72); color: #92abd0; backdrop-filter: blur(10px); }
.case-live i { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.case-body { display: grid; align-content: start; gap: 21px; padding: 27px 25px 24px; }
.case-title { display: flex; align-items: start; justify-content: space-between; gap: 18px; }
.case-title small { display: block; margin-bottom: 8px; color: #6f85a7; font: 680 8px/1 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .09em; text-transform: uppercase; }
.case-title h3 { color: #f2f5fb; font-size: clamp(24px,2vw,34px); font-weight: 620; line-height: 1; letter-spacing: -.055em; }
.case-title > i { display: grid; width: 36px; height: 36px; flex: 0 0 36px; place-items: center; border: 1px solid rgba(109,151,222,.27); border-radius: 50%; color: #85aff4; font-style: normal; transition: background .25s ease, color .25s ease, transform .35s ease; }
.case-card:hover .case-title > i { background: #3977f1; color: white; transform: rotate(45deg); }
.case-body > p { max-width: 560px; color: #8897b0; font-size: 13px; line-height: 1.6; }
.case-meta { display: flex; align-items: end; justify-content: space-between; gap: 15px; margin-top: auto; padding-top: 15px; border-top: 1px solid rgba(104,133,181,.16); }
.case-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.case-tags span { padding: 6px 8px; border: 1px solid rgba(107,146,210,.2); color: #7186a8; font: 650 6.5px/1 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .05em; text-transform: uppercase; }
.case-time { display: grid; flex: 0 0 auto; gap: 5px; text-align: right; }
.case-time small { color: #566984; font: 650 6px/1 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .08em; }
.case-time strong { color: #dce7f8; font-size: 13px; font-weight: 650; }
.extra-cases { max-height: 0; margin-top: 0; overflow: hidden; opacity: 0; transform: translateY(-18px); transition: max-height .9s cubic-bezier(.16,1,.3,1),opacity .38s ease,transform .65s cubic-bezier(.16,1,.3,1),margin-top .5s ease; }
.extra-cases .case-card { grid-column: span 4; }
.extra-cases.is-open { max-height: 1200px; margin-top: 14px; overflow: visible; opacity: 1; transform: translateY(0); }
.more-cases-button { --magnet-x: 0px; --magnet-y: 0px; display: flex; width: min(100%,520px); height: 74px; align-items: center; justify-content: space-between; margin: 38px auto 0; border: 1px solid rgba(99,158,255,.46); padding: 8px 8px 8px 27px; background: linear-gradient(90deg,rgba(28,65,136,.28),rgba(10,20,36,.62)); color: #f5f8ff; font: 680 13px/1 Inter,sans-serif; transform: translate(var(--magnet-x),var(--magnet-y)); transition: border-color .25s ease,background .25s ease,transform .18s ease-out; cursor: pointer; }
.more-cases-button i { display: grid; width: 56px; height: 56px; place-items: center; border-radius: 50%; background: #3978f3; color: white; font-size: 22px; font-style: normal; box-shadow: 0 0 28px rgba(54,119,244,.25); }
.more-cases-button:hover { border-color: var(--cyan); background: linear-gradient(90deg,rgba(36,91,205,.36),rgba(10,20,36,.72)); }

@keyframes rainScan { from { transform: translateX(-55%); } to { transform: translateX(55%); } }
@keyframes mobileCodeXWord { 0%,12%,84%,100% { opacity:1; transform:translate(0) rotate(0); filter:none; } 22%,75% { opacity:.06; transform:translate(var(--mx),var(--my)) rotate(var(--mr)); filter:blur(1.5px); } }
@keyframes mobileCodeReveal { 0%,14%,84%,100% { opacity:0; transform:scaleX(.72); } 24%,75% { opacity:1; transform:scaleX(1); } }
@keyframes mobileCodeOperatorLeft { 0%,14%,84%,100% { opacity:.5; font-size:10px; transform:translateY(-50%) rotate(5deg); } 24%,75% { opacity:1; font-size:21px; transform:translate(74px,-50%) rotate(0); } }
@keyframes mobileCodeOperatorRight { 0%,14%,84%,100% { opacity:.5; font-size:10px; transform:translateY(-50%) rotate(-5deg); } 24%,75% { opacity:1; font-size:21px; transform:translate(77px,-50%) rotate(0); } }

@media (max-width: 1220px) {
  .new-brand,.code-x-logo { width: 236px; min-width: 236px; }
  .brand-e,.brand-treme { font-size: 21px; }
  .brand-web { margin-left: 8px; padding-right: 5px; font-size: 17px; }
  .logo-code-reveal { width: 232px; font-size: 6px; }
  .fullcycle-map { width: min(49vw,650px); }
  .project-core { width: 250px; height: 212px; }
  .site-preview.modern-prototype { height: 178px; }
  .modern-prototype > strong { font-size: 21px; }
}

@media (max-width: 1040px) {
  .primary-cases .case-card,.primary-cases .case-card:nth-child(n+4) { grid-column: span 6; }
  .primary-cases .case-card.case-featured { grid-column: span 12; }
  .extra-cases .case-card { grid-column: span 6; }
}

@media (max-width: 930px) {
  .fullcycle-map { width: min(92vw,680px); }
  .case-heading { align-items: start; }
}

@media (max-width: 640px) {
  .new-brand,.code-x-logo { width: 185px; min-width: 185px; height: 54px; }
  .brand-e,.brand-treme { font-size: 17px; }
  .code-x { width: 27px; height: 36px; flex-basis: 27px; }
  .code-x b { font-size: 25px; }
  .code-x i { font-size: 7px; }
  .brand-web { margin-left: 5px; padding: 5px 0 5px 7px; font-size: 14px; }
  .logo-code-reveal { top: 9px; left: 1px; width: 182px; height: 36px; padding-left: 7px; font-size: 4.6px; }
  .fullcycle-map { width: 111vw; }
  .project-core { width: 196px; height: 168px; }
  .site-preview.modern-prototype { height: 139px; padding: 9px 10px; }
  .modern-prototype > small { margin: 10px 0 4px; }
  .modern-prototype > strong { font-size: 16px; }
  .prototype-cards { right: 10px; bottom: 11px; left: 10px; }
  .prototype-cards i { height: 18px; }
  .prototype-cta { top: 61px; right: 11px; }
  .core-pulse { width: 230px; height: 230px; }
  .pulse-two { width: 280px; height: 280px; }
  .flow-node { width: 96px; height: 58px; }
  .php-matrix span { width: 82px; font-size: 4.5px; opacity: .2; }
  .primary-cases .case-card,.primary-cases .case-card:nth-child(n+4),.primary-cases .case-card.case-featured,.extra-cases .case-card { grid-column: span 12; }
  .case-card,.case-featured { min-height: 510px; grid-template-rows: 245px 1fr; }
  .case-body { padding: 23px 19px 20px; }
  .case-title h3 { font-size: 28px; }
  .case-meta { align-items: start; }
  .extra-cases.is-open { max-height: 1900px; }
  .more-cases-button { height: 68px; padding-left: 20px; }
  .more-cases-button i { width: 50px; height: 50px; }
}

@media (hover: none) {
  .brand-e { --mx:-22px; --my:-15px; --mr:-10deg; animation: mobileCodeXWord 5.2s cubic-bezier(.16,1,.3,1) 1s 1 both; }
  .brand-treme { --mx:35px; --my:-18px; --mr:8deg; animation: mobileCodeXWord 5.2s cubic-bezier(.16,1,.3,1) 1s 1 both; }
  .brand-web { --mx:25px; --my:20px; --mr:-6deg; animation: mobileCodeXWord 5.2s cubic-bezier(.16,1,.3,1) 1s 1 both; }
  .logo-code-reveal { animation: mobileCodeReveal 5.2s cubic-bezier(.16,1,.3,1) 1s 1 both; }
  .logo-code-reveal .php-line-1 { animation: mobileTypeOne 5.2s steps(32,end) 1s 1 both; }
  .logo-code-reveal .php-line-2 { animation: mobileTypeTwo 5.2s steps(36,end) 1s 1 both; }
  .code-x i:first-child { animation: mobileCodeOperatorLeft 5.2s cubic-bezier(.16,1,.3,1) 1s 1 both; }
  .code-x i:last-child { animation: mobileCodeOperatorRight 5.2s cubic-bezier(.16,1,.3,1) 1s 1 both; }
  .php-matrix span { animation-iteration-count: infinite; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-part,.code-x i,.logo-code-reveal,.logo-code-reveal .php-line-1,.logo-code-reveal .php-line-2 { animation: none !important; transform: none !important; }
  .new-brand:hover .brand-part { opacity: 1 !important; filter: none !important; }
  .new-brand:hover .logo-code-reveal { opacity: 0 !important; }
  .case-card,.case-visual img,.extra-cases { transition: none !important; }
}

/* V6 — real matrix canvas, advantages, founder, credentials and review carousel */
.topbar-inner { grid-template-columns: auto 1fr auto; column-gap: clamp(20px,2.5vw,48px); }
.nav { justify-self: center; }
.header-contacts { gap: 7px; }
.phone-upgraded {
  display: inline-flex;
  height: 42px;
  align-items: center;
  gap: 9px;
  margin-right: 4px;
  color: #eef4ff;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -.025em;
}
.phone-upgraded svg { width: 23px; height: 23px; overflow: visible; fill: none; stroke: #6ba7ff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 9px rgba(87,168,255,.38)); }
.header-messenger {
  display: inline-flex;
  height: 40px;
  align-items: center;
  gap: 8px;
  padding: 0 13px 0 9px;
  border: 1px solid rgba(93,148,255,.34);
  border-radius: 100px;
  background: linear-gradient(110deg,rgba(45,96,223,.17),rgba(8,13,23,.76));
  color: #c5d2e7;
  font-size: 10px;
  font-weight: 650;
  transition: border-color .25s ease,background .25s ease,box-shadow .25s ease,transform .25s ease;
}
.header-messenger svg { width: 25px; height: 25px; fill: rgba(73,131,255,.17); stroke: #75a9ff; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.header-messenger:hover { border-color: var(--cyan); background: rgba(48,105,233,.19); box-shadow: 0 0 28px rgba(57,116,255,.13); transform: translateY(-2px); }
.header-messenger.is-pending { cursor: default; opacity: .78; }
.header-project { height: 42px; padding-right: 18px; padding-left: 18px; }

.fullcycle-visual {
  min-height: 720px;
  background: #03070f;
}
.fullcycle-visual::before { z-index: 2; opacity: .68; }
.matrix-rain-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
  filter: saturate(1.15) contrast(1.08);
  transition: opacity .25s ease,filter .25s ease;
}
.fullcycle-visual[data-matrix-active="true"] .matrix-rain-canvas { opacity: 1; filter: saturate(1.35) contrast(1.18) brightness(1.14); }
.fullcycle-visual .project-core { width: 324px; height: 252px; }
.fullcycle-visual .site-preview.modern-prototype { height: 218px; }
.fullcycle-visual .modern-prototype > strong { font-size: 26px; }
.fullcycle-map { z-index: 5; filter: drop-shadow(0 30px 48px rgba(0,0,0,.3)); }
.fullcycle-visual .visual-status,.fullcycle-visual .matrix-hint,.fullcycle-visual .matrix-progress,.fullcycle-visual .assembly-caption { z-index: 10; }
.fullcycle-visual .project-core { background: rgba(3,8,17,.91); backdrop-filter: blur(7px); }
.fullcycle-visual .flow-node { background: linear-gradient(145deg,rgba(8,20,38,.92),rgba(3,8,16,.84)); backdrop-filter: blur(6px); }
.fullcycle-visual[data-matrix-active="true"] .project-core { border-color: #69e5ff; box-shadow: inset 0 0 52px rgba(47,101,222,.26),0 0 78px rgba(42,97,223,.42); }

.advantages-section {
  position: relative;
  z-index: 2;
  width: min(100% - 56px,1480px);
  margin: 0 auto;
  padding: 142px 0;
  border-bottom: 1px solid var(--line);
}
.advantages-heading { align-items: end; }
.advantages-panel { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid rgba(108,144,202,.22); border-left: 1px solid rgba(108,144,202,.22); background: rgba(5,10,18,.64); }
.advantage-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-right: 1px solid rgba(108,144,202,.22);
  border-bottom: 1px solid rgba(108,144,202,.22);
  padding: 26px 28px 31px;
  background: radial-gradient(circle at 84% 12%,rgba(54,112,232,.08),transparent 38%);
  transition: background .36s ease,transform .4s cubic-bezier(.16,1,.3,1),box-shadow .36s ease;
}
.advantage-card:hover { z-index: 2; background: radial-gradient(circle at 82% 14%,rgba(60,138,255,.24),transparent 45%),linear-gradient(145deg,rgba(18,37,70,.9),rgba(5,10,18,.92)); box-shadow: 0 25px 65px rgba(0,0,0,.25); transform: translateY(-5px); }
.advantage-top { display: flex; height: 104px; align-items: flex-start; justify-content: space-between; }
.advantage-top > span { color: #52657f; font: 700 7px/1 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .13em; }
.advantage-icon { display: grid; width: 78px; height: 78px; place-items: center; border: 1px solid rgba(105,159,255,.25); background: linear-gradient(145deg,rgba(45,95,210,.17),rgba(4,9,17,.2)); color: #76a9ff; clip-path: polygon(12% 0,100% 0,88% 100%,0 100%); transition: color .28s ease,border-color .28s ease,transform .4s cubic-bezier(.16,1,.3,1),background .28s ease; }
.advantage-icon svg { width: 47px; height: 47px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.advantage-card:hover .advantage-icon { border-color: rgba(102,229,255,.65); background: rgba(50,113,240,.21); color: var(--cyan); transform: translate(-5px,5px) scale(1.08); }
.advantage-card > strong { display: block; margin: 13px 0 15px; color: #699dff; font: 750 8px/1 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .12em; }
.advantage-card h3 { max-width: 330px; margin-bottom: 15px; color: #eef3fb; font-size: clamp(22px,2vw,31px); font-weight: 600; line-height: 1.05; letter-spacing: -.045em; }
.advantage-card p { max-width: 360px; margin: 0; color: #7f8ea7; font-size: 12px; line-height: 1.7; }
.advantage-line { position: absolute; right: 28px; bottom: 0; left: 28px; height: 1px; background: linear-gradient(90deg,var(--cyan),var(--blue),transparent); opacity: 0; transform: scaleX(.2); transform-origin: left; transition: opacity .28s ease,transform .45s cubic-bezier(.16,1,.3,1); }
.advantage-card:hover .advantage-line { opacity: .85; transform: scaleX(1); }

.more-cases-button { border-radius: 100px; background: linear-gradient(110deg,rgba(45,96,223,.24),rgba(8,13,23,.78)); }

.founder-layout {
  grid-template-columns: minmax(340px,1.05fr) 330px minmax(330px,.9fr);
  gap: clamp(35px,5vw,78px);
  align-items: center;
}
.founder-layout > div { align-self: center; }
.founder-portrait { position: relative; width: 310px; height: 310px; justify-self: center; isolation: isolate; }
.portrait-frame { position: absolute; inset: 20px; z-index: 3; overflow: hidden; border: 1px solid rgba(103,176,255,.62); border-radius: 50%; background: #07101d; box-shadow: inset 0 0 45px rgba(53,116,247,.17),0 0 60px rgba(41,97,228,.15); }
.portrait-frame::after { position: absolute; inset: 0; content: ""; border-radius: inherit; background: linear-gradient(145deg,rgba(64,133,255,.18),transparent 38%,rgba(2,8,16,.28)); mix-blend-mode: color; pointer-events: none; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 42%; filter: grayscale(.82) saturate(.75) brightness(.72) contrast(1.12) sepia(.08) hue-rotate(170deg); transform: scale(1.04); transition: filter .55s ease,transform .8s cubic-bezier(.16,1,.3,1); }
.portrait-grid { position: absolute; inset: 0; z-index: 2; border-radius: inherit; background-image: linear-gradient(rgba(98,196,255,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(98,196,255,.1) 1px,transparent 1px); background-size: 22px 22px; opacity: .34; mix-blend-mode: screen; transition: opacity .3s ease; }
.portrait-scan { position: absolute; right: 0; left: 0; top: -8%; z-index: 4; height: 2px; background: linear-gradient(90deg,transparent,var(--cyan),white,var(--cyan),transparent); box-shadow: 0 0 17px 3px rgba(94,225,255,.5); opacity: 0; }
.portrait-orbit { position: absolute; z-index: 1; border: 1px solid rgba(99,160,255,.27); border-radius: 50%; }
.orbit-a { inset: 4px; border-style: dashed; }
.orbit-b { inset: -12px; border-color: rgba(101,229,255,.14); clip-path: polygon(0 0,68% 0,68% 100%,0 100%); }
.portrait-data { position: absolute; z-index: 5; padding: 7px 9px; border: 1px solid rgba(102,165,255,.28); background: rgba(4,10,19,.82); color: #7f9dc8; font: 700 6px/1 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .12em; backdrop-filter: blur(8px); transition: color .25s ease,border-color .25s ease,transform .4s cubic-bezier(.16,1,.3,1); }
.data-top { top: 28px; right: -6px; }
.data-bottom { left: -2px; bottom: 31px; }
.founder-portrait:hover .portrait-frame img { filter: grayscale(0) saturate(.88) brightness(.86) contrast(1.05); transform: scale(1.09); }
.founder-portrait:hover .portrait-grid { opacity: .6; }
.founder-portrait:hover .portrait-scan { animation: portraitScan 1.35s cubic-bezier(.16,1,.3,1) infinite; opacity: 1; }
.founder-portrait:hover .orbit-a { animation: portraitOrbit 8s linear infinite; }
.founder-portrait:hover .orbit-b { animation: portraitOrbit 13s linear infinite reverse; }
.founder-portrait:hover .portrait-data { border-color: rgba(99,229,255,.58); color: var(--cyan); }
.founder-portrait:hover .data-top { transform: translate(7px,-5px); }
.founder-portrait:hover .data-bottom { transform: translate(-7px,5px); }
.founder-copy { max-width: 500px; }

.credentials-section {
  position: relative;
  z-index: 3;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0,.85fr) minmax(560px,1.15fr);
  gap: clamp(55px,7vw,110px);
  overflow: hidden;
  padding: 128px max(28px,calc((100vw - 1480px)/2));
  border-top: 1px solid rgba(123,198,255,.45);
  border-bottom: 1px solid rgba(123,198,255,.38);
  background: linear-gradient(118deg,#0b3d9c 0%,#155ed5 42%,#09368f 100%);
  box-shadow: inset 0 0 120px rgba(3,13,36,.36);
}
.credentials-section::before { position: absolute; inset: 0; content: ""; background-image: linear-gradient(rgba(170,218,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(170,218,255,.08) 1px,transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(90deg,black,transparent 76%); pointer-events: none; }
.credentials-aura { position: absolute; top: -35%; right: 15%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle,rgba(104,230,255,.24),transparent 66%); filter: blur(30px); }
.credentials-copy,.certificate-gallery { position: relative; z-index: 2; }
.credentials-copy .section-index { color: rgba(222,242,255,.72); }
.credential-kicker { margin: 56px 0 16px; color: #9eeaff; font: 750 8px/1 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .14em; }
.credentials-copy h2 { max-width: 670px; margin-bottom: 27px; color: white; font-size: clamp(46px,5vw,78px); font-weight: 540; line-height: .96; letter-spacing: -.06em; }
.credentials-copy > p:not(.credential-kicker) { max-width: 580px; color: rgba(229,239,255,.74); font-size: 14px; line-height: 1.72; }
.credential-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 48px; border: 1px solid rgba(202,229,255,.18); background: rgba(202,229,255,.16); }
.credential-stats div { display: grid; gap: 7px; padding: 17px 14px; background: rgba(6,35,91,.45); }
.credential-stats strong { color: white; font-size: 11px; font-weight: 700; }
.credential-stats span { color: rgba(214,233,255,.62); font: 650 6px/1.35 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .06em; text-transform: uppercase; }
.certificate-gallery { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; align-self: center; }
.certificate-card { position: relative; display: grid; min-height: 235px; grid-template-rows: 160px 1fr; overflow: hidden; border: 1px solid rgba(211,235,255,.27); background: rgba(3,18,50,.64); color: white; text-decoration: none; backdrop-filter: blur(14px); transition: transform .45s cubic-bezier(.16,1,.3,1),border-color .25s ease,background .25s ease,box-shadow .3s ease; }
.certificate-card.certificate-main { min-height: 285px; grid-column: 1 / -1; grid-template-columns: 1.2fr .8fr; grid-template-rows: 1fr; }
.certificate-card > img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: grayscale(.58) saturate(.58) brightness(.66) contrast(1.08) hue-rotate(170deg); opacity: .8; transition: filter .55s ease,opacity .35s ease,transform .75s cubic-bezier(.16,1,.3,1); }
.certificate-main > img { min-height: 285px; }
.certificate-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg,rgba(3,18,50,.83),transparent 58%); pointer-events: none; }
.certificate-main::after { background: linear-gradient(90deg,transparent 32%,rgba(3,18,50,.92) 67%); }
.certificate-card > span { position: relative; z-index: 2; display: grid; align-content: center; gap: 7px; padding: 18px; }
.certificate-card:not(.certificate-main) > span { position: absolute; right: 0; bottom: 0; left: 0; }
.certificate-card b { font-size: 14px; font-weight: 650; }
.certificate-card small { color: rgba(217,235,255,.61); font: 600 6.5px/1.4 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .05em; text-transform: uppercase; }
.certificate-card > i { position: absolute; top: 14px; right: 14px; z-index: 4; display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(218,241,255,.35); border-radius: 50%; background: rgba(4,27,73,.63); color: #dff5ff; font-style: normal; transition: transform .35s ease,background .25s ease; }
.certificate-card:hover { border-color: rgba(210,248,255,.75); background: rgba(5,30,82,.82); box-shadow: 0 30px 70px rgba(2,18,52,.32); transform: translateY(-7px); }
.certificate-card:hover > img { filter: grayscale(0) saturate(.86) brightness(.78) contrast(1.02); opacity: .95; transform: scale(1.04); }
.certificate-card:hover > i { background: #65dff8; color: #073174; transform: rotate(45deg); }

.review-heading { grid-template-columns: .85fr 2fr .85fr !important; }
.platform-total { display: flex; align-items: center; justify-self: end; gap: 14px; margin-bottom: 4px; }
.platform-total-icon { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(104,161,255,.34); background: rgba(49,101,219,.11); }
.platform-total-icon svg { width: 29px; height: 29px; fill: rgba(92,154,255,.2); stroke: #79aaff; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.platform-total > span { display: grid; gap: 7px; }
.platform-total small { color: #566783; font: 650 6px/1 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .08em; }
.platform-total strong { color: #f2f6fc; font-size: 21px; }
.platform-total strong i { margin-left: 4px; color: #6fa3ff; font-size: 9px; font-style: normal; letter-spacing: .05em; }
.review-tabs { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 9px; margin-bottom: 18px; }
.review-tabs button {
  position: relative;
  display: flex;
  height: 64px;
  align-items: center;
  gap: 11px;
  overflow: hidden;
  border: 1px solid rgba(98,146,225,.24);
  border-radius: 100px;
  padding: 6px 18px 6px 9px;
  background: linear-gradient(110deg,rgba(30,61,121,.18),rgba(7,12,21,.72));
  color: #7787a2;
  cursor: pointer;
  transition: color .25s ease,border-color .25s ease,background .25s ease,box-shadow .25s ease,transform .25s ease;
}
.review-tabs button svg { width: 44px; height: 44px; flex: 0 0 44px; padding: 8px; border-radius: 50%; background: rgba(53,100,202,.13); fill: rgba(91,143,255,.16); stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.review-tabs button span { font-size: 11px; font-weight: 650; }
.review-tabs button > i { margin-left: auto; color: var(--cyan); font-size: 6px; font-style: normal; }
.review-tabs button:hover { color: #c5d9ff; border-color: rgba(102,175,255,.46); transform: translateY(-2px); }
.review-tabs button.is-active { border-color: rgba(101,218,255,.7); background: linear-gradient(110deg,rgba(44,104,235,.38),rgba(8,18,34,.88)); color: white; box-shadow: inset 0 0 30px rgba(48,111,240,.12),0 0 34px rgba(43,104,238,.12); }
.review-tabs button.is-active svg { background: #3978f3; color: white; fill: rgba(255,255,255,.12); box-shadow: 0 0 25px rgba(57,120,243,.32); }
.review-carousel { overflow: hidden; }
.review-track { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 11px; opacity: 1; transform: translateX(0); }
.testimonial-card { display: flex; min-height: 390px; flex-direction: column; border: 1px solid rgba(105,140,196,.21); padding: 23px 21px 20px; background: linear-gradient(145deg,rgba(13,22,37,.82),rgba(5,9,16,.92)); transition: border-color .28s ease,background .28s ease,transform .42s cubic-bezier(.16,1,.3,1),box-shadow .3s ease; }
.testimonial-card:hover { border-color: rgba(102,181,255,.52); background: linear-gradient(145deg,rgba(18,36,67,.88),rgba(5,10,19,.95)); box-shadow: 0 24px 60px rgba(0,0,0,.22); transform: translateY(-6px); }
.testimonial-author { display: grid; grid-template-columns: 46px 1fr 31px; align-items: center; gap: 11px; }
.testimonial-avatar { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid rgba(107,169,255,.38); border-radius: 50%; background: radial-gradient(circle at 35% 30%,rgba(96,195,255,.32),rgba(42,91,196,.18) 48%,rgba(5,12,22,.8)); color: #d2e3ff; font: 750 10px/1 ui-monospace,SFMono-Regular,Menlo,monospace; }
.testimonial-author h3 { margin: 0 0 5px; color: #edf3fc; font-size: 14px; font-weight: 650; }
.testimonial-author p { margin: 0; color: #64758f; font-size: 8px; line-height: 1.35; }
.testimonial-platform { display: grid; width: 31px; height: 31px; place-items: center; border: 1px solid rgba(105,150,221,.2); }
.testimonial-platform svg { width: 20px; height: 20px; fill: rgba(82,141,255,.14); stroke: #6f9ce3; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.testimonial-stars { margin: 27px 0 20px; color: #71a5ff; font-size: 12px; letter-spacing: .12em; text-shadow: 0 0 18px rgba(62,124,245,.26); }
.testimonial-card blockquote { margin: 0; color: #9aa8bc; font-size: 12px; line-height: 1.75; }
.testimonial-card footer { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 22px; border-top: 1px solid rgba(103,134,182,.14); }
.testimonial-card footer > span { color: #495972; font: 650 5.5px/1 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .09em; }
.testimonial-card footer strong { display: inline-flex; align-items: center; gap: 5px; color: #8499b9; font-size: 7px; font-weight: 700; }
.testimonial-card footer svg { width: 16px; height: 16px; fill: rgba(83,146,255,.13); stroke: currentColor; stroke-width: 1.5; }
.review-controls { display: grid; grid-template-columns: 1fr auto 48px 48px; align-items: center; gap: 9px; margin-top: 22px; }
.review-progress { height: 1px; overflow: hidden; background: rgba(104,135,184,.17); }
.review-progress i { display: block; height: 100%; background: linear-gradient(90deg,var(--blue),var(--cyan)); box-shadow: 0 0 12px var(--cyan); transition: width .35s ease; }
.review-controls > span { margin: 0 13px; color: #60708b; font: 700 7px/1 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .08em; }
.review-controls button { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(103,153,232,.3); border-radius: 50%; background: rgba(33,73,156,.08); color: #8eb5f2; cursor: pointer; transition: background .25s ease,border-color .25s ease,color .25s ease,transform .25s ease; }
.review-controls button:hover { border-color: var(--cyan); background: #3978f3; color: white; transform: translateY(-2px); }
.reviews-demo-note { max-width: 680px; margin: 20px 0 0; color: #45536a; font-size: 8px; line-height: 1.5; }

@keyframes portraitScan { 0% { top:-8%; opacity:0; } 12% { opacity:1; } 88% { opacity:1; } 100% { top:108%; opacity:0; } }
@keyframes portraitOrbit { to { transform:rotate(360deg); } }
@keyframes reviewCardsIn { from { opacity:0; transform:translateX(18px); } to { opacity:1; transform:translateX(0); } }

@media (max-width: 1320px) {
  .nav { gap: 17px; }
  .phone-upgraded { font-size: 12px; }
  .header-messenger { width: 40px; padding: 0 7px; justify-content: center; }
  .header-messenger span { display: none; }
  .credentials-section { grid-template-columns: minmax(0,.78fr) minmax(520px,1.22fr); }
  .founder-layout { grid-template-columns: 1fr 285px .9fr; gap: 40px; }
  .founder-portrait { width: 270px; height: 270px; }
  .fullcycle-visual .project-core { width: 286px; height: 228px; }
  .fullcycle-visual .site-preview.modern-prototype { height: 194px; }
  .fullcycle-visual .modern-prototype > strong { font-size: 23px; }
}

@media (max-width: 1040px) {
  .advantages-panel { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .founder-layout { grid-template-columns: 1fr 300px; }
  .founder-layout > h2 { grid-column: 1 / -1; }
  .credentials-section { grid-template-columns: 1fr; }
  .credentials-copy { max-width: 820px; }
  .review-heading { grid-template-columns: 1fr 2fr !important; }
  .platform-total { grid-column: 2; justify-self: start; margin-top: 20px; }
  .review-track { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .testimonial-card:nth-child(n+3) { display: none; }
  .review-tabs button span { font-size: 9px; }
}

@media (max-width: 930px) {
  .advantages-section { width: min(100% - 40px,1480px); padding: 112px 0; }
  .fullcycle-visual { min-height: 650px; }
  .founder-layout { grid-template-columns: 1fr; }
  .founder-portrait { width: 320px; height: 320px; justify-self: start; }
  .review-heading { grid-template-columns: 1fr !important; }
  .platform-total { grid-column: auto; justify-self: start; }
  .review-tabs { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 640px) {
  .header-messenger { width: 36px; height: 36px; }
  .header-messenger svg { width: 23px; height: 23px; }
  .header-project { display: none; }
  .fullcycle-visual { min-height: 590px; }
  .matrix-rain-canvas { opacity: .82; }
  .fullcycle-visual .project-core { width: 214px; height: 176px; }
  .fullcycle-visual .site-preview.modern-prototype { height: 142px; }
  .fullcycle-visual .modern-prototype > strong { font-size: 17px; }
  .advantages-section { width: calc(100% - 28px); padding: 94px 0; }
  .advantages-panel { grid-template-columns: 1fr; }
  .advantage-card { min-height: 305px; padding: 22px 21px 27px; }
  .advantage-top { height: 91px; }
  .advantage-icon { width: 68px; height: 68px; }
  .advantage-icon svg { width: 41px; height: 41px; }
  .founder-portrait { width: min(310px,88vw); height: min(310px,88vw); justify-self: center; }
  .credentials-section { gap: 50px; padding: 94px 14px; }
  .credential-kicker { margin-top: 38px; }
  .credential-stats { grid-template-columns: 1fr; }
  .certificate-gallery { grid-template-columns: 1fr; }
  .certificate-card.certificate-main { min-height: 330px; grid-column: auto; grid-template-columns: 1fr; grid-template-rows: 220px 1fr; }
  .certificate-main::after { background: linear-gradient(0deg,rgba(3,18,50,.88),transparent 61%); }
  .certificate-main > img { min-height: 220px; }
  .review-tabs { gap: 7px; }
  .review-tabs button { height: 56px; padding-right: 10px; }
  .review-tabs button svg { width: 38px; height: 38px; flex-basis: 38px; }
  .review-track { grid-template-columns: 1fr; }
  .testimonial-card { min-height: 360px; }
  .testimonial-card:nth-child(n+2) { display: none; }
  .review-controls { grid-template-columns: 1fr auto 44px 44px; }
  .review-controls button { width: 44px; height: 44px; }
}

@media (hover: none) {
  .portrait-scan { animation: portraitScan 1.6s cubic-bezier(.16,1,.3,1) 1.2s 1; opacity: 1; }
  .portrait-frame img { animation: mobilePortraitColor 4.8s ease 1s 1; }
}

@keyframes mobilePortraitColor { 0%,100% { filter:grayscale(.82) saturate(.75) brightness(.72) contrast(1.12) sepia(.08) hue-rotate(170deg); } 25%,78% { filter:grayscale(0) saturate(.88) brightness(.86) contrast(1.05); } }

@media (prefers-reduced-motion: reduce) {
  .portrait-scan,.portrait-orbit,.review-track,.portrait-frame img { animation:none !important; }
}

/* V7 — denser Matrix layer, connected system map and compact credentials */
.phone-upgraded {
  gap: 10px;
  margin-right: 8px;
  color: #f6f9ff;
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -.035em;
}
.phone-upgraded svg { width: 27px; height: 27px; stroke-width: 1.9; }

.fullcycle-visual {
  isolation: isolate;
  background:
    radial-gradient(circle at 84% 8%,rgba(40,89,198,.13),transparent 37%),
    linear-gradient(rgba(112,154,226,.055) 1px,transparent 1px),
    linear-gradient(90deg,rgba(112,154,226,.055) 1px,transparent 1px),
    linear-gradient(145deg,rgba(7,12,21,.16),rgba(3,7,13,.06));
  background-size: auto,54px 54px,54px 54px,auto;
}
.fullcycle-visual::before {
  z-index: 2;
  inset: 5%;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y),rgba(64,132,255,.18),rgba(20,51,112,.045) 38%,transparent 69%);
  opacity: .46;
  filter: blur(24px);
  pointer-events: none;
}
.matrix-rain-canvas {
  z-index: 2;
  opacity: .7;
  mix-blend-mode: screen;
  filter: saturate(1.08) contrast(1.08) brightness(.96);
  mask-image: linear-gradient(to bottom,rgba(0,0,0,.78),#000 10%,#000 91%,rgba(0,0,0,.64));
}
.matrix-underlay {
  position:absolute;
  inset:0;
  z-index:1;
  overflow:hidden;
  opacity:.2;
  pointer-events:none;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.76),#000 9%,#000 92%,rgba(0,0,0,.66));
  transition:opacity .25s ease,filter .25s ease;
}
.matrix-underlay span {
  position:absolute;
  top:-54%;
  width:1em;
  white-space:pre;
  color:#67b7ff;
  font:700 12px/1.12 ui-monospace,SFMono-Regular,Menlo,monospace;
  text-align:center;
  text-shadow:0 0 7px rgba(92,171,255,.5);
  animation:matrixUnderlayFall linear infinite;
}
.fullcycle-visual[data-matrix-active="true"] .matrix-underlay { opacity:.2; filter:none; }
.fullcycle-visual[data-matrix-active="true"] .matrix-rain-canvas {
  opacity: .78;
  filter: saturate(1.12) contrast(1.1) brightness(1.01);
}
.fullcycle-map {
  z-index: 5;
  width: min(49vw,720px);
  filter: drop-shadow(0 34px 62px rgba(0,0,0,.43));
}
.fullcycle-map::before,.fullcycle-map::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  content: "";
  pointer-events: none;
  transform: translate(-50%,-50%);
}
.fullcycle-map::before {
  width: 67%;
  height: 62%;
  border: 1px solid rgba(92,155,255,.13);
  clip-path: polygon(9% 0,91% 0,100% 12%,100% 88%,91% 100%,9% 100%,0 88%,0 12%);
  background: radial-gradient(circle,rgba(27,75,176,.16),rgba(3,9,18,.2) 56%,transparent 73%);
  box-shadow: inset 0 0 80px rgba(49,106,236,.08);
}
.fullcycle-map::after {
  width: 56%;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(86,255,132,.46),rgba(102,229,255,.64),rgba(82,126,255,.45),transparent);
  box-shadow: 0 0 16px rgba(82,218,255,.22);
}
.system-links { z-index: 4; }
.system-links path { fill:none; stroke-dasharray:none; stroke-dashoffset:0; animation:none; }
.system-links .route-bases path { stroke:rgba(97,143,217,.27); stroke-width:3.4; }
.system-links .route-bases path::after { content:""; }
.system-links .route-live path {
  stroke:url(#systemRoute);
  stroke-width:1.55;
  stroke-dasharray:7 10;
  opacity:.72;
  animation:routeFlow 2.2s linear infinite;
}
.system-links .route-live path:nth-child(2),.system-links .route-live path:nth-child(5) { animation-delay:-.7s; }
.system-links .route-live path:nth-child(3),.system-links .route-live path:nth-child(6) { animation-delay:-1.4s; }
.system-links .route-ports circle { fill:#64e6ff; opacity:.72; filter:drop-shadow(0 0 8px #64e6ff); }
.system-links .route-ports circle:nth-child(-n+6) { fill:#64e6ff; }
.fullcycle-visual:hover .system-links .route-bases path { animation:none; stroke:rgba(95,158,248,.38); }
.fullcycle-visual:hover .system-links .route-live path { animation:routeFlow .85s linear infinite; opacity:1; }
.fullcycle-visual:hover .system-links .route-ports circle { animation:systemPortPulse 1.05s ease-in-out infinite; }

.integration-hub {
  position:absolute;
  top:50%;
  left:50%;
  z-index:3;
  width:430px;
  height:430px;
  border:1px solid rgba(94,156,255,.15);
  border-radius:50%;
  transform:translate(-50%,-50%);
  pointer-events:none;
}
.integration-hub::before,.integration-hub::after,.integration-hub > span {
  position:absolute;
  border:1px solid rgba(99,167,255,.13);
  border-radius:50%;
  content:"";
}
.integration-hub::before { inset:8%; border-style:dashed; }
.integration-hub::after { inset:22%; border-color:rgba(99,238,255,.16); }
.integration-hub > span:nth-child(1) { top:50%; left:-4px; width:8px; height:8px; border:0; background:#64e6ff; box-shadow:0 0 16px #64e6ff; }
.integration-hub > span:nth-child(2) { top:16%; right:9%; width:6px; height:6px; border:0; background:#64e6ff; box-shadow:0 0 13px #64e6ff; }
.integration-hub > span:nth-child(3) { right:12%; bottom:12%; width:5px; height:5px; border:0; background:#5b8dff; box-shadow:0 0 12px #5b8dff; }
.integration-hub b { position:absolute; top:12%; left:50%; color:#52698b; font:700 5px/1.4 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing:.17em; text-align:center; transform:translateX(-50%); }
.fullcycle-visual:hover .integration-hub { border-color:rgba(99,231,255,.27); animation:hubBreathe 2.8s ease-in-out infinite; }
.fullcycle-visual:hover .integration-hub::before { animation:portraitOrbit 17s linear infinite; }
.fullcycle-visual:hover .integration-hub::after { animation:portraitOrbit 13s linear infinite reverse; }

.fullcycle-visual .project-core {
  z-index:8;
  width:354px;
  height:276px;
  border-color:rgba(110,187,255,.72);
  background:linear-gradient(145deg,rgba(5,15,29,.94),rgba(2,7,14,.92));
  box-shadow:inset 0 0 60px rgba(47,101,222,.19),0 0 72px rgba(25,75,185,.25),0 30px 80px rgba(0,0,0,.45);
}
.fullcycle-visual .site-preview.modern-prototype { height:242px; }
.fullcycle-visual .modern-prototype > strong { font-size:29px; }
.fullcycle-visual .project-core::after {
  position:absolute;
  inset:0;
  z-index:4;
  content:"";
  pointer-events:none;
  background:linear-gradient(115deg,transparent 35%,rgba(114,234,255,.08) 48%,transparent 60%);
  transform:translateX(-110%);
}
.fullcycle-visual:hover .project-core::after { animation:coreSweep 1.1s cubic-bezier(.16,1,.3,1) 1; }

.fullcycle-visual .flow-node {
  z-index:7;
  width:136px;
  height:78px;
  grid-template-columns:44px 1fr;
  gap:0 10px;
  padding:11px;
  border-color:rgba(111,164,245,.33);
  border-radius:6px;
  clip-path:polygon(9px 0,100% 0,100% calc(100% - 9px),calc(100% - 9px) 100%,0 100%,0 9px);
  background:linear-gradient(145deg,rgba(9,23,42,.91),rgba(3,9,17,.88));
  box-shadow:inset 0 0 34px rgba(57,116,255,.07),0 17px 36px rgba(0,0,0,.35);
  opacity:.9;
}
.fullcycle-visual .flow-node::before {
  position:absolute;
  top:0;
  left:10px;
  width:38%;
  height:1px;
  content:"";
  background:linear-gradient(90deg,#64e6ff,#6fa8ff,transparent);
  opacity:.65;
}
.fullcycle-visual .flow-node::after {
  position:absolute;
  right:8px;
  bottom:7px;
  width:4px;
  height:4px;
  border-radius:50%;
  content:"";
  background:#64e6ff;
  box-shadow:0 0 9px #64e6ff;
  opacity:.65;
}
.fullcycle-visual .node-icon { width:42px; height:42px; border-color:rgba(101,190,255,.46); background:linear-gradient(145deg,rgba(45,102,226,.23),rgba(6,16,29,.4)); color:#84b6ff; }
.fullcycle-visual .flow-node strong { color:#e1e9f6; font-size:7.5px; }
.fullcycle-visual .flow-node small { color:#657997; font-size:5.7px; }
.fullcycle-visual:hover .flow-node { border-color:rgba(101,227,255,.62); background:linear-gradient(145deg,rgba(15,39,70,.94),rgba(3,10,19,.9)); box-shadow:inset 0 0 38px rgba(57,116,255,.13),0 0 30px rgba(41,115,235,.19),0 17px 38px rgba(0,0,0,.38); }
.fullcycle-visual:hover .flow-node::after { opacity:1; animation:systemPortPulse .8s ease-in-out infinite; }

.assembly-caption {
  right:28px;
  bottom:62px;
  left:28px;
  min-height:43px;
  justify-content:flex-start;
  gap:7px;
  padding:8px 12px;
  border:1px solid rgba(98,147,226,.2);
  border-radius:100px;
  background:rgba(4,11,20,.7);
  color:#71809a;
  box-shadow:inset 0 0 30px rgba(38,88,189,.07),0 12px 30px rgba(0,0,0,.2);
  backdrop-filter:blur(10px);
}
.assembly-caption em { display:inline-flex; align-items:center; gap:6px; margin-right:auto; color:#6f87aa; font-style:normal; white-space:nowrap; }
.assembly-caption em i { width:5px; height:5px; border-radius:50%; background:#64e6ff; box-shadow:0 0 9px #64e6ff; }
.assembly-caption span { display:inline-flex; align-items:center; gap:4px; white-space:nowrap; }
.assembly-caption span b { color:#64e6ff; font-size:4.5px; font-weight:750; }
.assembly-caption > i { width:12px; background:linear-gradient(90deg,rgba(84,149,255,.16),rgba(100,230,255,.58),rgba(84,149,255,.16)); }
.fullcycle-visual:hover .assembly-caption { border-color:rgba(102,210,255,.35); color:#a2b3cb; }

.advantages-panel {
  gap:12px;
  border:0;
  background:transparent;
}
.advantage-card {
  border:1px solid rgba(108,144,202,.22);
  border-radius:18px;
  background:radial-gradient(circle at 84% 12%,rgba(54,112,232,.08),transparent 38%),linear-gradient(145deg,rgba(12,18,29,.74),rgba(6,10,17,.9));
}

.credentials-section {
  grid-template-columns:minmax(0,.9fr) minmax(560px,1.1fr);
  gap:clamp(45px,5vw,78px);
  padding:100px max(28px,calc((100vw - 1480px)/2));
  border-color:rgba(105,151,224,.22);
  background:
    radial-gradient(circle at 74% 16%,rgba(43,101,228,.14),transparent 35%),
    radial-gradient(circle at 4% 92%,rgba(31,77,170,.1),transparent 30%),
    linear-gradient(145deg,#080d15,#0a111d 48%,#060a11);
  box-shadow:inset 0 0 110px rgba(3,8,17,.32);
}
.credentials-section::before {
  background-image:linear-gradient(rgba(125,158,216,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(125,158,216,.045) 1px,transparent 1px);
  background-size:58px 58px;
  mask-image:linear-gradient(90deg,black,rgba(0,0,0,.52) 72%,transparent);
}
.credentials-aura { top:-42%; right:10%; width:520px; height:520px; background:radial-gradient(circle,rgba(76,151,255,.12),transparent 68%); }
.credentials-copy .section-index { color:#53647d; }
.credential-kicker { margin:30px 0 15px; color:#68dff6; }
.credentials-copy h2 { max-width:610px; margin-bottom:23px; font-size:clamp(43px,4.1vw,64px); }
.credentials-copy > p:not(.credential-kicker) { color:#8290a6; font-size:13px; }
.credential-stats { margin-top:34px; border-color:rgba(109,151,217,.2); background:rgba(89,128,191,.12); }
.credential-stats div { background:rgba(9,19,34,.84); }
.credential-stats span { color:#667791; }
.certificate-gallery { gap:12px; }
.certificate-card {
  min-height:220px;
  grid-template-rows:148px 1fr;
  border-color:rgba(105,151,224,.24);
  background:rgba(6,14,26,.82);
  box-shadow:0 20px 50px rgba(0,0,0,.16);
}
.certificate-card.certificate-main {
  min-height:220px;
  height:220px;
  grid-template-columns:1.35fr .65fr;
  grid-template-rows:1fr;
}
.certificate-main > img { min-height:220px; }
.certificate-card::after { background:linear-gradient(0deg,rgba(4,13,25,.92),transparent 61%); }
.certificate-main::after { background:linear-gradient(90deg,transparent 34%,rgba(4,13,25,.95) 70%); }
.certificate-card:hover { border-color:rgba(105,223,255,.62); background:rgba(8,22,41,.9); box-shadow:0 28px 68px rgba(0,0,0,.3),0 0 35px rgba(40,102,232,.09); }

@keyframes routeFlow { to { stroke-dashoffset:-34; } }
@keyframes matrixUnderlayFall { from { transform:translateY(-16%); } to { transform:translateY(205%); } }
@keyframes heroCaretBlink { 0%,46% { opacity:1; } 47%,100% { opacity:.12; } }
@keyframes systemPortPulse { 0%,100% { opacity:.45; transform:scale(.82); } 50% { opacity:1; transform:scale(1.35); } }
@keyframes hubBreathe { 0%,100% { opacity:.62; transform:translate(-50%,-50%) scale(.985); } 50% { opacity:1; transform:translate(-50%,-50%) scale(1.02); } }
@keyframes coreSweep { from { transform:translateX(-115%); } to { transform:translateX(115%); } }

@media (max-width:1320px) {
  .phone-upgraded { font-size:16px; }
  .phone-upgraded svg { width:25px; height:25px; }
  .fullcycle-visual .project-core { width:318px; height:252px; }
  .fullcycle-visual .site-preview.modern-prototype { height:218px; }
  .fullcycle-visual .modern-prototype > strong { font-size:25px; }
  .fullcycle-visual .flow-node { width:124px; height:72px; grid-template-columns:39px 1fr; padding:9px; }
  .fullcycle-visual .node-icon { width:38px; height:38px; }
  .integration-hub { width:390px; height:390px; }
  .assembly-caption em { display:none; }
}

@media (max-width:1220px) {
  .phone-upgraded { display:none; }
}

@media (max-width:1040px) {
  .credentials-section { grid-template-columns:1fr; padding-top:90px; padding-bottom:90px; }
}

@media (max-width:930px) {
  .fullcycle-map { width:min(92vw,700px); }
  .assembly-caption { right:18px; left:18px; }
}

@media (max-width:640px) {
  .matrix-rain-canvas { opacity:.68; }
  .fullcycle-visual[data-matrix-active="true"] .matrix-rain-canvas { opacity:.88; }
  .fullcycle-visual .project-core { width:224px; height:184px; }
  .fullcycle-visual .site-preview.modern-prototype { height:150px; }
  .fullcycle-visual .modern-prototype > strong { font-size:18px; }
  .fullcycle-visual .flow-node { width:98px; height:59px; grid-template-columns:31px 1fr; gap:0 6px; padding:7px; }
  .fullcycle-visual .node-icon { width:30px; height:30px; }
  .fullcycle-visual .flow-node strong { font-size:5.7px; }
  .fullcycle-visual .flow-node small { font-size:4.4px; }
  .integration-hub { width:285px; height:285px; }
  .assembly-caption { bottom:55px; min-height:35px; gap:4px; padding:6px 8px; }
  .assembly-caption span { font-size:4.7px; }
  .assembly-caption span b { display:none; }
  .assembly-caption > i { width:5px; }
  .credentials-section { gap:42px; padding:82px 14px; }
  .certificate-card.certificate-main { min-height:300px; height:auto; grid-template-columns:1fr; grid-template-rows:210px 1fr; }
  .certificate-main > img { min-height:210px; }
  .certificate-main::after { background:linear-gradient(0deg,rgba(4,13,25,.94),transparent 63%); }
  .hero-lead-typed { min-height:6.5em; }
}

@media (prefers-reduced-motion:reduce) {
  .hero-typing-caret,.matrix-underlay span,.system-links .route-live path,.integration-hub,.integration-hub::before,.integration-hub::after,.fullcycle-visual .flow-node::after { animation:none !important; }
}

/* V1.4 — exact concept port inside Ranx wrappers */
.section-spacer { display:block; min-width:1px; min-height:1px; }

/* The React concept has one site-shell, one fading page grid and one cursor
   aura. Ranx has no site-shell element, therefore #blocks_wrapper fulfils the
   same role. This also prevents a new grid/background from starting at every
   saved landing block. */
body.extreme-web-theme,
body:has(.extreme-section) {
  position:relative;
  isolation:isolate;
}
body.extreme-web-theme::before,
body:has(.extreme-section)::before {
  content:none !important;
}
body.extreme-web-theme::after,
body:has(.extreme-section)::after {
  position:fixed;
  left:var(--cursor-x);
  top:var(--cursor-y);
  z-index:0;
  width:760px;
  height:760px;
  border-radius:50%;
  content:"";
  pointer-events:none;
  background:radial-gradient(circle,rgba(56,116,255,.12),rgba(51,100,224,.035) 42%,transparent 68%);
  filter:blur(34px);
  transform:translate(-50%,-50%);
  transition:left .18s linear,top .18s linear;
}
html:has(body.extreme-web-theme)::after {
  position:fixed;
  inset:0;
  z-index:190;
  content:"";
  pointer-events:none;
  opacity:.035;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}
body.extreme-web-theme #blocks_wrapper,
body:has(.extreme-section) #blocks_wrapper {
  position:relative;
  z-index:1;
  isolation:isolate;
  background:
    radial-gradient(circle at 18% 6%,rgba(47,97,227,.14),transparent 24%),
    linear-gradient(180deg,#05070a 0%,#06090f 48%,#040609 100%) !important;
}
body.extreme-web-theme #blocks_wrapper::before,
body:has(.extreme-section) #blocks_wrapper::before {
  position:absolute;
  inset:0;
  z-index:0;
  content:"";
  pointer-events:none;
  background-image:
    linear-gradient(rgba(132,159,217,.055) 1px,transparent 1px),
    linear-gradient(90deg,rgba(132,159,217,.055) 1px,transparent 1px);
  background-size:72px 72px;
  -webkit-mask-image:linear-gradient(to bottom,#000 0,transparent 41%);
  mask-image:linear-gradient(to bottom,#000 0,transparent 41%);
}
body.extreme-web-theme #blocks_wrapper > .block-wrap,
body:has(.extreme-section) #blocks_wrapper > .block-wrap {
  position:relative;
  z-index:1;
}

body.extreme-web-theme .extreme-section:not(.ew-hero),
body:has(.extreme-section) .extreme-section:not(.ew-hero) {
  overflow:visible !important;
  background:transparent !important;
}

body.extreme-web-theme .credentials-section,
body:has(.extreme-section) .credentials-section {
  overflow:hidden !important;
  background:
    radial-gradient(circle at 74% 16%,rgba(43,101,228,.14),transparent 35%),
    radial-gradient(circle at 4% 92%,rgba(31,77,170,.1),transparent 30%),
    linear-gradient(145deg,#080d15,#0a111d 48%,#060a11) !important;
}

body.extreme-web-theme .services-section,
body.extreme-web-theme .projects-section,
body.extreme-web-theme .about-section,
body.extreme-web-theme .reviews-section,
body.extreme-web-theme .footer,
body:has(.extreme-section) .services-section,
body:has(.extreme-section) .projects-section,
body:has(.extreme-section) .about-section,
body:has(.extreme-section) .reviews-section,
body:has(.extreme-section) .footer {
  width:min(100% - 56px,1480px) !important;
  max-width:1480px !important;
  margin-right:auto !important;
  margin-left:auto !important;
}

.review-platform-panel { display:none; }
.review-platform-panel.is-active { display:block; }
.review-track {
  --reviews-visible:4;
  display:flex;
  gap:11px;
  transform:none !important;
}
.review-track .testimonial-card { flex:0 0 calc((100% - 33px)/4); }
.review-track.is-changing .testimonial-card { animation:reviewCardsIn .42s cubic-bezier(.16,1,.3,1) both; }
.review-tab-mark { display:contents; }

/* The selected Ranx form stays functional, while its controls take the exact
   typography, spacing and underline treatment of the approved concept. */
.request-form .form,
.request-form form,
.request-form .form-body { display:grid !important; gap:22px !important; width:100% !important; }
.request-form .form-group,
.request-form .input,
.request-form .form-control-wrap { margin:0 !important; }
.request-form label,
.request-form .form-label { display:grid !important; gap:8px !important; color:#657187 !important; font-size:8px !important; letter-spacing:.14em !important; text-transform:uppercase !important; }
.request-form input:not([type="checkbox"]):not([type="radio"]),
.request-form textarea,
.request-form select {
  width:100% !important;
  min-height:46px !important;
  border:0 !important;
  border-bottom:1px solid var(--line) !important;
  border-radius:0 !important;
  padding:13px 0 !important;
  background:transparent !important;
  box-shadow:none !important;
  color:#fff !important;
  font-size:15px !important;
}
.request-form textarea { min-height:90px !important; resize:vertical; }
.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus { border-bottom-color:var(--blue-bright) !important; outline:0 !important; }
.request-form button[type="submit"],
.request-form input[type="submit"],
.request-form .btn {
  display:flex !important;
  width:100% !important;
  height:58px !important;
  align-items:center !important;
  justify-content:center !important;
  margin-top:8px !important;
  border:1px solid rgba(89,149,255,.46) !important;
  border-radius:100px !important;
  background:linear-gradient(110deg,rgba(45,96,223,.26),rgba(8,13,23,.76)) !important;
  box-shadow:none !important;
  color:#f5f8ff !important;
  font-size:12px !important;
}
.request-form button[type="submit"]:hover,
.request-form input[type="submit"]:hover,
.request-form .btn:hover { border-color:var(--cyan) !important; box-shadow:0 0 38px rgba(57,116,255,.15) !important; }

@media (max-width:1040px) {
  .review-track { --reviews-visible:2; }
  .review-track .testimonial-card { flex-basis:calc((100% - 11px)/2); }
}
@media (max-width:930px) {
  body.extreme-web-theme .services-section,
  body.extreme-web-theme .projects-section,
  body.extreme-web-theme .about-section,
  body.extreme-web-theme .reviews-section,
  body.extreme-web-theme .footer,
  body:has(.extreme-section) .services-section,
  body:has(.extreme-section) .projects-section,
  body:has(.extreme-section) .about-section,
  body:has(.extreme-section) .reviews-section,
  body:has(.extreme-section) .footer { width:min(100% - 40px,1480px) !important; }
}
@media (max-width:640px) {
  body.extreme-web-theme .services-section,
  body.extreme-web-theme .projects-section,
  body.extreme-web-theme .about-section,
  body.extreme-web-theme .reviews-section,
  body.extreme-web-theme .footer,
  body:has(.extreme-section) .services-section,
  body:has(.extreme-section) .projects-section,
  body:has(.extreme-section) .about-section,
  body:has(.extreme-section) .reviews-section,
  body:has(.extreme-section) .footer { width:calc(100% - 28px) !important; }
  .review-track { --reviews-visible:1; }
  .review-track .testimonial-card { flex-basis:100%; }
}

/* V1.5 — shared editorial rhythm, readable microcopy and interactive cursor */
body.extreme-web-theme,
body:has(.extreme-section) {
  font-family:InterEW,Inter,Arial,sans-serif !important;
}
body.extreme-web-theme h1,
body.extreme-web-theme h2,
body.extreme-web-theme h3,
body:has(.extreme-section) h1,
body:has(.extreme-section) h2,
body:has(.extreme-section) h3 {
  font-family:ManropeEW,InterEW,Arial,sans-serif;
}

.section-heading,
.section-heading.compact,
.review-heading {
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);
  align-items:end;
  gap:clamp(42px,7vw,112px);
  margin-bottom:70px;
}
.review-heading { grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr) !important; }
.section-heading h2 {
  grid-column:1;
  grid-row:1;
  max-width:920px;
}
.section-heading>p,
.section-heading>.platform-total {
  grid-column:2;
  grid-row:1;
  align-self:end;
  justify-self:end;
  width:min(100%,520px);
}
.section-heading>p {
  margin:0 0 5px;
  color:#8f9bb0;
  font-size:16px;
  line-height:1.7;
}
.section-heading h2 span,
.about-layout h2 span,
.credentials-copy h2 span,
.request-copy h2 span {
  background:linear-gradient(95deg,#a8c5ff 0%,#5f91ff 44%,#22cfff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  -webkit-text-fill-color:transparent;
}
.ew-title-side-right .section-heading h2 { grid-column:2; }
.ew-title-side-right .section-heading>p,
.ew-title-side-right .section-heading>.platform-total {
  grid-column:1;
  justify-self:start;
}

/* The title/content switch is stored separately for every Ranx block. */
.founder-layout>h2,
.founder-layout>.founder-portrait,
.founder-layout>.founder-copy { grid-row:1; }
.ew-title-side-right .founder-layout>h2 { grid-column:3; }
.ew-title-side-right .founder-layout>.founder-copy { grid-column:1; }
.ew-title-side-right .founder-layout>.founder-portrait { grid-column:2; }
.about-layout h2 { align-self:center; }
.about-layout p { font-size:16px; }
.about-layout .about-lead { font-size:19px; }

.founder-certificates {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:30px;
}
.founder-certificate {
  position:relative;
  display:grid;
  min-height:116px;
  grid-template-columns:50px 1fr;
  align-content:center;
  gap:6px 12px;
  overflow:hidden;
  border:1px solid rgba(100,164,255,.3);
  border-radius:16px;
  padding:18px;
  background:linear-gradient(145deg,rgba(31,71,151,.18),rgba(6,12,22,.76));
  box-shadow:inset 0 0 28px rgba(63,123,255,.05),0 16px 40px rgba(0,0,0,.18);
  transition:border-color .3s ease,box-shadow .3s ease,transform .35s var(--ew-ease);
}
.founder-certificate::after {
  position:absolute;
  inset:auto -15% -55% 30%;
  height:110px;
  border-radius:50%;
  content:"";
  background:radial-gradient(circle,rgba(82,146,255,.22),transparent 68%);
  pointer-events:none;
}
.founder-certificate:hover {
  border-color:rgba(102,224,255,.64);
  box-shadow:0 20px 50px rgba(0,0,0,.26),0 0 34px rgba(53,116,247,.12);
  transform:translateY(-4px);
}
.founder-certificate i {
  display:grid;
  width:50px;
  height:50px;
  grid-row:1/3;
  place-items:center;
  border:1px solid rgba(103,194,255,.38);
  border-radius:50%;
  color:#74dfff;
  font:800 17px/1 ManropeEW,sans-serif;
  font-style:normal;
  box-shadow:inset 0 0 20px rgba(48,110,239,.18);
}
.founder-certificate b { align-self:end;color:#f0f5fc;font-size:13px;line-height:1.25; }
.founder-certificate small { color:#7e91ad;font-size:11px;line-height:1.3; }
.founder-certificate--direct i { border-radius:13px; }

.ew-title-side-right.credentials-section {
  grid-template-columns:minmax(560px,1.1fr) minmax(0,.9fr);
}
.ew-title-side-right.credentials-section .credentials-copy { grid-column:2;grid-row:1; }
.ew-title-side-right.credentials-section .certificate-gallery { grid-column:1;grid-row:1; }
.credentials-section {
  border-color:rgba(99,150,230,.24) !important;
  background:
    radial-gradient(circle at 78% 14%,rgba(51,111,232,.17),transparent 34%),
    radial-gradient(circle at 3% 92%,rgba(32,78,171,.11),transparent 31%),
    linear-gradient(145deg,#0a101a 0%,#0b1422 50%,#060a11 100%) !important;
}
.credentials-copy h2 span { display:inline; }
.credentials-copy>p:not(.credential-kicker) { font-size:16px; }
.credential-kicker { font-size:10px; }
.credential-stats strong { font-size:13px; }
.credential-stats span { font-size:9px; }
.certificate-card span b { font-size:15px; }
.certificate-card span small { font-size:10px; }

.ew-title-side-right .request-copy { grid-column:2;grid-row:1; }
.ew-title-side-right .request-form { grid-column:1;grid-row:1; }
.request-copy p { font-size:16px; }
.request-form label,
.request-form .form-label { font-size:10px !important; }
.request-form .form-check-label,
.request-form .checkbox label,
.request-form .agreement { font-size:10px !important;line-height:1.5 !important; }

.platform-total { justify-self:end; }
.platform-total small { font-size:9px;line-height:1.25; }
.platform-total strong { font-size:23px; }
.testimonial-card { min-height:400px; }
.testimonial-author h3 { font-size:15px; }
.testimonial-author p { font-size:10px; }
.testimonial-card blockquote { color:#a3aec0;font-size:14px;line-height:1.72; }
.testimonial-card footer>span { color:#6c7d99;font-size:9px;line-height:1.25; }
.testimonial-card footer strong { gap:8px;color:#a9bad4;font-size:11px; }
.testimonial-card footer svg { width:24px;height:24px; }
.review-controls>span,
.reviews-demo-note { font-size:10px; }

.service-card p,
.advantage-card p,
.case-body>p { font-size:14px;line-height:1.7; }
.advantage-card>strong,
.case-card small,
.case-time small { font-size:9px; }
.footer-grid small { font-size:10px; }
.footer-grid a,
.footer-grid span { font-size:13px; }
.footer-bottom { font-size:11px; }

/* Round cursor and the subtle light field used by the approved concept. */
.ew-cursor {
  position:fixed;
  top:0;
  left:0;
  z-index:10050;
  display:grid;
  width:52px;
  height:52px;
  place-items:center;
  border:1px solid rgba(106,184,255,.72);
  border-radius:50%;
  background:rgba(5,11,20,.14);
  box-shadow:0 0 28px rgba(62,125,255,.12),inset 0 0 18px rgba(68,139,255,.08);
  opacity:0;
  pointer-events:none;
  transform:translate3d(-100px,-100px,0);
  transition:width .25s var(--ew-ease),height .25s var(--ew-ease),border-color .25s ease,background .25s ease,opacity .18s ease;
  backdrop-filter:blur(2px);
}
.ew-cursor::before {
  width:5px;
  height:5px;
  border-radius:50%;
  content:"";
  background:#68e5ff;
  box-shadow:0 0 11px #68e5ff;
}
.ew-cursor.is-visible { opacity:1; }
.ew-cursor.is-active {
  width:76px;
  height:76px;
  border-color:rgba(105,228,255,.9);
  background:rgba(7,17,31,.52);
}
.ew-cursor.is-active::before { opacity:0; }
.ew-cursor__label {
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  padding:8px;
  color:#dcecff;
  font:750 8px/1.1 ui-monospace,SFMono-Regular,Menlo,monospace;
  letter-spacing:.08em;
  text-align:center;
  text-transform:uppercase;
  opacity:0;
}
.ew-cursor.is-active .ew-cursor__label { opacity:1; }
@media (pointer:fine) {
  body.ew-custom-cursor,
  body.ew-custom-cursor a,
  body.ew-custom-cursor button,
  body.ew-custom-cursor [data-cursor] { cursor:none !important; }
}

@media (max-width:1100px) {
  .section-heading,
  .section-heading.compact,
  .review-heading { grid-template-columns:minmax(0,1.15fr) minmax(280px,.85fr);gap:40px; }
  .founder-layout,
  .ew-title-side-right .founder-layout { grid-template-columns:1fr;gap:42px; }
  .founder-layout>h2,
  .founder-layout>.founder-copy,
  .founder-layout>.founder-portrait,
  .ew-title-side-right .founder-layout>h2,
  .ew-title-side-right .founder-layout>.founder-copy,
  .ew-title-side-right .founder-layout>.founder-portrait { grid-column:1;grid-row:auto; }
  .founder-layout>h2 { order:1; }
  .founder-layout>.founder-copy { order:2;max-width:760px; }
  .founder-layout>.founder-portrait { order:3;justify-self:start; }
  .ew-title-side-right.credentials-section { grid-template-columns:1fr; }
  .ew-title-side-right.credentials-section .credentials-copy,
  .ew-title-side-right.credentials-section .certificate-gallery { grid-column:1;grid-row:auto; }
}

@media (max-width:760px) {
  .section-heading,
  .section-heading.compact,
  .review-heading { grid-template-columns:1fr;gap:24px;margin-bottom:46px; }
  .review-heading { grid-template-columns:1fr !important; }
  .section-heading h2,
  .ew-title-side-right .section-heading h2 { grid-column:1;grid-row:1; }
  .section-heading>p,
  .section-heading>.platform-total,
  .ew-title-side-right .section-heading>p,
  .ew-title-side-right .section-heading>.platform-total { grid-column:1;grid-row:2;justify-self:start; }
  .section-heading>p { font-size:15px; }
  .founder-certificates { grid-template-columns:1fr; }
  .ew-title-side-right .request-copy,
  .ew-title-side-right .request-form { grid-column:auto;grid-row:auto; }
  .request-copy { order:1; }
  .request-form { order:2; }
  .testimonial-card blockquote { font-size:14px; }
  .ew-cursor { display:none; }
}
