:root {
  --bg: #061416;
  --panel: rgba(10, 29, 31, 0.94);
  --panel-strong: rgba(13, 36, 38, 0.98);
  --border: rgba(var(--green-rgb), 0.3);
  --border-soft: rgba(255, 255, 255, 0.12);
  --green: #43e65d;
  --green-rgb: 67, 230, 93;
  --green-2: #9dff75;
  --green-2-rgb: 157, 255, 117;
  --on-green: #031006;
  --cyan: #0cd9c4;
  --text: #f8fbf9;
  --muted: #c9d5d0;
  --surface-a: #07191b;
  --surface-b: #092124;
  --line-green: rgba(var(--green-rgb), 0.085);
  --line-cyan: rgba(12, 217, 196, 0.075);
  --shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
  --radius: 8px;
  --header-desktop: 88px;
  --header-tablet: 78px;
  --header-mobile: 72px;
}

[data-cms-section][hidden] {
  display: none !important;
}

@keyframes meshDrift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(18px, -24px, 0) rotate(4deg); }
}

@keyframes codeFloat {
  0% { transform: translate3d(0, 24px, 0); opacity: 0; }
  16%, 70% { opacity: 0.46; }
  100% { transform: translate3d(0, -130px, 0); opacity: 0; }
}

@keyframes scanMove {
  0% { transform: translateY(-120%); opacity: 0; }
  12%, 82% { opacity: 0.75; }
  100% { transform: translateY(520%); opacity: 0; }
}

@keyframes windowPulse {
  0%, 100% { box-shadow: 0 30px 50px rgba(0, 0, 0, 0.55), 0 0 42px rgba(12, 217, 196, 0.16); }
  50% { box-shadow: 0 34px 54px rgba(0, 0, 0, 0.6), 0 0 58px rgba(var(--green-rgb), 0.26); }
}

@keyframes floatWindow {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes barPulse {
  0%, 100% { transform: scaleY(0.72); opacity: 0.56; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes glowBeat {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(var(--green-rgb), 0.6)); }
  50% { filter: drop-shadow(0 0 22px rgba(var(--green-rgb), 0.95)); }
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Cairo", system-ui, sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(12, 217, 196, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 217, 196, 0.05) 1px, transparent 1px),
    var(--bg);
  background-size: 64px 64px, 64px 64px, auto;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image:
    linear-gradient(rgba(var(--green-rgb), 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--green-rgb), 0.06) 1px, transparent 1px);
  background-size: 128px 128px;
  opacity: 0.76;
}

body::after {
  background:
    repeating-linear-gradient(125deg, transparent 0 150px, rgba(var(--green-rgb), 0.027) 150px 151px),
    repeating-linear-gradient(35deg, transparent 0 190px, rgba(12, 217, 196, 0.025) 190px 191px);
  opacity: 0.68;
}

.mesh-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.mesh {
  position: absolute;
  width: 280px;
  height: 420px;
  opacity: 0.45;
  background:
    linear-gradient(35deg, transparent 0 48%, rgba(var(--green-rgb), 0.42) 49% 50%, transparent 51%),
    linear-gradient(145deg, transparent 0 48%, rgba(12, 217, 196, 0.25) 49% 50%, transparent 51%),
    radial-gradient(circle, rgba(var(--green-rgb), 0.9) 0 2px, transparent 3px);
  background-size: 62px 62px, 78px 78px, 62px 62px;
  mask-image: radial-gradient(ellipse at center, black 12%, transparent 72%);
  animation: meshDrift 10s ease-in-out infinite;
}

.mesh-left {
  right: auto;
  left: -70px;
  top: 210px;
}

.mesh-right {
  right: -80px;
  top: 860px;
  animation-delay: -3s;
}

.mesh-mid {
  left: 8%;
  top: 1950px;
  width: 360px;
  opacity: 0.32;
  animation-delay: -6s;
}

.code-rain {
  position: absolute;
  direction: ltr;
  color: rgba(105, 255, 122, 0.24);
  font-family: Consolas, "Courier New", monospace;
  font-size: clamp(0.8rem, 1.3vw, 1.1rem);
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(var(--green-rgb), 0.42);
  animation: codeFloat 9s linear infinite;
}

.code-rain-a {
  left: 8%;
  top: 22%;
}

.code-rain-b {
  right: 7%;
  top: 46%;
  animation-delay: -3.6s;
}

.code-rain-c {
  left: 16%;
  top: 72%;
  animation-delay: -6.5s;
}

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

img,
svg {
  display: block;
}

.container {
  width: min(1160px, calc(100% - 44px));
  margin-inline: auto;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    linear-gradient(180deg, rgba(2, 8, 9, 0.94), rgba(2, 8, 9, 0.78)),
    rgba(2, 6, 7, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--green-rgb), 0.68), transparent);
  opacity: 0.7;
}

.nav-wrap {
  position: relative;
  min-height: var(--header-desktop);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.02rem, 1.45vw, 1.28rem);
  white-space: nowrap;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 34px;
  filter: drop-shadow(0 0 12px rgba(var(--green-rgb), 0.6));
  animation: glowBeat 3.2s ease-in-out infinite;
}

.brand-logo-image {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
  border-radius: 6px;
}

.footer-logo .brand-logo-image {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
}

.brand-mark span {
  position: absolute;
  width: 18px;
  height: 25px;
  border: 2px solid var(--green);
  border-radius: 70% 35% 70% 35%;
}

.brand-mark span:nth-child(1) {
  right: 18px;
  top: 0;
  transform: rotate(-32deg);
}

.brand-mark span:nth-child(2) {
  right: 5px;
  top: 0;
  transform: rotate(32deg) scaleX(-1);
}

.brand-mark span:nth-child(3) {
  right: 19px;
  top: 14px;
  transform: rotate(28deg) scale(0.78);
}

.brand-mark span:nth-child(4) {
  right: 6px;
  top: 14px;
  transform: rotate(-28deg) scaleX(-1) scale(0.78);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.94rem;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.main-nav a::after {
  display: none;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  background: rgba(var(--green-rgb), 0.16);
  box-shadow: inset 0 0 0 1px rgba(var(--green-rgb), 0.24), 0 0 20px rgba(var(--green-rgb), 0.14);
}

.call-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  direction: ltr;
  min-height: 48px;
  padding: 10px 17px;
  border: 1px solid rgba(var(--green-rgb), 0.45);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(var(--green-rgb), 0.2), rgba(var(--green-rgb), 0.05)),
    rgba(4, 18, 13, 0.86);
  box-shadow: inset 0 0 18px rgba(var(--green-rgb), 0.08), 0 0 18px rgba(var(--green-rgb), 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.call-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--green-rgb), 0.8);
  box-shadow: inset 0 0 18px rgba(var(--green-rgb), 0.1), 0 0 26px rgba(var(--green-rgb), 0.22);
}

.call-pill svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.call-pill small {
  display: block;
  direction: rtl;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1;
  opacity: 0.82;
}

.call-pill span {
  font-weight: 900;
  font-size: 1.02rem;
  line-height: 1.25;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(var(--green-rgb), 0.08);
  cursor: pointer;
}

.menu-toggle[aria-expanded="true"] {
  color: var(--green);
  border-color: rgba(var(--green-rgb), 0.48);
  background: rgba(var(--green-rgb), 0.12);
}

body.menu-open {
  overflow: hidden;
}

.hero {
  padding: clamp(42px, 6vw, 78px) 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.88fr) minmax(460px, 1.12fr);
  gap: clamp(34px, 5vw, 66px);
  align-items: center;
}

.hero-content {
  order: 1;
}

.hero-visual {
  order: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--green-2);
  font-weight: 800;
  background: rgba(12, 26, 18, 0.62);
}

.hero h1 {
  max-width: 620px;
  margin: 20px 0 18px;
  font-size: clamp(2.45rem, 4.7vw, 4.7rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 strong {
  display: block;
  color: var(--green);
  text-shadow: 0 0 20px rgba(var(--green-rgb), 0.34);
}

.hero p {
  max-width: 590px;
  margin: 0;
  color: #b9c4c0;
  font-size: clamp(1rem, 1.45vw, 1.23rem);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(120%);
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transition: transform 0.55s ease;
}

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

.btn:hover::before {
  transform: translateX(-120%);
}

.btn-primary {
  color: #021006;
  background: linear-gradient(135deg, var(--green), #86f06c);
  box-shadow: 0 0 24px rgba(var(--green-rgb), 0.32);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.hero-contact {
  width: min(100%, 520px);
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(34, 220, 71, 0.12), transparent),
    rgba(6, 15, 16, 0.92);
  box-shadow: var(--shadow);
}

.hero-phone,
.mini-call,
.final-phone,
.launch-panel a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hero-phone svg,
.mini-call svg,
.final-phone svg,
.launch-panel a svg {
  width: 58px;
  height: 58px;
  padding: 13px;
  color: #fff;
  background: rgba(var(--green-rgb), 0.22);
  border: 2px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(var(--green-rgb), 0.55);
}

.hero-phone span,
.mini-call span,
.final-phone span,
.launch-panel a span {
  color: var(--green);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
}

.hero-phone small {
  display: block;
  color: var(--green-2);
  font-size: 1rem;
}

.hero-contact ul,
.final-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 22px;
  margin: 16px 0 0;
  padding: 0;
  color: #d5dedb;
  list-style: none;
}

.hero-contact li,
.final-panel li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-contact li svg,
.final-panel li svg {
  width: 17px;
  height: 17px;
  color: var(--green);
}

.hero-visual {
  position: relative;
  min-height: clamp(390px, 48vw, 585px);
  perspective: 1100px;
}

.browser-window {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 14, 16, 0.94);
  box-shadow:
    0 30px 50px rgba(0, 0, 0, 0.55),
    0 0 42px rgba(12, 217, 196, 0.16);
  animation: windowPulse 4.6s ease-in-out infinite;
}

.main-window {
  inset: 0 2% 20% 4%;
  transform: rotateY(-10deg) rotateX(4deg);
  animation: floatWindow 6s ease-in-out infinite, windowPulse 4.6s ease-in-out infinite;
}

.shop-window {
  width: 55%;
  height: 29%;
  right: 0;
  bottom: 4%;
  transform: rotateY(-7deg) rotateX(2deg);
  z-index: 3;
  animation: floatWindow 7.2s ease-in-out infinite reverse, windowPulse 5.2s ease-in-out infinite;
}

.stats-window {
  width: 47%;
  height: 28%;
  left: 0;
  bottom: 7%;
  z-index: 4;
  transform: rotateY(-5deg) rotateX(3deg);
  animation: floatWindow 6.6s ease-in-out infinite, windowPulse 5s ease-in-out infinite;
}

.window-dots {
  position: absolute;
  top: 13px;
  right: 16px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.window-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5d59;
}

.window-dots span:nth-child(2) {
  background: #f9d54f;
}

.window-dots span:nth-child(3) {
  background: #2bdb67;
}

.window-label {
  position: absolute;
  top: 38px;
  right: 20px;
  z-index: 2;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
}

.window-nav {
  position: absolute;
  top: 38px;
  left: 20px;
  z-index: 2;
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.62rem;
  font-weight: 800;
}

.neon-city {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 52% 78%, rgba(var(--green-rgb), 0.55), transparent 27%),
    linear-gradient(180deg, rgba(4, 12, 18, 0.2), rgba(0, 0, 0, 0.7)),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(12, 217, 196, 0.08) 42px 43px);
}

.neon-city::before,
.neon-city::after {
  content: "";
  position: absolute;
  right: 12%;
  left: 9%;
  height: 2px;
  bottom: 28%;
  background: linear-gradient(90deg, transparent, var(--green), var(--cyan), transparent);
  box-shadow: 0 0 24px var(--green);
}

.neon-city::after {
  bottom: 22%;
  opacity: 0.55;
  filter: blur(4px);
}

.scan-line {
  position: absolute;
  right: 9%;
  left: 9%;
  top: 16%;
  height: 64px;
  background: linear-gradient(180deg, transparent, rgba(var(--green-rgb), 0.16), transparent);
  border-top: 1px solid rgba(var(--green-rgb), 0.55);
  animation: scanMove 4.8s ease-in-out infinite;
}

.tower {
  position: absolute;
  bottom: 28%;
  width: 11%;
  border: 1px solid rgba(12, 217, 196, 0.62);
  background: linear-gradient(180deg, rgba(12, 217, 196, 0.16), rgba(var(--green-rgb), 0.07));
  box-shadow: inset 0 0 18px rgba(12, 217, 196, 0.1);
}

.t1 { right: 24%; height: 30%; }
.t2 { right: 36%; height: 43%; }
.t3 { right: 49%; height: 23%; }
.t4 { right: 61%; height: 38%; border-color: rgba(var(--green-rgb), 0.72); }
.t5 { right: 72%; height: 19%; }

.orbit {
  position: absolute;
  right: 42%;
  bottom: 35%;
  width: 38px;
  height: 38px;
  border: 2px solid var(--green);
  box-shadow: 0 0 18px rgba(var(--green-rgb), 0.8);
}

.product-row {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 38px 18px 18px;
  background: #eef2f3;
}

.product-row span {
  position: relative;
  border-radius: 6px;
  background:
    radial-gradient(ellipse at center 35%, #101312 0 18%, transparent 19%),
    linear-gradient(#fff, #d8dddf);
  box-shadow: inset 0 -35px 0 rgba(0, 0, 0, 0.07);
}

.product-row span::after {
  content: "";
  position: absolute;
  right: 14%;
  left: 14%;
  bottom: 14px;
  height: 5px;
  border-radius: 999px;
  background: #d2d8da;
}

.dash-head {
  position: absolute;
  top: 14px;
  right: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
}

.dash-head span {
  width: 28%;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.chart-line {
  position: absolute;
  inset: 34px 28px 38px;
  clip-path: polygon(0 72%, 14% 58%, 27% 63%, 39% 35%, 52% 47%, 66% 22%, 82% 36%, 100% 18%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(var(--green-rgb), 0.74), rgba(var(--green-rgb), 0.04));
}

.chart-bars {
  position: absolute;
  inset: auto 24px 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 60%;
}

.chart-bars span {
  width: 8px;
  border-radius: 999px 999px 0 0;
  background: rgba(12, 217, 196, 0.6);
  transform-origin: bottom;
  animation: barPulse 1.9s ease-in-out infinite;
}

.chart-bars span:nth-child(1) { height: 44%; animation-delay: -0.2s; }
.chart-bars span:nth-child(2) { height: 72%; animation-delay: -0.8s; }
.chart-bars span:nth-child(3) { height: 55%; animation-delay: -1.1s; }
.chart-bars span:nth-child(4) { height: 86%; animation-delay: -0.45s; }

.floating-code-card {
  position: absolute;
  right: 12%;
  top: 70%;
  z-index: 5;
  direction: ltr;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px 14px;
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(var(--green-rgb), 0.34);
  border-radius: var(--radius);
  color: #caffd1;
  background: rgba(1, 8, 9, 0.86);
  box-shadow: 0 0 28px rgba(var(--green-rgb), 0.22);
  animation: floatWindow 5.4s ease-in-out infinite reverse;
}

.floating-code-card span {
  font-family: Consolas, "Courier New", monospace;
  font-weight: 700;
  font-size: 0.86rem;
}

.floating-code-card b {
  grid-column: 1 / -1;
  width: 78%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.floating-code-card code {
  color: var(--cyan);
  font-weight: 900;
  text-shadow: 0 0 12px rgba(12, 217, 196, 0.75);
}

@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroVisualIn {
  from { opacity: 0; transform: translateX(-26px) scale(0.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes studioFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

@keyframes studioScan {
  0% { left: -24%; opacity: 0; }
  16%, 76% { opacity: 0.7; }
  100% { left: 112%; opacity: 0; }
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--green-rgb), 0.38); }
  50% { box-shadow: 0 0 0 7px rgba(var(--green-rgb), 0); }
}

@keyframes smartChipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes previewBar {
  0%, 100% { transform: scaleY(0.62); opacity: 0.58; }
  50% { transform: scaleY(1); opacity: 1; }
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: 12px 0 clamp(34px, 3vw, 46px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 0 64%, rgba(var(--green-rgb), 0.055) 64.2% 64.4%, transparent 64.6%),
    linear-gradient(24deg, transparent 0 72%, rgba(12, 217, 196, 0.045) 72.2% 72.4%, transparent 72.6%);
}

.hero-grid {
  grid-template-columns: minmax(430px, 1fr) minmax(500px, 1fr);
  gap: clamp(32px, 4vw, 56px);
  min-height: 600px;
}

.hero-content {
  position: relative;
  z-index: 3;
  animation: heroContentIn 0.7s ease both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 7px 13px;
  border: 1px solid rgba(var(--green-rgb), 0.25);
  border-radius: 999px;
  color: #fff;
  background: rgba(4, 13, 14, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  animation: statusPulse 2.2s ease-in-out infinite;
}

.hero-kicker-code {
  direction: ltr;
  padding-inline-start: 10px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--cyan);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero h1 {
  max-width: 650px;
  margin: 22px 0 18px;
  color: #fff;
  font-size: clamp(2.6rem, 3.85vw, 3.65rem);
  line-height: 1.12;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: var(--green);
  text-shadow: 0 0 24px rgba(var(--green-rgb), 0.3);
}

.hero p {
  max-width: 620px;
  color: #d4ded9;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.9;
}

.hero-actions {
  gap: 12px;
  margin-top: 26px;
}

.hero-actions .btn {
  gap: 10px;
  min-height: 54px;
  padding: 13px 22px;
}

.hero-actions .btn svg {
  width: 19px;
  height: 19px;
}

.hero-consult {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(100%, 620px);
  margin-top: 26px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(var(--green-rgb), 0.25);
  border-radius: 8px;
  background:
    linear-gradient(105deg, rgba(var(--green-rgb), 0.12), transparent 46%),
    rgba(5, 15, 16, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 16px 34px rgba(0, 0, 0, 0.24);
}

.hero-consult::before {
  content: "";
  position: absolute;
  inset-block: 12px;
  inset-inline-start: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--green), transparent);
  box-shadow: 0 0 14px rgba(var(--green-rgb), 0.65);
}

.consult-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(var(--green-rgb), 0.4);
  border-radius: 8px;
  color: var(--green);
  background: linear-gradient(145deg, rgba(var(--green-rgb), 0.18), rgba(12, 217, 196, 0.05));
  box-shadow: inset 0 0 18px rgba(var(--green-rgb), 0.08);
}

.consult-icon svg {
  width: 20px;
  height: 20px;
}

.hero-consult strong,
.hero-consult small {
  display: block;
}

.consult-copy {
  min-width: 0;
}

.consult-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
  color: var(--green-2);
  font-size: 0.62rem;
  font-weight: 800;
}

.consult-label svg {
  width: 12px;
  height: 12px;
}

.hero-consult strong {
  color: #fff;
  font-size: 0.96rem;
}

.hero-consult small {
  margin-top: 3px;
  color: #b9c5c0;
  font-size: 0.76rem;
}

.hero-consult > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 7px 10px;
  border: 1px solid rgba(var(--green-rgb), 0.28);
  border-radius: 7px;
  color: #fff;
  background: rgba(var(--green-rgb), 0.08);
  font-weight: 800;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hero-consult > a:hover {
  border-color: rgba(var(--green-rgb), 0.55);
  background: rgba(var(--green-rgb), 0.14);
  transform: translateY(-1px);
}

.consult-phone-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: rgba(var(--green-rgb), 0.13);
}

.consult-phone-icon svg {
  width: 15px;
  height: 15px;
}

.consult-phone-copy small,
.consult-phone-copy b {
  display: block;
}

.consult-phone-copy small {
  margin: 0 0 2px;
  color: #b9c5c0;
  font-size: 0.57rem;
  font-weight: 700;
}

.consult-phone-copy b {
  color: var(--green-2);
  font-size: 0.8rem;
  line-height: 1.2;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 620px);
  margin: 24px 0 0;
  padding: 0;
}

.hero-proof div {
  position: relative;
  padding-inline: 17px;
}

.hero-proof div:first-child {
  padding-inline-start: 0;
}

.hero-proof div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  inset-inline-end: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-proof dt {
  display: flex;
  justify-content: flex-start;
  min-height: 1.25em;
  color: var(--green-2);
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 18px rgba(var(--green-rgb), 0.22);
}

.hero-proof .counter {
  display: inline-block;
  min-width: 3.1ch;
  direction: ltr;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: #d4ded9;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 600px;
  isolation: isolate;
  perspective: 1200px;
  animation: heroVisualIn 0.8s 0.08s ease both;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 6% -4% 3%;
  z-index: -2;
  opacity: 0.58;
  background:
    linear-gradient(rgba(var(--green-rgb), 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--green-rgb), 0.075) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 49.5%, rgba(12, 217, 196, 0.11) 50%, transparent 50.5%);
  background-size: 44px 44px, 44px 44px, 110px 110px;
  clip-path: polygon(8% 0, 100% 9%, 92% 100%, 0 91%);
  mask-image: linear-gradient(180deg, transparent, black 16%, black 76%, transparent);
}

.product-studio {
  position: absolute;
  inset: 54px 16px 42px 10px;
  z-index: 2;
  direction: ltr;
  display: grid;
  grid-template-rows: 54px minmax(0, 1fr) 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #050b0d;
  box-shadow:
    0 36px 72px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(var(--green-rgb), 0.06),
    0 0 54px rgba(12, 217, 196, 0.13);
  transform: rotateY(2deg) rotateX(0.6deg);
  animation: studioFloat 6.5s ease-in-out infinite;
}

.studio-topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #091113;
}

.studio-dots {
  display: flex;
  gap: 6px;
}

.studio-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6159;
}

.studio-dots span:nth-child(2) { background: #f4ca4d; }
.studio-dots span:nth-child(3) { background: var(--green); }

.studio-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  color: #aebbb6;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.72rem;
}

.studio-address svg {
  width: 13px;
  height: 13px;
  color: var(--green);
}

.studio-address span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.studio-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--green-2);
  font-size: 0.7rem;
  font-weight: 800;
}

.studio-live svg {
  width: 14px;
  height: 14px;
}

.studio-body {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 0;
}

.code-panel,
.preview-panel {
  min-width: 0;
  min-height: 0;
}

.code-panel {
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(90deg, rgba(var(--green-rgb), 0.035) 1px, transparent 1px),
    #071012;
  background-size: 26px 100%;
}

.code-tabs,
.preview-toolbar {
  display: flex;
  align-items: center;
  min-height: 39px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  color: #7f8d88;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.67rem;
}

.code-tabs span {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.code-tabs span.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 -2px var(--green);
}

.code-lines {
  flex: 1;
  margin: 0;
  padding: clamp(19px, 3vw, 30px) 12px 12px 48px;
  color: #54615d;
  font-family: Consolas, "Courier New", monospace;
  font-size: clamp(0.66rem, 0.9vw, 0.8rem);
  line-height: 2.05;
}

.code-lines code {
  color: #d7e1dd;
  font-family: inherit;
  white-space: nowrap;
}

.code-purple { color: #d790ff; }
.code-green { color: #8df59b; }
.code-cyan { color: #47e8d7; }

.build-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 14px 14px;
  padding: 9px 10px;
  border: 1px solid rgba(var(--green-rgb), 0.2);
  border-radius: 6px;
  color: #bcebc2;
  background: rgba(var(--green-rgb), 0.07);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.66rem;
}

.build-status svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

.build-status b {
  margin-left: auto;
  color: var(--cyan);
}

.preview-panel {
  direction: rtl;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  background: #061011;
}

.preview-toolbar {
  direction: ltr;
  justify-content: space-between;
  padding: 0 13px;
}

.preview-toolbar svg {
  width: 13px;
  height: 13px;
}

.preview-canvas {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: calc(100% - 39px);
  overflow: hidden;
  padding: clamp(22px, 3vw, 38px) clamp(18px, 2.6vw, 30px) 18px;
  background:
    linear-gradient(145deg, rgba(var(--green-rgb), 0.16), transparent 42%),
    linear-gradient(32deg, rgba(12, 217, 196, 0.08), transparent 56%),
    #071314;
}

.preview-canvas::before {
  content: "</>";
  position: absolute;
  left: 18px;
  top: 16px;
  color: rgba(var(--green-rgb), 0.16);
  font-family: Consolas, "Courier New", monospace;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
}

.preview-canvas > *:not(.preview-chart) {
  position: relative;
  z-index: 2;
}

.preview-pill {
  display: inline-flex;
  padding: 5px 9px;
  border: 1px solid rgba(var(--green-rgb), 0.26);
  border-radius: 999px;
  color: var(--green-2);
  font-size: clamp(0.55rem, 0.7vw, 0.68rem);
  font-weight: 800;
}

.preview-canvas > strong {
  margin-top: 15px;
  color: #fff;
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
  line-height: 1.22;
}

.preview-canvas > strong em {
  color: var(--green);
  font-style: normal;
}

.preview-canvas > p {
  margin: 10px 0 0;
  color: #c6d1cd;
  font-size: clamp(0.62rem, 0.8vw, 0.76rem);
  line-height: 1.7;
}

.preview-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  padding: 8px 12px;
  border-radius: 5px;
  color: var(--on-green);
  background: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(var(--green-rgb), 0.26);
}

.preview-button svg {
  width: 12px;
  height: 12px;
}

.preview-metrics {
  display: flex;
  gap: 15px;
  margin-top: auto;
  direction: ltr;
  color: #aebbb6;
  font-size: clamp(0.5rem, 0.66vw, 0.64rem);
}

.preview-metrics span {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.preview-metrics b {
  color: #fff;
  font-size: 0.86rem;
}

.preview-chart {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 8%;
  height: 31%;
  padding: 0 9%;
  opacity: 0.35;
}

.preview-chart::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(var(--green-rgb), 0.3);
}

.preview-chart span {
  width: 8%;
  height: 68%;
  transform-origin: bottom;
  background: linear-gradient(180deg, var(--green), rgba(var(--green-rgb), 0.08));
  animation: previewBar 2.4s ease-in-out infinite;
}

.preview-chart span:nth-child(2) { height: 42%; animation-delay: -0.4s; }
.preview-chart span:nth-child(3) { height: 78%; animation-delay: -0.8s; }
.preview-chart span:nth-child(4) { height: 54%; animation-delay: -1.2s; }
.preview-chart span:nth-child(5) { height: 88%; animation-delay: -1.6s; }
.preview-chart span:nth-child(6) { height: 66%; animation-delay: -2s; }

.studio-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9eaba6;
  background: #081012;
  font-family: Consolas, "Courier New", monospace;
  font-size: clamp(0.56rem, 0.72vw, 0.67rem);
}

.studio-footer span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.studio-footer svg {
  width: 13px;
  height: 13px;
  color: var(--green);
}

.studio-scan {
  position: absolute;
  top: 54px;
  bottom: 44px;
  left: -24%;
  z-index: 5;
  width: 18%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(105, 255, 122, 0.11), transparent);
  transform: skewX(-10deg);
  animation: studioScan 5.8s linear infinite;
}

.tech-chip {
  position: absolute;
  z-index: 4;
  direction: ltr;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(var(--green-rgb), 0.34);
  border-radius: 999px;
  color: #e9fff0;
  background: rgba(3, 12, 13, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.36), 0 0 22px rgba(var(--green-rgb), 0.12);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.68rem;
  font-weight: 800;
  animation: smartChipFloat 4.8s ease-in-out infinite;
}

.tech-chip svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.chip-cloudflare {
  top: 20px;
  right: 0;
}

.chip-responsive {
  top: 76px;
  left: 0;
  animation-delay: -2.1s;
}

.performance-badge {
  position: absolute;
  left: 0;
  bottom: 5px;
  z-index: 4;
  direction: ltr;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-width: 212px;
  padding: 11px 13px;
  border: 1px solid rgba(var(--green-rgb), 0.3);
  border-radius: 8px;
  color: #fff;
  background: rgba(3, 12, 13, 0.94);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.4), 0 0 24px rgba(var(--green-rgb), 0.14);
  animation: smartChipFloat 5.5s -1.4s ease-in-out infinite;
}

.performance-badge > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green-2);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: inset 0 0 12px rgba(var(--green-rgb), 0.12);
}

.performance-badge strong,
.performance-badge small {
  display: block;
}

.performance-badge strong {
  font-size: 0.72rem;
}

.performance-badge small {
  margin-top: 3px;
  color: #9eaba6;
  font-size: 0.62rem;
}

.performance-badge > svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.clients,
.services,
.features,
.work,
.process,
.faq-section,
.final-cta {
  padding: clamp(32px, 5.4vw, 66px) 0;
}

.clients-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.clients h2,
.section-title span,
.process .section-title span {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 900;
}

.clients p,
.section-title h2,
.section-title p {
  margin: 0;
  color: #c4cfca;
}

.clients p {
  max-width: 430px;
  line-height: 1.8;
}

.client-proof {
  display: flex;
  align-items: center;
  gap: 20px;
}

.avatars {
  display: flex;
  direction: ltr;
}

.avatars span,
.avatars strong {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-inline-start: -12px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  color: #07100a;
  background: linear-gradient(135deg, #dbe9f2, #8fb7c9);
  font-weight: 900;
}

.avatars strong {
  color: #fff;
  background: linear-gradient(135deg, #1d7f31, #4fe067);
  border-color: rgba(var(--green-rgb), 0.55);
}

.client-proof p {
  max-width: 250px;
}

.client-proof b {
  display: block;
  color: #fff;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 42px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #dce5e1;
}

.logo-strip span {
  display: grid;
  min-height: 48px;
  place-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  opacity: 0.82;
}

.logo-strip svg {
  width: 26px;
  height: 26px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 28px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.35;
  color: #fff;
  font-weight: 600;
}

.services {
  padding-top: 24px;
}

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

.service-card,
.feature-card,
.work-card,
.steps article,
.faq-list details,
.footer-grid {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-card {
  min-height: 214px;
  padding: 29px 21px 24px;
  text-align: center;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.service-card svg {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  color: var(--green);
  filter: drop-shadow(0 0 12px rgba(var(--green-rgb), 0.45));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.service-card:hover svg {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 0 20px rgba(var(--green-rgb), 0.72));
}

.service-card h3,
.work-card h3,
.steps h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.45;
  color: #fff;
}

.service-card p,
.feature-card p,
.work-card p,
.steps p,
.faq-list p,
.footer-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.features {
  padding-top: 8px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 26px 22px;
  border-color: rgba(var(--green-rgb), 0.18);
  background:
    linear-gradient(145deg, rgba(var(--green-rgb), 0.09), transparent 42%),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(var(--green-rgb), 0.035) 34px 35px),
    var(--panel);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(120%);
  background: linear-gradient(110deg, transparent, rgba(var(--green-rgb), 0.12), transparent);
  transition: transform 0.75s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.feature-card:hover::before {
  transform: translateX(-120%);
}

.feature-card svg {
  position: relative;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  color: var(--green);
  filter: drop-shadow(0 0 16px rgba(var(--green-rgb), 0.52));
}

.feature-card h3 {
  position: relative;
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.08rem;
}

.feature-card p {
  position: relative;
}

.cta-band {
  padding: 0 0 clamp(34px, 6vw, 70px);
}

.cta-panel,
.launch-panel,
.final-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 38%, rgba(var(--green-rgb), 0.18), transparent 18rem),
    radial-gradient(circle at 92% 50%, rgba(12, 217, 196, 0.13), transparent 14rem),
    rgba(4, 13, 14, 0.93);
  box-shadow: var(--shadow);
}

.cta-panel {
  grid-template-columns: auto 1fr auto;
  padding: 24px 34px;
}

.cta-panel h2,
.launch-panel h2,
.final-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.35;
}

.cta-panel p,
.launch-panel p,
.final-panel p {
  margin: 0 0 16px;
  color: #b5c2bd;
  line-height: 1.7;
}

.mini-call span {
  font-size: 1rem;
}

.mini-call b {
  display: block;
  color: var(--green);
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
}

.chat-icon {
  width: 86px;
  height: 86px;
  color: var(--cyan);
  filter: drop-shadow(0 0 18px rgba(12, 217, 196, 0.66));
}

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

.work-card {
  overflow: hidden;
  padding: 0 0 22px;
}

.work-card h3,
.work-card p {
  padding: 0 22px;
}

.project-art {
  position: relative;
  height: 172px;
  margin-bottom: 18px;
  overflow: hidden;
  background: #0b1112;
}

.project-art span {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 4px;
  color: #041006;
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.landing-art {
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(255, 255, 255, 0.2) 45% 46%, transparent 47%),
    radial-gradient(circle at 72% 52%, rgba(255, 190, 110, 0.52), transparent 12%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 46px),
    linear-gradient(130deg, #0d1114, #1e292a 48%, #080a0c);
}

.landing-art::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 26px;
  width: 82px;
  height: 112px;
  transform: skew(-18deg);
  background: linear-gradient(135deg, #0b0d10, #30241d);
  box-shadow: -26px 22px 0 rgba(255, 255, 255, 0.05);
}

.project-art b {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.landing-art b:nth-of-type(1) {
  right: 28px;
  top: 28px;
  width: 72px;
  height: 8px;
}

.landing-art b:nth-of-type(2) {
  right: 28px;
  top: 46px;
  width: 112px;
  height: 8px;
}

.landing-art b:nth-of-type(3) {
  right: 28px;
  top: 64px;
  width: 88px;
  height: 8px;
}

.app-art {
  background:
    linear-gradient(130deg, rgba(var(--green-rgb), 0.12), transparent 35%),
    #f0f4f6;
}

.app-art::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 6px;
  background:
    linear-gradient(110deg, transparent 0 14%, rgba(24, 124, 245, 0.65) 15% 16%, transparent 17% 31%, rgba(24, 124, 245, 0.65) 32% 33%, transparent 34%),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.08) 0 2px, transparent 2px 22px);
}

.app-art b:nth-of-type(1),
.app-art b:nth-of-type(2),
.app-art b:nth-of-type(3) {
  left: 28px;
  background: rgba(18, 40, 48, 0.16);
}

.app-art b:nth-of-type(1) {
  top: 30px;
  width: 130px;
  height: 5px;
}

.app-art b:nth-of-type(2) {
  top: 62px;
  width: 80px;
  height: 80px;
  border: 5px solid rgba(var(--green-rgb), 0.28);
  border-right-color: rgba(38, 123, 255, 0.62);
  background: transparent;
}

.app-art b:nth-of-type(3) {
  right: 38px;
  bottom: 34px;
  width: 58px;
  height: 58px;
  border: 8px solid rgba(38, 123, 255, 0.28);
  border-top-color: rgba(var(--green-rgb), 0.72);
  background: transparent;
}

.store-art {
  background:
    radial-gradient(circle at 34% 45%, #0e1112 0 13%, transparent 14%),
    radial-gradient(circle at 62% 44%, #111514 0 12%, transparent 13%),
    linear-gradient(180deg, #f7f8f7, #dfe4e2);
}

.store-art::before {
  content: "";
  position: absolute;
  right: 54px;
  bottom: 34px;
  width: 62%;
  height: 12px;
  background: rgba(20, 24, 24, 0.28);
  filter: blur(12px);
}

.store-art b:nth-of-type(1),
.store-art b:nth-of-type(2),
.store-art b:nth-of-type(3) {
  width: 12px;
  height: 76px;
  bottom: 58px;
  background: #131918;
  transform-origin: bottom;
}

.store-art b:nth-of-type(1) {
  right: 34%;
  transform: rotate(10deg);
}

.store-art b:nth-of-type(2) {
  right: 49%;
  transform: rotate(-6deg);
}

.store-art b:nth-of-type(3) {
  right: 64%;
  transform: rotate(9deg);
}

.launch-strip {
  padding-bottom: 34px;
}

.launch-panel {
  grid-template-columns: auto 1fr auto;
  padding: 24px 34px;
}

.launch-panel > svg {
  width: 76px;
  height: 76px;
  color: var(--green);
}

.launch-panel a span {
  font-size: 1rem;
}

.launch-panel a b,
.final-phone b {
  display: block;
  color: var(--green);
  font-size: clamp(1.25rem, 2.8vw, 1.9rem);
}

.section-title.compact {
  margin-bottom: 20px;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.steps::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.steps article {
  position: relative;
  min-height: 182px;
  padding: 42px 16px 18px;
  text-align: center;
}

.steps b {
  position: absolute;
  top: -16px;
  right: 50%;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  transform: translateX(50%);
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  background: #071111;
  box-shadow: 0 0 16px rgba(var(--green-rgb), 0.35);
}

.steps svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  color: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.code-room {
  position: relative;
  min-height: 290px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 70%, rgba(var(--green-rgb), 0.2), transparent 28%),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(var(--green-rgb), 0.04) 48px 49px),
    linear-gradient(135deg, #040708, #0a1b18 48%, #020607);
}

.monitor {
  position: absolute;
  right: 12%;
  top: 26%;
  width: 45%;
  height: 34%;
  border: 1px solid rgba(var(--green-rgb), 0.24);
  border-radius: 6px;
  background:
    repeating-linear-gradient(0deg, rgba(var(--green-rgb), 0.24) 0 2px, transparent 2px 12px),
    #07100f;
  box-shadow: 0 0 24px rgba(var(--green-rgb), 0.2);
}

.monitor.small {
  right: 48%;
  top: 42%;
  width: 32%;
  height: 25%;
}

.code-room svg {
  position: absolute;
  left: 18%;
  top: 28%;
  width: 74px;
  height: 74px;
  color: var(--cyan);
  filter: drop-shadow(0 0 14px rgba(12, 217, 196, 0.8));
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: var(--border);
  box-shadow: 0 0 18px rgba(var(--green-rgb), 0.12);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 12px 18px;
  cursor: pointer;
  color: #e7efec;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "+";
  order: -1;
  color: var(--green);
  font-size: 1.45rem;
  font-weight: 900;
}

.faq-list details[open] summary::before {
  content: "-";
}

.faq-list p {
  padding: 0 18px 16px;
}

.final-panel {
  grid-template-columns: auto 1fr auto;
  padding: 28px 38px;
}

.question-mark {
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 22px rgba(var(--green-rgb), 0.8);
  background: radial-gradient(circle, rgba(var(--green-rgb), 0.18), transparent 68%);
}

.final-phone span {
  font-size: 1rem;
}

.site-footer {
  padding: 10px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 30px;
  padding: 34px;
}

.footer-grid h3 {
  margin: 0 0 16px;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 9px;
  color: #b5c0bc;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--green);
}

.footer-brand p {
  max-width: 330px;
  margin: 14px 0 20px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.copyright {
  margin-top: 22px;
  color: #96a29e;
  text-align: center;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.service-card:nth-child(2),
.feature-card:nth-child(2),
.work-card:nth-child(2),
.steps article:nth-child(2) { transition-delay: 0.06s; }
.service-card:nth-child(3),
.feature-card:nth-child(3),
.work-card:nth-child(3),
.steps article:nth-child(3) { transition-delay: 0.12s; }
.service-card:nth-child(4),
.feature-card:nth-child(4),
.steps article:nth-child(4) { transition-delay: 0.18s; }
.service-card:nth-child(5),
.steps article:nth-child(5) { transition-delay: 0.24s; }
.service-card:nth-child(6),
.steps article:nth-child(6) { transition-delay: 0.3s; }

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(300px, 0.94fr) minmax(340px, 1.06fr);
    gap: 26px;
    min-height: 560px;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-content {
    text-align: right;
  }

  .hero p,
  .hero h1,
  .hero-contact,
  .hero-consult,
  .hero-proof {
    margin-inline: 0;
  }

  .hero-actions,
  .hero-contact ul {
    justify-content: flex-start;
  }

  .hero-kicker {
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 5vw, 3.4rem);
  }

  .hero-consult {
    max-width: 100%;
    text-align: right;
  }

  .hero-proof {
    max-width: 100%;
  }

  .hero-visual {
    width: 100%;
    min-height: 520px;
    margin-inline: 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 0;
  }

  .steps::before {
    display: none;
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(100% - 28px, 720px);
  }

  .site-header {
    overflow: visible;
    background:
      linear-gradient(180deg, rgba(2, 8, 9, 0.99), rgba(2, 8, 9, 0.97)),
      #020809;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-wrap {
    grid-template-columns: auto 1fr auto;
    min-height: var(--header-tablet);
    gap: 12px;
  }

  .menu-toggle {
    display: grid;
    order: 3;
    justify-self: end;
  }

  .brand {
    order: 1;
    font-size: 1rem;
  }

  .call-pill {
    order: 2;
    justify-self: end;
    min-height: 44px;
    padding: 9px 13px;
  }

  .call-pill span {
    font-size: 0.92rem;
  }

  .call-pill small {
    display: none;
  }

  .call-pill svg {
    width: 21px;
    height: 21px;
  }

  .main-nav {
    position: fixed;
    top: var(--header-current, var(--header-tablet));
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-current, var(--header-tablet)));
    height: calc(100dvh - var(--header-current, var(--header-tablet)));
    max-height: calc(100vh - var(--header-current, var(--header-tablet)));
    max-height: calc(100dvh - var(--header-current, var(--header-tablet)));
    z-index: 95;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    padding: clamp(22px, 5vh, 44px) clamp(18px, 5vw, 44px) 28px;
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 16% 12%, rgba(var(--green-rgb), 0.18), transparent 18rem),
      radial-gradient(circle at 88% 82%, rgba(12, 217, 196, 0.13), transparent 18rem),
      linear-gradient(180deg, rgba(1, 8, 9, 0.99), rgba(0, 3, 4, 0.99));
    box-shadow: inset 0 1px 0 rgba(var(--green-rgb), 0.22), 0 28px 70px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      visibility 0s linear 0.28s;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    isolation: isolate;
  }

  .main-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 1px solid rgba(var(--green-rgb), 0.34);
    border-radius: 0;
    background:
      linear-gradient(rgba(var(--green-rgb), 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(var(--green-rgb), 0.035) 1px, transparent 1px),
      linear-gradient(135deg, transparent 0 48%, rgba(var(--green-rgb), 0.08) 49% 50%, transparent 51%);
    background-size: 42px 42px, 42px 42px, 92px 92px;
    mask-image: linear-gradient(180deg, black, rgba(0, 0, 0, 0.72));
    pointer-events: none;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .main-nav a {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
    justify-content: space-between;
    min-height: 60px;
    padding: 15px 22px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    color: #fff;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(var(--green-rgb), 0.025)),
      rgba(255, 255, 255, 0.035);
    font-size: clamp(1.05rem, 3vw, 1.35rem);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(10px);
    opacity: 0;
    transition:
      opacity 0.34s ease,
      transform 0.34s ease,
      background 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease;
  }

  .main-nav a::before {
    content: "</>";
    direction: ltr;
    order: 2;
    color: var(--green);
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.9rem;
    opacity: 0.78;
    text-shadow: 0 0 12px rgba(var(--green-rgb), 0.55);
  }

  .main-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav.is-open a:nth-child(1) { transition-delay: 0.04s; }
  .main-nav.is-open a:nth-child(2) { transition-delay: 0.08s; }
  .main-nav.is-open a:nth-child(3) { transition-delay: 0.12s; }
  .main-nav.is-open a:nth-child(4) { transition-delay: 0.16s; }
  .main-nav.is-open a:nth-child(5) { transition-delay: 0.2s; }

  .main-nav a:hover,
  .main-nav a.active {
    border-color: rgba(var(--green-rgb), 0.44);
    background: rgba(var(--green-rgb), 0.14);
  }

  .main-nav a::after {
    display: none;
  }

  .hero-kicker-code {
    display: none;
  }

  .hero p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 10px;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .hero-consult {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 9px;
    padding-block: 12px;
  }

  .hero-consult small {
    display: none;
  }

  .hero-consult > a {
    grid-column: auto;
    padding: 7px 9px;
    border: 1px solid rgba(var(--green-rgb), 0.28);
    font-size: 0.76rem;
  }

  .hero-proof {
    margin-top: 18px;
  }

  .hero-proof dd {
    font-size: 0.66rem;
  }

  .product-studio {
    inset-inline: 0;
  }

  .studio-body {
    grid-template-columns: 1fr;
  }

  .code-panel {
    display: none;
  }

  .preview-panel {
    border-left: 0;
  }

  .clients-top,
  .cta-panel,
  .launch-panel,
  .faq-grid,
  .final-panel,
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .clients p,
  .client-proof p,
  .footer-brand p {
    margin-inline: auto;
  }

  .client-proof,
  .mini-call,
  .launch-panel a,
  .final-phone {
    justify-content: center;
  }

  .logo-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .chat-icon,
  .launch-panel > svg,
  .question-mark {
    margin-inline: auto;
  }

  .final-panel ul {
    justify-content: center;
  }

  .socials {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
  }

  .hero-content {
    text-align: center;
  }

  .hero p,
  .hero h1,
  .hero-consult,
  .hero-proof {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-kicker {
    justify-content: center;
  }

  .hero-consult {
    grid-template-columns: auto minmax(0, 1fr);
    text-align: right;
  }

  .hero-consult small {
    display: block;
  }

  .hero-consult > a {
    grid-column: 1 / -1;
    justify-content: center;
    padding: 9px 10px;
    border: 1px solid rgba(var(--green-rgb), 0.28);
  }

  .hero-visual {
    width: 100%;
    min-height: 500px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    gap: 10px;
    min-height: var(--header-mobile);
  }

  .brand {
    gap: 9px;
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 35px;
    height: 29px;
  }

  .brand-mark span {
    width: 15px;
    height: 21px;
  }

  .call-pill {
    min-width: 44px;
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
  }

  .call-pill span {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .main-nav {
    top: var(--header-current, var(--header-mobile));
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100vh - var(--header-current, var(--header-mobile)));
    height: calc(100dvh - var(--header-current, var(--header-mobile)));
    max-height: calc(100vh - var(--header-current, var(--header-mobile)));
    max-height: calc(100dvh - var(--header-current, var(--header-mobile)));
    gap: 10px;
    padding: 20px 14px 18px;
  }

  .main-nav::before {
    inset: 0;
    border-radius: 0;
  }

  .main-nav a {
    width: 100%;
    min-height: 56px;
    padding: 13px 16px;
    font-size: 1.05rem;
  }

  .hero {
    padding: 8px 0 36px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-visual {
    order: 1;
  }

  .hero-content {
    order: 2;
  }

  .hero-kicker {
    width: fit-content;
    max-width: 100%;
    flex-wrap: wrap;
    padding: 7px 10px;
    font-size: 0.76rem;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(2rem, 9.8vw, 2.8rem);
    line-height: 1.15;
  }

  .hero p {
    font-size: 0.94rem;
    line-height: 1.78;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-consult {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 11px;
    margin-top: 22px;
    padding: 12px;
  }

  .hero-consult > a {
    grid-column: 1 / -1;
    justify-content: center;
    padding: 9px 10px;
    border: 1px solid rgba(var(--green-rgb), 0.28);
  }

  .hero-proof {
    margin-top: 20px;
  }

  .hero-proof div {
    padding-inline: 8px;
  }

  .hero-proof dt {
    font-size: 1.18rem;
  }

  .hero-proof dd {
    font-size: 0.66rem;
    line-height: 1.45;
  }

  .hero-contact {
    padding: 16px 14px;
  }

  .hero-phone {
    justify-content: center;
  }

  .hero-phone svg,
  .mini-call svg,
  .final-phone svg,
  .launch-panel a svg {
    width: 48px;
    height: 48px;
    padding: 11px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-visual::before {
    inset: 5% -8% 2%;
  }

  .product-studio {
    inset: 34px 0 26px;
    grid-template-rows: 40px minmax(0, 1fr) 32px;
    transform: none;
  }

  .studio-topbar {
    gap: 7px;
    padding: 0 9px;
  }

  .studio-address {
    font-size: 0.56rem;
  }

  .studio-live {
    font-size: 0.56rem;
  }

  .studio-body {
    grid-template-columns: 1fr;
  }

  .code-panel {
    display: none;
  }

  .preview-panel {
    border-left: 0;
  }

  .preview-toolbar {
    min-height: 28px;
    padding-inline: 10px;
  }

  .preview-canvas {
    height: calc(100% - 28px);
    padding: 12px 16px 8px;
  }

  .preview-canvas > strong {
    margin-top: 8px;
    font-size: clamp(1.35rem, 6.9vw, 1.78rem);
    line-height: 1.14;
  }

  .preview-canvas > p {
    display: none;
  }

  .preview-pill {
    padding: 4px 7px;
    font-size: 0.5rem;
  }

  .preview-button {
    margin-top: 9px;
    padding: 6px 9px;
    font-size: 0.6rem;
  }

  .preview-metrics {
    display: none;
  }

  .preview-chart {
    height: 42%;
    opacity: 0.26;
  }

  .studio-footer {
    gap: 8px;
    font-size: 0.48rem;
  }

  .studio-footer svg {
    width: 11px;
    height: 11px;
  }

  .studio-scan {
    top: 40px;
    bottom: 32px;
  }

  .tech-chip {
    min-height: 28px;
    padding: 5px 8px;
    font-size: 0.56rem;
  }

  .chip-cloudflare {
    top: 0;
    right: 0;
  }

  .chip-responsive {
    top: 0;
    left: 0;
  }

  .performance-badge {
    left: 50%;
    bottom: 0;
    min-width: 184px;
    padding: 8px 10px;
    translate: -50% 0;
  }

  .performance-badge > span {
    width: 36px;
    height: 36px;
    font-size: 0.78rem;
  }

  .main-window {
    inset: 2% 0 24% 0;
  }

  .shop-window,
  .stats-window {
    width: 58%;
  }

  .shop-window {
    right: 0;
  }

  .stats-window {
    left: 0;
  }

  .clients-top {
    gap: 22px;
  }

  .client-proof {
    flex-direction: column;
  }

  .logo-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .service-grid,
  .features-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .cta-panel,
  .launch-panel,
  .final-panel,
  .footer-grid {
    padding: 22px 16px;
  }

  .project-art {
    height: 148px;
  }

  .code-room {
    min-height: 220px;
  }

  .question-mark {
    width: 96px;
    height: 96px;
    font-size: 4.4rem;
  }

  .floating-code-card {
    right: 8%;
    top: 73%;
    min-width: 156px;
    padding: 11px 13px;
  }

  .floating-code-card span {
    font-size: 0.72rem;
  }

  .code-rain {
    opacity: 0.35;
    font-size: 0.72rem;
  }
}

@keyframes clientsRail {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - var(--clients-half-gap, 6px))); }
}

@keyframes clientsSignal {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--green-rgb), 0.34); }
  50% { box-shadow: 0 0 0 7px rgba(var(--green-rgb), 0); }
}

.clients {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 5vw, 64px) 0 clamp(38px, 4vw, 54px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(115deg, rgba(var(--green-rgb), 0.055), transparent 34%),
    linear-gradient(180deg, rgba(3, 11, 12, 0.9), rgba(2, 8, 9, 0.72));
}

.clients::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(rgba(var(--green-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--green-rgb), 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
}

.clients-shell,
.clients-summary {
  position: relative;
  z-index: 2;
}

.clients-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
  align-items: end;
  gap: clamp(38px, 6vw, 82px);
}

.clients-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid rgba(var(--green-rgb), 0.25);
  border-radius: 999px;
  color: var(--green-2);
  background: rgba(var(--green-rgb), 0.075);
  font-size: 0.72rem;
  font-weight: 800;
}

.clients-kicker svg {
  width: 15px;
  height: 15px;
}

.clients h2 {
  max-width: 610px;
  margin: 15px 0 0;
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.28;
}

.clients h2 span {
  display: block;
  color: var(--green);
  text-shadow: 0 0 22px rgba(var(--green-rgb), 0.24);
}

.clients-intro p {
  max-width: 520px;
  margin: 0;
  color: #d5dfdb;
  font-size: 0.96rem;
  line-height: 1.9;
}

.clients-proofline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.client-mini-avatars {
  display: flex;
  flex: 0 0 auto;
  direction: ltr;
  padding-left: 8px;
}

.client-mini-avatars span,
.client-mini-avatars strong {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-left: -8px;
  border: 2px solid #071012;
  border-radius: 50%;
  color: #061009;
  background: linear-gradient(145deg, #e8f4ef, #8fbcb0);
  font-size: 0.72rem;
  font-weight: 900;
}

.client-mini-avatars strong {
  width: 44px;
  color: #fff;
  background: linear-gradient(145deg, #176c2c, #43e65d);
  border-color: rgba(2, 8, 9, 0.9);
}

.clients-proofline b,
.clients-proofline small {
  display: block;
}

.clients-proofline b {
  color: #fff;
  font-size: 0.85rem;
}

.clients-proofline small {
  margin-top: 3px;
  color: #aebbb6;
  font-size: 0.7rem;
}

.clients-marquee {
  --clients-gap: 12px;
  --clients-half-gap: 6px;
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: clamp(30px, 4vw, 46px);
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  direction: ltr;
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}

.clients-track {
  display: flex;
  width: max-content;
  gap: var(--clients-gap);
  padding-inline: 12px;
  will-change: transform;
  animation: clientsRail 30s linear infinite;
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

.clients-logo-group {
  display: flex;
  gap: var(--clients-gap);
}

.client-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 180px;
  min-height: 68px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent),
    rgba(5, 14, 15, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.client-logo:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--green-rgb), 0.34);
  background: rgba(var(--green-rgb), 0.07);
}

.client-logo-mark {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(var(--green-rgb), 0.25);
  border-radius: 7px;
  color: var(--green);
  background: rgba(var(--green-rgb), 0.07);
}

.client-logo-mark svg {
  width: 18px;
  height: 18px;
}

.client-logo strong,
.client-logo small {
  display: block;
  letter-spacing: 0;
}

.client-logo strong {
  color: #eef5f2;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.83rem;
}

.client-logo small {
  margin-top: 2px;
  color: #83908b;
  font-size: 0.6rem;
}

.clients-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(280px, 1.45fr);
  align-items: center;
  gap: 0;
  margin-top: 28px;
  padding-top: 26px;
}

.clients-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding-inline: 18px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.09);
}

.clients-stat:first-child {
  padding-inline-start: 0;
}

.clients-stat > svg {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  color: var(--green);
  filter: drop-shadow(0 0 10px rgba(var(--green-rgb), 0.25));
}

.clients-stat b,
.clients-stat small,
.clients-note small,
.clients-note strong {
  display: block;
}

.clients-stat b {
  color: #fff;
  font-size: 0.82rem;
}

.clients-stat small {
  margin-top: 3px;
  color: #98a59f;
  font-size: 0.64rem;
  line-height: 1.5;
}

.clients-note {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-inline-start: 22px;
}

.clients-note-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  animation: clientsSignal 2.3s ease-in-out infinite;
}

.clients-note small {
  color: var(--green-2);
  font-size: 0.62rem;
  font-weight: 800;
}

.clients-note strong {
  margin-top: 4px;
  color: #dce5e1;
  font-size: 0.74rem;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .clients-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .clients-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
  }

  .clients-intro p {
    margin-inline: 0;
  }

  .clients-proofline {
    margin-top: 0;
  }

  .clients-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .clients-note {
    grid-column: 1 / -1;
    margin-top: 22px;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 640px) {
  .clients {
    padding: 36px 0 32px;
  }

  .clients-heading,
  .clients-title-wrap {
    text-align: center;
  }

  .clients-kicker {
    justify-content: center;
  }

  .clients h2 {
    margin-top: 12px;
    font-size: clamp(1.8rem, 8.7vw, 2.35rem);
    line-height: 1.32;
  }

  .clients-intro {
    display: block;
  }

  .clients-intro p {
    margin-inline: auto;
    font-size: 0.9rem;
    line-height: 1.82;
  }

  .clients-proofline {
    justify-content: center;
    margin-top: 17px;
    text-align: right;
  }

  .clients-marquee {
    --clients-gap: 9px;
    --clients-half-gap: 4.5px;
    margin-top: 28px;
    padding-block: 9px;
    mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);
  }

  .clients-track {
    animation-duration: 24s;
  }

  .client-logo {
    width: 150px;
    min-height: 60px;
    padding: 8px 10px;
  }

  .client-logo-mark {
    width: 32px;
    height: 32px;
  }

  .clients-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 20px;
    padding-top: 18px;
  }

  .clients-stat {
    flex-direction: column;
    gap: 7px;
    padding-inline: 7px;
    text-align: center;
  }

  .clients-stat > svg {
    width: 26px;
    height: 26px;
  }

  .clients-stat b {
    font-size: 0.7rem;
  }

  .clients-stat small {
    font-size: 0.56rem;
  }

  .clients-note {
    justify-content: center;
    margin-top: 18px;
    padding-top: 16px;
    text-align: right;
  }

  .clients-note strong {
    font-size: 0.68rem;
  }
}

/* Services: structured cards with a consistent action area. */
.services {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 68px 0 78px;
  border-block: 1px solid rgba(255, 255, 255, 0.055);
  background:
    linear-gradient(180deg, rgba(2, 9, 10, 0.38), rgba(2, 7, 8, 0.86)),
    repeating-linear-gradient(90deg, transparent 0 89px, rgba(var(--green-rgb), 0.025) 89px 90px),
    #020708;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 17%, rgba(12, 217, 196, 0.045) 17% 17.15%, transparent 17.15% 100%),
    linear-gradient(70deg, transparent 0 78%, rgba(var(--green-rgb), 0.05) 78% 78.15%, transparent 78.15% 100%);
  mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
}

.services .container {
  position: relative;
  z-index: 1;
}

.services .section-title {
  width: min(100%, 760px);
  margin: 0 auto 36px;
}

.services .section-title > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0;
  padding: 6px 15px;
  border: 1px solid rgba(var(--green-rgb), 0.3);
  border-radius: 999px;
  color: #afffba;
  background: rgba(var(--green-rgb), 0.075);
  font-size: 0.86rem;
}

.services .section-title h2 {
  margin: 14px 0 0;
  font-size: 2.5rem;
  line-height: 1.28;
  font-weight: 800;
}

.services .section-lead {
  max-width: 650px;
  margin: 12px auto 0;
  color: rgba(239, 246, 242, 0.72);
  font-size: 0.98rem;
  line-height: 1.85;
}

.services .service-grid {
  align-items: stretch;
  gap: 16px;
}

.services .service-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 334px;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(var(--green-rgb), 0.055), transparent 42%),
    linear-gradient(180deg, rgba(12, 20, 22, 0.96), rgba(5, 11, 13, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 14px 38px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.services .service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--cyan), transparent);
  transform: scaleX(0.2);
  opacity: 0.28;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.services .service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--green-rgb), 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 20px 48px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(var(--green-rgb), 0.08);
}

.services .service-card:hover::before {
  transform: scaleX(1);
  opacity: 1;
}

.service-card-head {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  border: 1px solid rgba(var(--green-rgb), 0.28);
  border-radius: 8px;
  color: var(--green);
  background:
    linear-gradient(145deg, rgba(var(--green-rgb), 0.15), rgba(12, 217, 196, 0.035)),
    rgba(4, 14, 15, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-card .service-icon svg {
  width: 27px;
  height: 27px;
  margin: 0;
  filter: drop-shadow(0 0 10px rgba(var(--green-rgb), 0.3));
}

.service-icon--wordpress svg,
.service-icon--shopify svg,
.service-icon--landing svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon--wordpress svg {
  width: 31px !important;
  height: 31px !important;
}

.service-icon--shopify {
  color: #78f05f;
}

.service-icon--shopify svg,
.service-icon--landing svg {
  width: 30px !important;
  height: 30px !important;
}

.services .service-card h3 {
  min-height: 3.05em;
  margin: 20px 0 9px;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.52;
  text-align: center;
}

.services .service-card p {
  margin: 0;
  color: rgba(239, 246, 242, 0.69);
  font-size: 0.86rem;
  line-height: 1.8;
  text-align: center;
}

.service-card--accent {
  border-color: rgba(12, 217, 196, 0.34) !important;
  background:
    linear-gradient(145deg, rgba(12, 217, 196, 0.13), transparent 46%),
    linear-gradient(180deg, rgba(9, 24, 25, 0.98), rgba(4, 12, 14, 0.98)) !important;
}

.service-card--accent .service-icon {
  border-color: rgba(12, 217, 196, 0.38);
  color: #4cebdc;
  background: rgba(12, 217, 196, 0.1);
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: min(100%, 190px);
  min-height: 44px;
  margin-top: auto;
  padding: 10px 16px;
  border: 1px solid rgba(var(--green-rgb), 0.28);
  border-radius: 6px;
  color: #f8fffa;
  background: rgba(var(--green-rgb), 0.075);
  font-size: 0.82rem;
  font-weight: 800;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.service-card .service-link svg {
  width: 17px;
  height: 17px;
  margin: 0;
  color: var(--green);
  filter: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.service-link:hover,
.service-link:focus-visible {
  border-color: var(--green);
  color: var(--on-green);
  background: var(--green);
  box-shadow: 0 0 22px rgba(var(--green-rgb), 0.2);
  transform: translateY(-2px);
}

.service-card .service-link:hover svg,
.service-card .service-link:focus-visible svg,
.service-card:hover .service-link:hover svg {
  color: var(--on-green);
  filter: none;
  transform: translateX(-3px);
}

@media (max-width: 1120px) {
  .services .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services .service-card {
    min-height: 320px;
  }

  .services .service-card h3 {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .services {
    padding: 54px 0 60px;
  }

  .services .section-title {
    margin-bottom: 28px;
  }

  .services .section-title h2 {
    font-size: 2rem;
  }

  .services .section-lead {
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .services {
    padding: 44px 0 50px;
  }

  .services .section-title h2 {
    font-size: 1.72rem;
    line-height: 1.4;
  }

  .services .section-lead {
    max-width: 330px;
    margin-top: 10px;
    line-height: 1.75;
  }

  .services .service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services .service-card {
    min-height: 0;
    padding: 18px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .service-card .service-icon svg {
    width: 24px;
    height: 24px;
  }

  .services .service-card h3 {
    margin-top: 16px;
    font-size: 1.03rem;
  }

  .services .service-card p {
    font-size: 0.84rem;
  }

  .service-link {
    margin-top: 19px;
  }

}

@keyframes featureOrbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes featureOrbitSpinReverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes featureIconSignal {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--green-rgb), 0), inset 0 1px 0 rgba(255, 255, 255, 0.07); }
  50% { box-shadow: 0 0 28px rgba(var(--green-rgb), 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.07); }
}

.features {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 68px 0 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(3, 13, 14, 0.96), rgba(2, 8, 9, 0.98)),
    #020708;
}

.features::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 89px, rgba(12, 217, 196, 0.025) 89px 90px),
    repeating-linear-gradient(0deg, transparent 0 89px, rgba(var(--green-rgb), 0.022) 89px 90px);
  mask-image: linear-gradient(180deg, transparent, black 16%, black 84%, transparent);
}

.features .section-title {
  width: min(100%, 760px);
  margin: 0 auto 18px;
}

.features .section-title > span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 6px 15px;
  border: 1px solid rgba(var(--green-rgb), 0.3);
  border-radius: 999px;
  color: #afffba;
  background: rgba(var(--green-rgb), 0.075);
  font-size: 0.86rem;
}

.features .section-title h2 {
  margin: 14px 0 0;
  color: #fff;
  font-size: 2.35rem;
  line-height: 1.3;
  font-weight: 800;
}

.features .section-lead {
  max-width: 620px;
  margin: 11px auto 0;
  color: rgba(239, 246, 242, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

.features-carousel {
  position: relative;
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
}

.feature-stage {
  position: relative;
  height: 400px;
  overflow: hidden;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.feature-stage::before,
.feature-stage::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

.feature-stage::before {
  width: 570px;
  height: 570px;
  border: 1px dashed rgba(var(--green-rgb), 0.16);
  animation: featureOrbitSpin 24s linear infinite;
}

.feature-stage::after {
  width: 360px;
  height: 360px;
  border: 1px solid rgba(12, 217, 196, 0.1);
  box-shadow:
    0 0 60px rgba(12, 217, 196, 0.035),
    inset 0 0 50px rgba(var(--green-rgb), 0.025);
  animation: featureOrbitSpinReverse 18s linear infinite;
}

.features-carousel:hover .feature-stage::before,
.features-carousel:hover .feature-stage::after {
  animation-play-state: paused;
}

.feature-stage .feature-card {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: flex;
  width: min(430px, 42vw);
  min-height: 280px;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  opacity: 0;
  color: #fff;
  text-align: center;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(var(--green-rgb), 0.09), transparent 48%),
    linear-gradient(180deg, rgba(10, 21, 23, 0.985), rgba(4, 11, 13, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 58px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%) scale(0.7);
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s ease,
    border-color 0.5s ease,
    filter 0.5s ease;
  will-change: transform, opacity;
}

.feature-stage .feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  transform: none;
  background: linear-gradient(90deg, transparent, var(--green), var(--cyan), transparent);
  opacity: 0.78;
  transition: none;
}

.feature-stage .feature-card[data-position="0"] {
  z-index: 4;
  opacity: 1;
  border-color: rgba(var(--green-rgb), 0.38);
  pointer-events: auto;
  filter: none;
  transform: translate(-50%, -50%) translateZ(70px) scale(1);
}

.feature-stage .feature-card[data-position="-1"] {
  z-index: 2;
  opacity: 0.36;
  filter: saturate(0.65);
  transform: translate(-130%, -50%) translateZ(-70px) rotateY(-12deg) scale(0.78);
}

.feature-stage .feature-card[data-position="1"] {
  z-index: 2;
  opacity: 0.36;
  filter: saturate(0.65);
  transform: translate(30%, -50%) translateZ(-70px) rotateY(12deg) scale(0.78);
}

.feature-stage .feature-card[data-position="-2"],
.feature-stage .feature-card[data-position="2"] {
  z-index: 1;
  opacity: 0;
  transform: translate(-50%, -50%) translateZ(-180px) scale(0.62);
}

.feature-card-top {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.feature-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border: 1px solid rgba(var(--green-rgb), 0.32);
  border-radius: 8px;
  color: var(--green);
  background: rgba(var(--green-rgb), 0.09);
  animation: featureIconSignal 3.2s ease-in-out infinite;
}

.feature-stage .feature-icon svg {
  position: static;
  width: 29px;
  height: 29px;
  margin: 0;
  color: currentColor;
  filter: drop-shadow(0 0 12px rgba(var(--green-rgb), 0.32));
}

.feature-eyebrow {
  position: relative;
  margin-top: 22px;
  color: #83ee91;
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
}

.feature-stage .feature-card h3 {
  position: relative;
  margin: 7px 0 10px;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.45;
  text-align: center;
}

.feature-stage .feature-card p {
  position: relative;
  margin: 0;
  color: rgba(239, 246, 242, 0.72);
  font-size: 0.91rem;
  line-height: 1.85;
  text-align: center;
}

.feature-controls {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: -5px;
}

.feature-nav {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid rgba(var(--green-rgb), 0.26);
  border-radius: 50%;
  color: #eaffed;
  background: rgba(7, 17, 18, 0.96);
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.feature-nav:hover,
.feature-nav:focus-visible {
  border-color: var(--green);
  color: var(--on-green);
  background: var(--green);
  transform: translateY(-2px);
}

.feature-nav svg {
  width: 20px;
  height: 20px;
}

.feature-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  direction: ltr;
}

.feature-dot {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.feature-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, border-radius 0.25s ease, background-color 0.25s ease;
}

.feature-dot.is-active::before {
  width: 20px;
  border-radius: 4px;
  background: var(--green);
  box-shadow: 0 0 12px rgba(var(--green-rgb), 0.38);
}

@media (max-width: 1024px) {
  .features {
    padding: 58px 0 64px;
  }

  .features .section-title h2 {
    font-size: 2rem;
  }

  .feature-stage {
    height: 380px;
  }

  .feature-stage .feature-card {
    width: min(420px, 58vw);
    min-height: 270px;
  }

  .feature-stage .feature-card[data-position="-1"] {
    transform: translate(-115%, -50%) translateZ(-70px) rotateY(-10deg) scale(0.76);
  }

  .feature-stage .feature-card[data-position="1"] {
    transform: translate(15%, -50%) translateZ(-70px) rotateY(10deg) scale(0.76);
  }
}

@media (max-width: 640px) {
  .features {
    padding: 46px 0 52px;
  }

  .features .section-title {
    margin-bottom: 8px;
  }

  .features .section-title h2 {
    font-size: 1.68rem;
    line-height: 1.4;
  }

  .features .section-lead {
    max-width: 330px;
    font-size: 0.88rem;
    line-height: 1.75;
  }

  .feature-stage {
    height: 350px;
  }

  .feature-stage::before {
    width: 390px;
    height: 390px;
  }

  .feature-stage::after {
    width: 250px;
    height: 250px;
  }

  .feature-stage .feature-card {
    width: calc(100% - 28px);
    min-height: 260px;
    padding: 20px;
  }

  .feature-stage .feature-card[data-position="-1"] {
    opacity: 0.16;
    transform: translate(-128%, -50%) translateZ(-90px) scale(0.76);
  }

  .feature-stage .feature-card[data-position="1"] {
    opacity: 0.16;
    transform: translate(28%, -50%) translateZ(-90px) scale(0.76);
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .feature-stage .feature-icon svg {
    width: 26px;
    height: 26px;
  }

  .feature-eyebrow {
    margin-top: 18px;
  }

  .feature-stage .feature-card h3 {
    font-size: 1.18rem;
  }

  .feature-stage .feature-card p {
    font-size: 0.85rem;
  }

  .feature-controls {
    gap: 12px;
    margin-top: -8px;
  }

  .feature-nav {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}

@keyframes ctaContactSignal {
  0%, 100% {
    border-color: rgba(var(--green-rgb), 0.35);
    box-shadow: 0 0 0 rgba(var(--green-rgb), 0);
  }
  50% {
    border-color: rgba(12, 217, 196, 0.62);
    box-shadow: 0 0 26px rgba(12, 217, 196, 0.16);
  }
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 58px 0 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background:
    repeating-linear-gradient(90deg, transparent 0 89px, rgba(var(--green-rgb), 0.022) 89px 90px),
    linear-gradient(180deg, #020809, #020607);
}

.cta-band .cta-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 44px;
  overflow: hidden;
  padding: 42px 46px;
  border: 1px solid rgba(var(--green-rgb), 0.3);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(var(--green-rgb), 0.09), transparent 38%),
    linear-gradient(180deg, rgba(8, 20, 21, 0.98), rgba(3, 10, 12, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 22px 64px rgba(0, 0, 0, 0.32),
    0 0 34px rgba(var(--green-rgb), 0.07);
}

.cta-band .cta-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--cyan), transparent);
}

.cta-band .cta-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 47px, rgba(12, 217, 196, 0.028) 47px 48px),
    repeating-linear-gradient(0deg, transparent 0 47px, rgba(var(--green-rgb), 0.022) 47px 48px);
  mask-image: linear-gradient(90deg, black, transparent 76%);
}

.cta-content,
.cta-contact {
  position: relative;
  z-index: 1;
}

.cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 13px;
  border: 1px solid rgba(var(--green-rgb), 0.28);
  border-radius: 999px;
  color: #baffc3;
  background: rgba(var(--green-rgb), 0.075);
  font-size: 0.78rem;
  font-weight: 800;
}

.cta-kicker svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.cta-band .cta-panel h2 {
  max-width: 690px;
  margin: 17px 0 10px;
  color: #fff;
  font-size: 2.45rem;
  line-height: 1.3;
  font-weight: 850;
}

.cta-band .cta-panel h2 span {
  color: var(--green);
}

.cta-band .cta-panel p {
  max-width: 650px;
  margin: 0;
  color: rgba(239, 246, 242, 0.74);
  font-size: 0.96rem;
  line-height: 1.85;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.cta-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
}

.cta-points svg {
  width: 17px;
  height: 17px;
  color: var(--green);
}

.cta-contact {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding-inline-start: 38px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.cta-contact-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(var(--green-rgb), 0.35);
  border-radius: 8px;
  color: #68eee1;
  background: rgba(12, 217, 196, 0.075);
  animation: ctaContactSignal 3.2s ease-in-out infinite;
}

.cta-contact-icon svg {
  width: 28px;
  height: 28px;
}

.cta-contact-label {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.75rem;
  font-weight: 700;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 8px;
  color: #fff;
  direction: ltr;
}

.cta-phone > svg {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 9px;
  border: 1px solid rgba(var(--green-rgb), 0.5);
  border-radius: 50%;
  color: #fff;
  background: rgba(var(--green-rgb), 0.13);
  box-shadow: 0 0 18px rgba(var(--green-rgb), 0.14);
}

.cta-phone span {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cta-phone small {
  color: #9afca7;
  font-size: 0.68rem;
  line-height: 1.3;
}

.cta-phone b {
  color: var(--green);
  font-family: Arial, sans-serif;
  font-size: 1.42rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 310px);
  min-height: 48px;
  margin-top: 17px;
  padding: 11px 17px;
  border: 1px solid var(--green);
  border-radius: 6px;
  color: var(--on-green);
  background: var(--green);
  box-shadow: 0 10px 30px rgba(var(--green-rgb), 0.18);
  font-size: 0.84rem;
  font-weight: 900;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  background: var(--green-2);
  box-shadow: 0 13px 34px rgba(var(--green-rgb), 0.28);
  transform: translateY(-2px);
}

.cta-button svg {
  width: 18px;
  height: 18px;
}

.cta-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
  line-height: 1.5;
}

.cta-note svg {
  width: 14px;
  height: 14px;
  color: rgba(var(--green-rgb), 0.8);
}

@media (max-width: 1024px) {
  .cta-band {
    padding: 48px 0 54px;
  }

  .cta-band .cta-panel {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.72fr);
    gap: 30px;
    padding: 34px 30px;
  }

  .cta-band .cta-panel h2 {
    font-size: 2rem;
  }

  .cta-contact {
    padding-inline-start: 28px;
  }

  .cta-button {
    padding-inline: 10px;
    font-size: 0.76rem;
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .cta-band .cta-panel {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .cta-band .cta-panel h2,
  .cta-band .cta-panel p {
    margin-inline: auto;
  }

  .cta-kicker,
  .cta-points {
    justify-content: center;
  }

  .cta-contact {
    padding: 28px 0 0;
    border-inline-start: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 640px) {
  .cta-band {
    padding: 36px 0 42px;
  }

  .cta-band .cta-panel {
    gap: 24px;
    padding: 25px 18px;
  }

  .cta-band .cta-panel h2 {
    margin-top: 14px;
    font-size: 1.68rem;
    line-height: 1.42;
  }

  .cta-band .cta-panel p {
    font-size: 0.86rem;
    line-height: 1.75;
  }

  .cta-points {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 9px;
    margin-top: 18px;
  }

  .cta-contact {
    padding-top: 23px;
  }

  .cta-contact-icon {
    width: 52px;
    height: 52px;
  }

  .cta-contact-icon svg {
    width: 25px;
    height: 25px;
  }

  .cta-phone b {
    font-size: 1.28rem;
  }

  .cta-button {
    width: 100%;
  }
}

.work {
  position: relative;
  overflow: hidden;
  padding: 70px 0 78px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background:
    repeating-linear-gradient(90deg, transparent 0 89px, rgba(12, 217, 196, 0.022) 89px 90px),
    linear-gradient(180deg, #031012, #020708);
}

.work .section-title {
  width: min(100%, 820px);
  margin: 0 auto 34px;
}

.work .section-title > span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 6px 15px;
  border: 1px solid rgba(var(--green-rgb), 0.3);
  border-radius: 999px;
  color: #afffba;
  background: rgba(var(--green-rgb), 0.075);
  font-size: 0.86rem;
}

.work .section-title h2 {
  margin: 14px 0 0;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 800;
}

.work .section-lead {
  max-width: 680px;
  margin: 11px auto 0;
  color: rgba(239, 246, 242, 0.7);
  font-size: 0.94rem;
  line-height: 1.8;
}

.portfolio-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.55fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(4, 11, 13, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 26px 72px rgba(0, 0, 0, 0.38);
}

.portfolio-browser {
  min-width: 0;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.09);
  background: #061012;
}

.portfolio-toolbar {
  display: grid;
  grid-template-columns: auto minmax(150px, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 9px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #081315;
  direction: ltr;
}

.browser-lights {
  display: flex;
  gap: 6px;
}

.browser-lights span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.browser-lights span:nth-child(1) { background: #ff6961; }
.browser-lights span:nth-child(2) { background: #f7c94b; }
.browser-lights span:nth-child(3) { background: #55c96c; }

.browser-address {
  display: flex;
  min-width: 0;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.56);
  background: rgba(1, 6, 7, 0.55);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  direction: ltr;
}

.browser-address svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: #6deb7c;
}

.browser-address span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-tools {
  display: flex;
  gap: 6px;
}

.browser-tool {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.browser-tool:hover,
.browser-tool:focus-visible,
.browser-tool.is-active {
  border-color: rgba(var(--green-rgb), 0.38);
  color: var(--green);
  background: rgba(var(--green-rgb), 0.08);
}

.browser-tool svg {
  width: 17px;
  height: 17px;
}

.portfolio-canvas {
  display: grid;
  height: 530px;
  place-items: stretch;
  padding: 15px;
  background:
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(var(--green-rgb), 0.025) 31px 32px),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(12, 217, 196, 0.022) 31px 32px),
    #040a0c;
}

.portfolio-screen {
  width: 100%;
  height: 100%;
  min-width: 0;
  margin-inline: auto;
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  scrollbar-color: rgba(var(--green-rgb), 0.5) rgba(0, 0, 0, 0.12);
  scrollbar-width: thin;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.portfolio-screen::-webkit-scrollbar { width: 7px; }
.portfolio-screen::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.12); }
.portfolio-screen::-webkit-scrollbar-thumb { border-radius: 5px; background: rgba(var(--green-rgb), 0.55); }

.portfolio-showcase.is-mobile-preview .portfolio-screen {
  width: min(100%, 360px);
}

.portfolio-screen.is-refreshing {
  opacity: 0.24;
}

.project-view {
  display: none;
  min-height: 100%;
}

.project-view.is-active {
  display: block;
}

.project-page {
  min-height: 780px;
  color: #111;
  font-family: Arial, sans-serif;
}

.preview-site-header {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 28px;
}

.preview-site-header strong {
  letter-spacing: 2px;
}

.preview-site-header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.68rem;
}

.preview-site-header button,
.architecture-copy button,
.store-hero button,
.dashboard-section-title button {
  border: 0;
  border-radius: 3px;
  cursor: default;
  font-family: inherit;
}

.architecture-preview {
  background: #f2f3ef;
}

.architecture-header {
  color: #eff5f2;
  background: #101716;
}

.architecture-header button {
  padding: 8px 12px;
  color: #101716;
  background: #c7ed7b;
  font-size: 0.65rem;
  font-weight: 700;
}

.architecture-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  min-height: 365px;
  background: #e8ebe5;
}

.architecture-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 38px;
}

.architecture-copy small,
.architecture-details small,
.store-hero small {
  color: #55705e;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.architecture-copy h3,
.store-hero h3 {
  max-width: 470px;
  margin: 12px 0 11px;
  color: #111817;
  font-size: 2.55rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.architecture-copy p,
.store-hero p {
  max-width: 390px;
  margin: 0;
  color: #53605d;
  font-size: 0.76rem;
  line-height: 1.6;
}

.architecture-copy button,
.store-hero button {
  margin-top: 22px;
  padding: 10px 14px;
  color: #fff;
  background: #151d1b;
  font-size: 0.68rem;
}

.architecture-visual {
  position: relative;
  overflow: hidden;
  background: #273332;
}

.architecture-visual span {
  position: absolute;
  bottom: 0;
  width: 29%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #51615f;
}

.architecture-visual span::before {
  content: "";
  position: absolute;
  inset: 10px;
  background: repeating-linear-gradient(0deg, rgba(218, 241, 176, 0.55) 0 3px, transparent 3px 28px);
}

.architecture-visual span:nth-child(1) { left: 6%; height: 63%; transform: skewY(-8deg); }
.architecture-visual span:nth-child(2) { left: 35%; height: 82%; background: #657370; }
.architecture-visual span:nth-child(3) { right: 6%; height: 70%; transform: skewY(7deg); }
.architecture-visual b {
  position: absolute;
  right: 12%;
  top: 12%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #d8f49b;
  box-shadow: 0 0 48px rgba(216, 244, 155, 0.28);
}

.preview-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #111817;
}

.preview-stat-row div {
  padding: 20px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.preview-stat-row strong,
.preview-stat-row span {
  display: block;
}

.preview-stat-row strong { color: #d4f49a; font-size: 1.35rem; }
.preview-stat-row span { margin-top: 4px; color: #a7b1ae; font-size: 0.62rem; }

.architecture-details {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  padding: 38px;
}

.architecture-details h4 {
  margin: 9px 0 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.architecture-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.architecture-detail-grid span {
  min-height: 118px;
  background: #ccd2ca;
}

.architecture-detail-grid span:nth-child(2) { background: #86948f; }
.architecture-detail-grid span:nth-child(3) { background: #35423f; }

.dashboard-preview {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  background: #eef2f5;
}

.dashboard-sidebar {
  display: flex;
  min-height: 780px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 21px 0;
  color: #8ea1a7;
  background: #172328;
}

.dashboard-sidebar strong {
  margin-bottom: 18px;
  color: #65e887;
  font-size: 0.78rem;
  letter-spacing: 1px;
}

.dashboard-sidebar svg { width: 18px; height: 18px; }

.dashboard-main {
  min-width: 0;
  padding: 24px;
}

.dashboard-topbar,
.dashboard-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-topbar small,
.dashboard-section-title small {
  color: #819097;
  font-size: 0.62rem;
}

.dashboard-topbar h3,
.dashboard-section-title h4 {
  margin: 3px 0 0;
  color: #18272d;
}

.dashboard-topbar h3 { font-size: 1.42rem; }
.dashboard-topbar > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #1d6d52;
  font-size: 0.68rem;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.dashboard-metrics > div,
.dashboard-chart,
.dashboard-table {
  border: 1px solid #dce4e7;
  border-radius: 5px;
  background: #fff;
}

.dashboard-metrics > div { padding: 15px; }
.dashboard-metrics small { display: block; color: #7c8c92; font-size: 0.6rem; }
.dashboard-metrics strong { display: inline-block; margin-top: 9px; color: #16262b; font-size: 1.4rem; }
.dashboard-metrics em { margin-left: 7px; color: #1b9a60; font-size: 0.58rem; font-style: normal; }

.dashboard-chart,
.dashboard-table {
  margin-top: 12px;
  padding: 17px;
}

.dashboard-section-title h4 { font-size: 0.86rem; }
.dashboard-section-title button { padding: 7px 9px; color: #58696f; background: #eef3f4; font-size: 0.58rem; }

.chart-bars {
  position: relative;
  inset: auto;
  display: flex;
  width: auto;
  height: 145px;
  align-items: flex-end;
  gap: 6%;
  margin-top: 16px;
  padding: 0 10px;
  border-bottom: 1px solid #d9e2e5;
  background: repeating-linear-gradient(0deg, transparent 0 35px, #eef2f3 35px 36px);
}

.chart-bars i {
  width: 7%;
  border-radius: 3px 3px 0 0;
  background: #3cc879;
}

.chart-bars i:nth-child(1) { height: 34%; }
.chart-bars i:nth-child(2) { height: 48%; }
.chart-bars i:nth-child(3) { height: 42%; }
.chart-bars i:nth-child(4) { height: 68%; }
.chart-bars i:nth-child(5) { height: 58%; }
.chart-bars i:nth-child(6) { height: 78%; }
.chart-bars i:nth-child(7) { height: 71%; }
.chart-bars i:nth-child(8) { height: 92%; background: #297bff; }

.dashboard-row {
  display: grid;
  grid-template-columns: 1fr 0.75fr auto;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #edf1f2;
  color: #718187;
  font-size: 0.62rem;
}

.dashboard-row:last-child { border-bottom: 0; }
.dashboard-row b { color: #25353a; }
.dashboard-row em { color: #168c59; font-style: normal; }

.store-preview { background: #f5f4f1; }
.store-announcement {
  padding: 7px 16px;
  color: #f4f2ed;
  background: #151514;
  text-align: center;
  font-size: 0.56rem;
}

.store-header {
  color: #191a19;
  background: #f5f4f1;
}

.store-header > div { display: flex; gap: 13px; }
.store-header svg { width: 16px; height: 16px; }

.store-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 350px;
  background: #dde2dc;
}

.store-hero > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 36px;
}

.store-hero h3 { font-size: 2.35rem; }
.store-hero button { background: #295844; }

.chair-scene {
  position: relative;
  overflow: hidden;
  background: #9ba79f;
}

.chair-scene span {
  position: absolute;
  left: 28%;
  top: 34%;
  width: 44%;
  height: 32%;
  border-radius: 45% 45% 12px 12px;
  background: #26312d;
  box-shadow: 0 64px 0 -19px #26312d;
}

.chair-scene b,
.chair-scene i {
  position: absolute;
  bottom: 14%;
  width: 5px;
  height: 31%;
  background: #26312d;
}

.chair-scene b { left: 34%; transform: rotate(7deg); }
.chair-scene i { right: 34%; transform: rotate(-7deg); }

.store-category-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid #d8d9d5;
}

.store-category-row span {
  padding: 15px;
  border-right: 1px solid #d8d9d5;
  color: #4e5753;
  text-align: center;
  font-size: 0.62rem;
}

.store-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 28px;
}

.store-products article { min-width: 0; }
.store-products h4 { margin: 10px 0 3px; font-size: 0.72rem; }
.store-products p { margin: 0; color: #6d7471; font-size: 0.62rem; }
.product-visual { position: relative; min-height: 145px; overflow: hidden; background: #e5e4df; }
.product-two { background: #d5dbd6; }
.product-three { background: #c5ccc8; }
.product-visual::before {
  content: "";
  position: absolute;
  left: 30%;
  top: 25%;
  width: 40%;
  height: 42%;
  border: 8px solid #5a6862;
  border-radius: 45% 45% 18% 18%;
}
.product-two::before { width: 5px; height: 60%; left: 50%; border: 0; border-radius: 0; background: #596a62; box-shadow: 0 -22px 0 17px #f7f2c7; }
.product-three::before { left: 20%; top: 42%; width: 60%; height: 12%; border: 0; border-radius: 0; background: #5b665f; box-shadow: -25px 32px 0 -14px #5b665f, 25px 32px 0 -14px #5b665f; }

.portfolio-sidebar {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px;
  background:
    linear-gradient(150deg, rgba(var(--green-rgb), 0.07), transparent 48%),
    #071113;
}

.portfolio-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.portfolio-meta-top span {
  color: #7ef58e;
  font-size: 0.72rem;
  font-weight: 800;
}

.portfolio-meta-top b {
  color: rgba(255, 255, 255, 0.28);
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  direction: ltr;
}

.portfolio-meta h3 {
  margin: 14px 0 8px;
  color: #fff;
  font-size: 1.42rem;
  line-height: 1.45;
}

.portfolio-meta p {
  margin: 0;
  color: rgba(239, 246, 242, 0.67);
  font-size: 0.82rem;
  line-height: 1.85;
}

.portfolio-tabs {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.portfolio-tab {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  min-width: 0;
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.62);
  text-align: right;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.portfolio-tab:hover,
.portfolio-tab:focus-visible,
.portfolio-tab.is-active {
  border-color: rgba(var(--green-rgb), 0.36);
  color: #fff;
  background: rgba(var(--green-rgb), 0.075);
  transform: translateX(-2px);
}

.portfolio-tab > span:first-child {
  color: rgba(255, 255, 255, 0.27);
  font-family: Arial, sans-serif;
  font-size: 0.65rem;
  direction: ltr;
}

.portfolio-tab > span:nth-child(2) { min-width: 0; }
.portfolio-tab b,
.portfolio-tab small { display: block; }
.portfolio-tab b { color: inherit; font-size: 0.78rem; letter-spacing: 0; }
.portfolio-tab small { margin-top: 3px; color: rgba(255, 255, 255, 0.4); font-size: 0.58rem; }
.portfolio-tab svg { width: 16px; height: 16px; color: var(--green); }

.portfolio-navigation {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

.portfolio-navigation button {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border: 1px solid rgba(var(--green-rgb), 0.25);
  border-radius: 50%;
  color: #fff;
  background: rgba(var(--green-rgb), 0.05);
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.portfolio-navigation button:hover,
.portfolio-navigation button:focus-visible {
  border-color: var(--green);
  color: var(--on-green);
  background: var(--green);
}

.portfolio-navigation button svg { width: 18px; height: 18px; }
.portfolio-navigation > span {
  position: relative;
  flex: 1;
  height: 3px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
}
.portfolio-navigation > span i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 33.333%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-page-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding: 9px 12px;
  color: #fff;
  border: 1px solid rgba(var(--green-rgb), 0.3);
  border-radius: 4px;
  background: rgba(var(--green-rgb), 0.07);
  font-size: 0.7rem;
  font-weight: 800;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.portfolio-page-link:hover,
.portfolio-page-link:focus-visible {
  border-color: var(--green);
  background: rgba(var(--green-rgb), 0.14);
}

.portfolio-page-link svg {
  width: 17px;
  height: 17px;
  color: var(--green);
}

.portfolio-showcase.is-mobile-preview .preview-site-header nav,
.portfolio-showcase.is-mobile-preview .architecture-header button,
.portfolio-showcase.is-mobile-preview .store-header nav {
  display: none;
}

.portfolio-showcase.is-mobile-preview .preview-site-header { padding-inline: 16px; }
.portfolio-showcase.is-mobile-preview .architecture-hero,
.portfolio-showcase.is-mobile-preview .store-hero { grid-template-columns: 1fr; }
.portfolio-showcase.is-mobile-preview .architecture-copy,
.portfolio-showcase.is-mobile-preview .store-hero > div:first-child { padding: 28px 22px; }
.portfolio-showcase.is-mobile-preview .architecture-copy h3,
.portfolio-showcase.is-mobile-preview .store-hero h3 { font-size: 2rem; }
.portfolio-showcase.is-mobile-preview .architecture-visual,
.portfolio-showcase.is-mobile-preview .chair-scene { min-height: 270px; }
.portfolio-showcase.is-mobile-preview .preview-stat-row { grid-template-columns: 1fr; }
.portfolio-showcase.is-mobile-preview .architecture-details { grid-template-columns: 1fr; padding: 28px 22px; }
.portfolio-showcase.is-mobile-preview .architecture-detail-grid { grid-template-columns: 1fr; }
.portfolio-showcase.is-mobile-preview .dashboard-preview { grid-template-columns: 50px minmax(0, 1fr); }
.portfolio-showcase.is-mobile-preview .dashboard-sidebar { min-height: 900px; }
.portfolio-showcase.is-mobile-preview .dashboard-sidebar strong { font-size: 0; }
.portfolio-showcase.is-mobile-preview .dashboard-sidebar strong::after { content: "N"; font-size: 0.8rem; }
.portfolio-showcase.is-mobile-preview .dashboard-main { padding: 16px 12px; }
.portfolio-showcase.is-mobile-preview .dashboard-metrics { grid-template-columns: 1fr; }
.portfolio-showcase.is-mobile-preview .dashboard-row { grid-template-columns: 1fr auto; }
.portfolio-showcase.is-mobile-preview .dashboard-row span { display: none; }
.portfolio-showcase.is-mobile-preview .store-products { grid-template-columns: 1fr; padding: 20px; }
.portfolio-showcase.is-mobile-preview .store-category-row { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 1024px) {
  .work {
    padding: 58px 0 64px;
  }

  .work .section-title h2 {
    font-size: 2rem;
  }

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

  .portfolio-browser {
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .portfolio-canvas {
    height: 500px;
  }

  .portfolio-sidebar {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    gap: 22px;
    padding: 24px;
  }

  .portfolio-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
  }

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

  .portfolio-tab > svg {
    display: none;
  }

  .portfolio-navigation {
    grid-column: 1 / -1;
    margin-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .work {
    padding: 44px 0 50px;
  }

  .work .section-title {
    margin-bottom: 25px;
  }

  .work .section-title h2 {
    font-size: 1.68rem;
    line-height: 1.4;
  }

  .work .section-lead {
    max-width: 330px;
    font-size: 0.86rem;
    line-height: 1.75;
  }

  .portfolio-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    min-height: 54px;
    padding: 8px;
  }

  .browser-lights {
    display: none;
  }

  .browser-address {
    min-height: 36px;
    padding-inline: 9px;
  }

  .browser-tool {
    width: 34px;
    height: 34px;
  }

  .portfolio-canvas {
    height: 440px;
    padding: 8px;
  }

  .portfolio-sidebar {
    display: block;
    padding: 20px 16px;
    text-align: center;
  }

  .portfolio-meta-top {
    justify-content: center;
  }

  .portfolio-meta-top b {
    display: none;
  }

  .portfolio-meta h3 {
    margin-top: 10px;
    font-size: 1.22rem;
  }

  .portfolio-meta p {
    font-size: 0.78rem;
  }

  .portfolio-tabs {
    display: grid;
    grid-auto-columns: minmax(165px, 0.78fr);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 8px;
    margin-top: 19px;
    padding-bottom: 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .portfolio-tabs::-webkit-scrollbar { display: none; }

  .portfolio-tab {
    min-height: 60px;
    scroll-snap-align: center;
  }

  .portfolio-navigation {
    margin-top: 17px;
    padding-top: 0;
  }

  .preview-site-header {
    padding-inline: 15px;
  }

  .preview-site-header nav,
  .architecture-header button,
  .store-header nav {
    display: none;
  }

  .architecture-hero,
  .store-hero {
    grid-template-columns: 1fr;
  }

  .architecture-copy,
  .store-hero > div:first-child {
    padding: 28px 22px;
  }

  .architecture-copy h3,
  .store-hero h3 {
    font-size: 2rem;
  }

  .architecture-visual,
  .chair-scene {
    min-height: 260px;
  }

  .preview-stat-row,
  .architecture-details,
  .architecture-detail-grid {
    grid-template-columns: 1fr;
  }

  .architecture-details { padding: 28px 22px; }
  .dashboard-preview { grid-template-columns: 50px minmax(0, 1fr); }
  .dashboard-sidebar { min-height: 900px; }
  .dashboard-sidebar strong { font-size: 0; }
  .dashboard-sidebar strong::after { content: "N"; font-size: 0.8rem; }
  .dashboard-main { padding: 16px 12px; }
  .dashboard-metrics { grid-template-columns: 1fr; }
  .dashboard-row { grid-template-columns: 1fr auto; }
  .dashboard-row span { display: none; }
  .store-products { grid-template-columns: 1fr; padding: 20px; }
  .store-category-row { grid-template-columns: repeat(2, 1fr); }
}

@keyframes deployCursorBlink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0.2; }
}

@keyframes pipelineSweep {
  from { transform: translateX(110%); }
  to { transform: translateX(-110%); }
}

@keyframes pipelineLivePulse {
  0%, 100% { opacity: 0.55; box-shadow: 0 0 0 rgba(var(--green-rgb), 0); }
  50% { opacity: 1; box-shadow: 0 0 18px rgba(var(--green-rgb), 0.2); }
}

.launch-strip {
  position: relative;
  overflow: hidden;
  padding: 58px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.055);
  background:
    repeating-linear-gradient(90deg, transparent 0 89px, rgba(var(--green-rgb), 0.022) 89px 90px),
    linear-gradient(180deg, #020708, #031012);
}

.launch-strip .launch-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.18fr) minmax(220px, 0.58fr);
  align-items: center;
  gap: 38px;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.deploy-console {
  overflow: hidden;
  border: 1px solid rgba(var(--green-rgb), 0.25);
  border-radius: 8px;
  background: #050d0f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 48px rgba(0, 0, 0, 0.32);
  direction: ltr;
}

.deploy-console-head {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  background: #091416;
  font-family: Arial, sans-serif;
  font-size: 0.66rem;
}

.deploy-console-head > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.deploy-console-head svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.deploy-console-head > span:last-child {
  display: flex;
  gap: 5px;
}

.deploy-console-head b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.deploy-console-head b:nth-child(1) { background: #55c96c; }
.deploy-console-head b:nth-child(2) { background: #f7c94b; }
.deploy-console-head b:nth-child(3) { background: #ff6961; }

.deploy-console-body {
  min-height: 190px;
  padding: 18px;
  font-family: Consolas, "Courier New", monospace;
}

.deploy-console-body code {
  display: block;
  margin-bottom: 16px;
  color: #eef8f1;
  font-size: 0.76rem;
}

.deploy-console-body code span {
  color: var(--green);
  animation: deployCursorBlink 1.1s steps(1) infinite;
}

.deploy-console-body p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  color: rgba(221, 237, 228, 0.62);
  font-size: 0.66rem;
}

.deploy-console-body p svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

.deploy-console-body strong {
  display: inline-block;
  margin-top: 13px;
  padding: 6px 9px;
  border: 1px solid rgba(var(--green-rgb), 0.26);
  border-radius: 4px;
  color: #9dffa9;
  background: rgba(var(--green-rgb), 0.07);
  font-size: 0.62rem;
  letter-spacing: 0;
}

.launch-copy {
  min-width: 0;
}

.launch-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a9fcb3;
  font-size: 0.74rem;
  font-weight: 800;
}

.launch-status svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.launch-strip .launch-copy h2 {
  margin: 13px 0 8px;
  color: #fff;
  font-size: 2.25rem;
  line-height: 1.28;
  font-weight: 850;
}

.launch-strip .launch-copy p {
  max-width: 570px;
  margin: 0;
  color: rgba(239, 246, 242, 0.7);
  font-size: 0.91rem;
  line-height: 1.8;
}

.launch-actions {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  padding-inline-start: 26px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.09);
}

.launch-panel .launch-primary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid var(--green);
  border-radius: 6px;
  color: var(--on-green);
  background: var(--green);
  box-shadow: 0 10px 28px rgba(var(--green-rgb), 0.18);
  font-size: 0.82rem;
  font-weight: 900;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.launch-panel .launch-primary:hover,
.launch-panel .launch-primary:focus-visible {
  background: var(--green-2);
  box-shadow: 0 13px 32px rgba(var(--green-rgb), 0.26);
  transform: translateY(-2px);
}

.launch-panel .launch-primary span {
  color: inherit;
  font-size: inherit;
  line-height: 1.4;
}

.launch-panel .launch-primary svg {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--on-green);
  background: none;
  box-shadow: none;
}

.launch-panel .launch-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  direction: ltr;
}

.launch-panel .launch-phone > svg {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  padding: 8px;
  border: 1px solid rgba(var(--green-rgb), 0.42);
  border-radius: 50%;
  color: #fff;
  background: rgba(var(--green-rgb), 0.1);
  box-shadow: 0 0 16px rgba(var(--green-rgb), 0.12);
}

.launch-panel .launch-phone span {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: inherit;
  line-height: 1.3;
  text-align: left;
}

.launch-panel .launch-phone small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.62rem;
}

.launch-panel .launch-phone b {
  display: block;
  color: var(--green);
  font-family: Arial, sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.process {
  position: relative;
  overflow: hidden;
  padding: 70px 0 78px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background:
    repeating-linear-gradient(90deg, transparent 0 89px, rgba(12, 217, 196, 0.022) 89px 90px),
    linear-gradient(180deg, #031012, #020708);
}

.process .section-title {
  width: min(100%, 820px);
  margin: 0 auto 34px;
  text-align: center;
}

.process .section-title > span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 6px 15px;
  border: 1px solid rgba(var(--green-rgb), 0.3);
  border-radius: 999px;
  color: #afffba;
  background: rgba(var(--green-rgb), 0.075);
  font-size: 0.86rem;
}

.process .section-title h2 {
  margin: 14px 0 0;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 800;
}

.process .section-lead {
  max-width: 680px;
  margin: 11px auto 0;
  color: rgba(239, 246, 242, 0.7);
  font-size: 0.94rem;
  line-height: 1.8;
}

.process-console {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(5, 13, 15, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 68px rgba(0, 0, 0, 0.35);
}

.process-console-bar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  background: #091416;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.66rem;
  direction: ltr;
}

.process-console-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.process-console-bar svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.process-pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 34px 20px 38px;
}

.process-pipeline::before,
.process-pipeline::after {
  content: "";
  position: absolute;
  top: 61px;
  right: 7%;
  left: 7%;
  height: 2px;
  pointer-events: none;
}

.process-pipeline::before {
  background: rgba(var(--green-rgb), 0.16);
}

.process-pipeline::after {
  background: linear-gradient(90deg, transparent, var(--cyan), var(--green), transparent);
  animation: pipelineSweep 4.6s linear infinite;
}

.process-step {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0 13px;
  text-align: center;
  transition: transform 0.25s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.process-node {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  place-items: center;
  border: 1px solid rgba(var(--green-rgb), 0.36);
  border-radius: 8px;
  color: var(--green);
  background: #071315;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 22px rgba(var(--green-rgb), 0.09);
}

.process-node svg {
  width: 25px;
  height: 25px;
}

.process-code {
  display: block;
  color: #70e77f;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.57rem;
  direction: ltr;
}

.process-step h3 {
  margin: 8px 0 7px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.45;
}

.process-step p {
  min-height: 6.3em;
  margin: 0;
  color: rgba(239, 246, 242, 0.61);
  font-size: 0.72rem;
  line-height: 1.75;
}

.process-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.54rem;
  direction: ltr;
}

.process-status svg {
  width: 12px;
  height: 12px;
  color: var(--green);
}

.process-status--live {
  color: #9dfda8;
  animation: pipelineLivePulse 2.2s ease-in-out infinite;
}

.process-delivery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.018);
}

.process-delivery > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 0;
  padding: 17px 14px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.07);
}

.process-delivery > div:last-child {
  border-inline-end: 0;
}

.process-delivery > div > svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  color: var(--green);
}

.process-delivery span,
.process-delivery b,
.process-delivery small {
  display: block;
}

.process-delivery b {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
}

.process-delivery small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
}

@media (max-width: 1120px) {
  .launch-strip .launch-panel {
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.15fr) minmax(190px, 0.56fr);
    gap: 26px;
  }

  .launch-strip .launch-copy h2 {
    font-size: 1.9rem;
  }

  .launch-actions {
    padding-inline-start: 20px;
  }
}

@media (max-width: 1024px) {
  .launch-strip {
    padding: 50px 0;
  }

  .launch-strip .launch-panel {
    grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.25fr);
    gap: 28px;
  }

  .launch-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(220px, 0.55fr);
    align-items: center;
    justify-content: center;
    padding: 22px 0 0;
    border-inline-start: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .process {
    padding: 58px 0 64px;
  }

  .process .section-title h2 {
    font-size: 2rem;
  }

  .process-pipeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 0;
    padding: 30px 20px 34px;
  }

  .process-pipeline::before,
  .process-pipeline::after {
    display: none;
  }

  .process-step {
    padding: 18px 17px;
    border-top: 1px solid rgba(var(--green-rgb), 0.13);
  }

  .process-step p {
    min-height: 4.8em;
  }
}

@media (max-width: 760px) {
  .launch-strip .launch-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .deploy-console {
    width: min(100%, 390px);
    margin-inline: auto;
    text-align: left;
  }

  .launch-status {
    justify-content: center;
  }

  .launch-strip .launch-copy p {
    margin-inline: auto;
  }

  .launch-actions {
    grid-column: auto;
    grid-template-columns: 1fr;
    width: min(100%, 390px);
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .launch-strip {
    padding: 40px 0 44px;
  }

  .launch-strip .launch-panel {
    gap: 24px;
  }

  .deploy-console-body {
    min-height: 178px;
    padding: 16px;
  }

  .launch-strip .launch-copy h2 {
    font-size: 1.65rem;
    line-height: 1.4;
  }

  .launch-strip .launch-copy p {
    font-size: 0.84rem;
  }

  .launch-actions {
    padding-top: 20px;
  }

  .process {
    padding: 46px 0 52px;
  }

  .process .section-title {
    margin-bottom: 25px;
  }

  .process .section-title h2 {
    font-size: 1.68rem;
    line-height: 1.4;
  }

  .process .section-lead {
    max-width: 330px;
    font-size: 0.86rem;
  }

  .process-console-bar {
    font-size: 0.58rem;
  }

  .process-console-bar span:last-child {
    display: none;
  }

  .process-pipeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 16px;
  }

  .process-pipeline::before {
    display: block;
    top: 32px;
    right: 42px;
    bottom: 32px;
    left: auto;
    width: 1px;
    height: auto;
    background: rgba(var(--green-rgb), 0.16);
  }

  .process-step {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
    padding: 18px 0;
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: right;
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step:hover {
    transform: none;
  }

  .process-node {
    grid-column: 1;
    grid-row: 1 / 6;
    width: 48px;
    height: 48px;
    margin: 0;
  }

  .process-node svg {
    width: 22px;
    height: 22px;
  }

  .process-code,
  .process-step h3,
  .process-step p,
  .process-status {
    grid-column: 2;
    justify-content: flex-start;
    text-align: right;
  }

  .process-code {
    text-align: right;
  }

  .process-step h3 {
    margin-top: 6px;
  }

  .process-step p {
    min-height: 0;
    font-size: 0.76rem;
  }

  .process-status {
    margin-top: 9px;
  }

  .process-delivery {
    grid-template-columns: 1fr;
  }

  .process-delivery > div {
    justify-content: flex-start;
    padding: 15px 18px;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .process-delivery > div:last-child {
    border-bottom: 0;
  }
}

/* FAQ knowledge base */
.faq-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0 78px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(var(--green-rgb), 0.1);
  background:
    linear-gradient(rgba(12, 217, 196, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 217, 196, 0.025) 1px, transparent 1px),
    #030a0b;
  background-size: 54px 54px;
}

.faq-section::before {
  content: "FAQ_QUERY // KNOWLEDGE_BASE";
  position: absolute;
  top: 34px;
  left: max(24px, calc((100% - 1440px) / 2));
  color: rgba(12, 217, 196, 0.12);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.68rem;
  direction: ltr;
  pointer-events: none;
}

.faq-heading {
  max-width: 820px;
  margin: 0 auto 38px;
}

.faq-heading > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 13px;
  border: 1px solid rgba(var(--green-rgb), 0.3);
  border-radius: 999px;
  background: rgba(var(--green-rgb), 0.06);
  font-size: 0.83rem;
}

.faq-heading h2 {
  margin-top: 12px;
  font-size: 2.4rem;
  font-weight: 800;
}

.faq-heading .section-lead {
  max-width: 660px;
  margin: 12px auto 0;
  color: rgba(239, 246, 242, 0.64);
  font-size: 0.94rem;
  line-height: 1.9;
}

.faq-workspace {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: 28px;
  align-items: start;
  direction: ltr;
}

.faq-console,
.faq-list {
  direction: rtl;
}

.faq-console {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(12, 217, 196, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(12, 217, 196, 0.045), transparent 42%),
    #061012;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 54px rgba(0, 0, 0, 0.26);
}

.faq-console::after {
  content: "";
  position: absolute;
  top: 47px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12, 217, 196, 0.75), transparent);
  animation: faqConsoleScan 4.8s ease-in-out infinite;
  pointer-events: none;
}

.faq-console-head,
.final-command-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(239, 246, 242, 0.65);
  background: #091416;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.68rem;
  direction: ltr;
}

.faq-console-head > span:first-child,
.final-command-head > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.faq-console-head svg,
.final-command-head svg {
  width: 15px;
  height: 15px;
  color: var(--cyan);
}

.faq-console-lights {
  display: inline-flex;
  gap: 6px;
}

.faq-console-lights b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.faq-console-lights b:nth-child(1) {
  background: #ff6b62;
}

.faq-console-lights b:nth-child(2) {
  background: #ffc857;
}

.faq-console-lights b:nth-child(3) {
  background: var(--green);
}

.faq-code,
.final-command-body {
  display: grid;
  gap: 9px;
  padding: 24px 22px;
  color: #d7e3df;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: left;
}

.faq-code code,
.final-command-body code {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.code-keyword {
  color: #4fe0d1;
}

.code-string {
  color: #9dfda8;
}

.code-boolean {
  color: #ffc857;
}

.faq-code-result {
  margin-top: 9px;
  color: rgba(239, 246, 242, 0.35);
}

.faq-console-status {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-console-status > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 14px 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.faq-console-status > div:last-child {
  border-bottom: 0;
}

.faq-console-status svg {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  padding: 6px;
  border: 1px solid rgba(var(--green-rgb), 0.24);
  border-radius: 6px;
  color: var(--green);
  background: rgba(var(--green-rgb), 0.06);
}

.faq-console-status span,
.faq-console-status b,
.faq-console-status small {
  display: block;
}

.faq-console-status b {
  color: #fff;
  font-size: 0.77rem;
}

.faq-console-status small {
  margin-top: 3px;
  color: rgba(239, 246, 242, 0.43);
  font-size: 0.64rem;
  line-height: 1.5;
}

.faq-list {
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(6, 16, 18, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.faq-list details:hover {
  transform: translateX(-3px);
  border-color: rgba(12, 217, 196, 0.3);
}

.faq-list details[open] {
  border-color: rgba(var(--green-rgb), 0.44);
  background: #071315;
  box-shadow:
    inset 3px 0 0 rgba(var(--green-rgb), 0.85),
    0 14px 35px rgba(0, 0, 0, 0.2);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 14px;
  align-items: center;
  min-height: 70px;
  padding: 14px 17px;
  cursor: pointer;
  color: #fff;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::before,
.faq-list details[open] summary::before {
  content: none;
}

.faq-index {
  color: rgba(12, 217, 196, 0.56);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.68rem;
  direction: ltr;
}

.faq-question {
  min-width: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-toggle {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(var(--green-rgb), 0.25);
  border-radius: 6px;
  color: var(--green);
  background: rgba(var(--green-rgb), 0.05);
}

.faq-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.faq-list details[open] .faq-toggle {
  color: var(--on-green);
  background: var(--green);
}

.faq-list details[open] .faq-toggle svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  margin: 0 69px 0 17px;
  padding: 16px 0 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  animation: faqAnswerIn 0.25s ease both;
}

.faq-answer > svg {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  color: var(--cyan);
}

.faq-list .faq-answer p {
  padding: 0;
  color: rgba(239, 246, 242, 0.64);
  font-size: 0.82rem;
  line-height: 1.9;
}

/* Final project command center */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 68px 0 72px;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(var(--green-rgb), 0.045) 50%, transparent 50.1%),
    linear-gradient(rgba(var(--green-rgb), 0.025) 1px, transparent 1px),
    #020809;
  background-size: 100% 100%, 100% 42px, auto;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(12, 217, 196, 0.28), transparent);
  pointer-events: none;
}

.final-cta::before {
  left: 5%;
}

.final-cta::after {
  right: 5%;
}

.final-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  border: 1px solid rgba(var(--green-rgb), 0.24);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(12, 217, 196, 0.035), transparent 42%),
    #050e10;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 28px 74px rgba(0, 0, 0, 0.3);
  direction: ltr;
}

.final-panel::before {
  content: "PROJECT_REQUEST // READY";
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 2;
  color: rgba(var(--green-rgb), 0.22);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.58rem;
  direction: ltr;
  pointer-events: none;
}

.final-content {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  padding: 52px 52px 48px 46px;
  direction: rtl;
}

.final-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 4px 12px;
  border: 1px solid rgba(var(--green-rgb), 0.3);
  border-radius: 999px;
  color: var(--green);
  background: rgba(var(--green-rgb), 0.06);
  font-size: 0.77rem;
  font-weight: 800;
}

.final-kicker svg {
  width: 15px;
  height: 15px;
}

.final-panel .final-content h2 {
  margin: 17px 0 12px;
  color: #fff;
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1.38;
}

.final-panel .final-content h2 span {
  color: var(--green);
}

.final-panel .final-content > p {
  max-width: 650px;
  margin: 0;
  color: rgba(239, 246, 242, 0.67);
  font-size: 0.95rem;
  line-height: 1.95;
}

.final-panel .final-benefits {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 10px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.final-panel .final-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
}

.final-panel .final-benefits li svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.final-actions {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(205px, 1fr);
  gap: 12px;
  width: min(100%, 455px);
  margin-top: 27px;
}

.final-actions a {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 7px;
  font-weight: 900;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.final-actions a:hover {
  transform: translateY(-3px);
}

.final-primary {
  min-width: 0;
  padding: 9px 18px;
  color: #041107;
  background: var(--green);
  box-shadow: 0 12px 30px rgba(var(--green-rgb), 0.16);
}

.final-primary:hover {
  box-shadow: 0 15px 36px rgba(var(--green-rgb), 0.26);
}

.final-primary > svg {
  width: 23px;
  height: 23px;
}

.final-primary span,
.final-primary small,
.final-primary b {
  display: block;
}

.final-primary small {
  font-size: 0.62rem;
  font-weight: 700;
  opacity: 0.68;
}

.final-primary b {
  color: #041107;
  font-family: Arial, sans-serif;
  font-size: 1.04rem;
  direction: ltr;
}

.final-secondary {
  min-width: 0;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
}

.final-secondary:hover {
  border-color: rgba(12, 217, 196, 0.5);
  background: rgba(12, 217, 196, 0.07);
}

.final-secondary svg {
  width: 20px;
  height: 20px;
  color: var(--cyan);
}

.final-command-console {
  grid-column: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 0;
  border-inline-end: 1px solid rgba(12, 217, 196, 0.2);
  border-radius: 0;
  background:
    linear-gradient(rgba(12, 217, 196, 0.025) 1px, transparent 1px),
    #061012;
  background-size: 100% 34px, auto;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.025);
  direction: rtl;
}

.final-command-branch {
  color: rgba(239, 246, 242, 0.4);
}

.final-command-branch svg {
  color: var(--green);
}

.final-command-body {
  min-height: 286px;
  align-content: center;
  padding: 28px 24px;
  font-size: 0.82rem;
}

.final-command-output {
  display: flex !important;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--green);
}

.command-caret {
  display: inline-block;
  width: 7px;
  height: 15px;
  background: var(--green);
  animation: commandCaret 1s steps(1) infinite;
}

.final-command-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  color: rgba(239, 246, 242, 0.45);
  background: rgba(255, 255, 255, 0.018);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.59rem;
  direction: ltr;
}

.final-command-status span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #9dfda8;
}

.final-command-status span b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(var(--green-rgb), 0.72);
  animation: pipelineLivePulse 2.2s ease-in-out infinite;
}

@keyframes faqConsoleScan {
  0%,
  100% {
    opacity: 0.25;
    transform: translateX(-35%);
  }
  50% {
    opacity: 0.9;
    transform: translateX(35%);
  }
}

@keyframes faqAnswerIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes commandCaret {
  0%,
  48% {
    opacity: 1;
  }
  49%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 60px 0 66px;
  }

  .faq-heading h2 {
    font-size: 2rem;
  }

  .faq-workspace {
    grid-template-columns: 1fr;
  }

  .faq-console {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
    min-height: 0;
  }

  .faq-console-head {
    grid-column: 1 / -1;
  }

  .faq-code {
    align-content: center;
  }

  .faq-console-status {
    border-top: 0;
    border-inline-start: 1px solid rgba(255, 255, 255, 0.08);
  }

  .final-cta {
    padding: 58px 0 62px;
  }

  .final-panel {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .final-content,
  .final-command-console {
    grid-column: 1;
  }

  .final-content {
    grid-row: 1;
    align-items: flex-start;
    padding: 46px 42px 40px;
    text-align: right;
  }

  .final-panel .final-content h2 {
    font-size: 2rem;
  }

  .final-panel .final-content > p {
    max-width: 610px;
  }

  .final-panel .final-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .final-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 520px);
  }

  .final-actions a {
    width: 100%;
  }

  .final-command-console {
    grid-row: 2;
    width: 100%;
    border-inline-end: 0;
    border-top: 1px solid rgba(12, 217, 196, 0.2);
  }

  .final-command-body {
    min-height: 210px;
  }
}

@media (max-width: 760px) {
  .faq-workspace {
    gap: 20px;
  }

  .faq-console {
    grid-template-columns: 1fr;
  }

  .faq-console-head {
    grid-column: auto;
  }

  .faq-console-status {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-inline-start: 0;
  }

  .final-content {
    align-items: center;
    text-align: center;
  }

  .final-command-console {
    margin: 0;
  }

  .final-panel .final-content > p {
    margin-inline: auto;
  }

  .final-panel .final-benefits,
  .final-actions {
    justify-content: center;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 48px 0 52px;
    background-size: 38px 38px;
  }

  .faq-section::before {
    display: none;
  }

  .faq-heading {
    margin-bottom: 28px;
  }

  .faq-heading > span {
    font-size: 0.75rem;
  }

  .faq-heading h2 {
    font-size: 1.68rem;
    line-height: 1.45;
  }

  .faq-heading .section-lead {
    max-width: 340px;
    font-size: 0.82rem;
  }

  .faq-console-head,
  .final-command-head {
    padding: 0 13px;
    font-size: 0.61rem;
  }

  .faq-code {
    padding: 20px 17px;
    font-size: 0.7rem;
  }

  .faq-console-status > div {
    padding: 13px 15px;
  }

  .faq-list summary {
    grid-template-columns: 30px minmax(0, 1fr) 34px;
    gap: 9px;
    min-height: 66px;
    padding: 12px;
  }

  .faq-index {
    font-size: 0.6rem;
  }

  .faq-question {
    font-size: 0.83rem;
  }

  .faq-toggle {
    width: 34px;
    height: 34px;
  }

  .faq-answer {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 9px;
    margin: 0 51px 0 12px;
    padding: 14px 0 17px;
  }

  .faq-list .faq-answer p {
    font-size: 0.76rem;
  }

  .final-cta {
    padding: 42px 0 46px;
  }

  .final-panel {
    border-color: rgba(var(--green-rgb), 0.2);
  }

  .final-panel::before {
    top: 10px;
    right: 12px;
    font-size: 0.5rem;
  }

  .final-content {
    padding: 38px 18px 30px;
  }

  .final-kicker {
    font-size: 0.72rem;
  }

  .final-panel .final-content h2 {
    margin-top: 14px;
    font-size: 1.68rem;
    line-height: 1.45;
  }

  .final-panel .final-content > p {
    font-size: 0.84rem;
  }

  .final-panel .final-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: start;
    width: fit-content;
    max-width: 100%;
    text-align: right;
  }

  .final-actions {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 390px;
    gap: 10px;
  }

  .final-actions a {
    min-width: 0;
    min-height: 56px;
  }

  .final-command-body {
    min-height: 190px;
    padding: 22px 16px;
    font-size: 0.71rem;
  }

  .final-command-status small {
    display: none;
  }
}

/* Coding system footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(var(--green-rgb), 0.16);
  background:
    linear-gradient(rgba(12, 217, 196, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 217, 196, 0.018) 1px, transparent 1px),
    #020708;
  background-size: 46px 46px;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--green-rgb), 0.6), transparent);
  pointer-events: none;
}

.footer-console-bar {
  position: relative;
  overflow: hidden;
  min-height: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(7, 19, 21, 0.94);
}

.footer-console-bar::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--green));
  animation: footerConsoleSweep 5s ease-in-out infinite;
  pointer-events: none;
}

.footer-console-inner {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(239, 246, 242, 0.48);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.62rem;
  direction: ltr;
}

.footer-console-file,
.footer-console-status,
.footer-console-status span {
  display: inline-flex;
  align-items: center;
}

.footer-console-file {
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-console-file svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
}

.footer-console-status {
  gap: 24px;
}

.footer-console-status span {
  gap: 7px;
  white-space: nowrap;
}

.footer-console-status span:first-child {
  color: #9dfda8;
}

.footer-console-status b,
.footer-build b {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(var(--green-rgb), 0.72);
  animation: pipelineLivePulse 2.2s ease-in-out infinite;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.45fr) minmax(130px, 0.72fr) minmax(180px, 1fr) minmax(230px, 1.22fr);
  gap: 42px;
  align-items: start;
  padding: 54px 0 48px;
}

.footer-brand {
  min-width: 0;
  padding-inline-end: 38px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.085);
}

.footer-logo {
  margin: 0;
  font-size: 1.24rem;
}

.footer-brand p,
.footer-grid p {
  max-width: 380px;
  margin: 18px 0 20px;
  color: rgba(239, 246, 242, 0.59);
  font-size: 0.83rem;
  line-height: 1.95;
}

.footer-brand-code {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 9px 12px;
  border-inline-start: 2px solid rgba(12, 217, 196, 0.55);
  color: rgba(239, 246, 242, 0.46);
  background: rgba(12, 217, 196, 0.035);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.66rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.socials {
  display: flex;
  gap: 9px;
}

.socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.028);
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease;
}

.socials a:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--green-rgb), 0.52);
  color: var(--green);
  background: rgba(var(--green-rgb), 0.07);
}

.socials svg,
.socials img {
  display: block;
  width: 17px;
  height: 17px;
}

.socials img {
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(var(--green-rgb), 0.18));
  transition:
    filter 0.22s ease,
    transform 0.22s ease;
}

.socials a:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 8px rgba(var(--green-rgb), 0.7));
}

.footer-column {
  min-width: 0;
}

.footer-column h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 3px 0 19px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
}

.footer-column h3 > svg {
  width: 19px;
  height: 19px;
  color: var(--green);
}

.footer-navigation > a,
.footer-services > a {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: rgba(239, 246, 242, 0.55);
  font-size: 0.77rem;
  line-height: 1.55;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.footer-navigation > a:hover,
.footer-services > a:hover {
  transform: translateX(-4px);
  color: #fff;
}

.footer-navigation > a svg,
.footer-services > a svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: rgba(var(--green-rgb), 0.52);
}

.footer-contact-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-width: 0;
  min-height: 62px;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  color: #fff;
  transition:
    border-color 0.22s ease,
    transform 0.22s ease;
}

.footer-contact-link:last-child {
  border-bottom: 0;
}

.footer-contact-link:hover {
  transform: translateX(-4px);
  border-color: rgba(var(--green-rgb), 0.35);
}

.footer-contact-link > svg {
  width: 32px;
  height: 32px;
  padding: 7px;
  border: 1px solid rgba(12, 217, 196, 0.2);
  border-radius: 6px;
  color: var(--cyan);
  background: rgba(12, 217, 196, 0.045);
}

.footer-contact-link span,
.footer-contact-link small,
.footer-contact-link b {
  display: block;
  min-width: 0;
}

.footer-contact-link small {
  margin-bottom: 3px;
  color: rgba(239, 246, 242, 0.38);
  font-size: 0.59rem;
}

.footer-contact-link b {
  color: rgba(255, 255, 255, 0.82);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 42px;
  gap: 22px;
  align-items: center;
  min-height: 78px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.footer-bottom p {
  margin: 0;
  color: rgba(239, 246, 242, 0.42);
  font-size: 0.7rem;
}

.footer-build {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(239, 246, 242, 0.35);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.56rem;
  white-space: nowrap;
}

.footer-build b {
  width: 6px;
  height: 6px;
  flex-basis: 6px;
  background: var(--cyan);
  box-shadow: 0 0 9px rgba(12, 217, 196, 0.65);
}

.back-to-top {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(var(--green-rgb), 0.28);
  border-radius: 6px;
  color: var(--green);
  background: rgba(var(--green-rgb), 0.055);
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
  color: #041107;
  background: var(--green);
}

.back-to-top svg {
  width: 19px;
  height: 19px;
}

@keyframes footerConsoleSweep {
  0%,
  100% {
    opacity: 0.25;
    transform: translateX(-215%);
  }
  50% {
    opacity: 0.9;
    transform: translateX(315%);
  }
}

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 46px;
    padding: 46px 0 42px;
    text-align: right;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding: 0 0 34px;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.085);
  }

  .footer-brand p,
  .footer-grid p {
    max-width: 640px;
    margin-inline: 0;
  }

  .socials {
    justify-content: flex-start;
  }

  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 20px;
  }

  .footer-contact h3 {
    grid-column: 1 / -1;
  }

  .footer-contact-link {
    border-top: 1px solid rgba(255, 255, 255, 0.075);
    border-bottom: 0;
  }

  .footer-bottom {
    text-align: right;
  }
}

@media (max-width: 640px) {
  .site-footer {
    background-size: 34px 34px;
  }

  .footer-console-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-items: center;
    padding: 11px 0;
    font-size: 0.55rem;
  }

  .footer-console-status {
    width: 100%;
    justify-content: center;
    gap: 15px;
  }

  .footer-console-status span {
    font-size: 0.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 38px 0 30px;
    text-align: right;
  }

  .footer-brand {
    grid-column: auto;
    padding-bottom: 31px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-brand p,
  .footer-grid p {
    max-width: 350px;
    margin: 16px auto 18px;
    font-size: 0.79rem;
  }

  .footer-brand-code {
    margin-inline: auto;
    font-size: 0.6rem;
    text-align: left;
  }

  .socials {
    justify-content: center;
  }

  .footer-column {
    padding: 25px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  }

  .footer-column h3 {
    margin-bottom: 15px;
  }

  .footer-contact {
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-bottom: 0;
  }

  .footer-contact h3 {
    grid-column: auto;
  }

  .footer-contact-link {
    min-height: 60px;
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  }

  .footer-contact-link:last-child {
    border-bottom: 0;
  }

  .footer-bottom {
    position: relative;
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 96px;
    padding: 20px 56px 20px 0;
    text-align: right;
  }

  .footer-build {
    justify-content: flex-start;
  }

  .back-to-top {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .back-to-top:hover {
    transform: translateY(calc(-50% - 3px));
  }
}

@media (max-width: 420px) {
  .footer-console-status span:nth-child(2),
  .footer-console-status span:nth-child(3) {
    display: none;
  }

  .footer-console-status {
    justify-content: center;
  }

  .footer-brand-code {
    width: 100%;
    font-size: 0.56rem;
  }
}

/* Unified Arabic coding design system */
.logo-strip span,
.preview-site-header strong,
.architecture-copy small,
.architecture-details small,
.store-hero small,
.dashboard-sidebar strong {
  letter-spacing: 0;
}

::selection {
  color: var(--on-green);
  background: var(--green);
}

:where(a, button, summary):focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

:where(#about, #services, #features, #work, #process, #faq, #contact) {
  scroll-margin-top: calc(var(--header-desktop) + 18px);
}

.site-header {
  background: rgba(2, 8, 9, 0.96);
  border-bottom-color: rgba(var(--green-rgb), 0.18);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.brand {
  font-size: 1.15rem;
}

.main-nav {
  gap: 4px;
  padding: 5px;
  border-color: rgba(12, 217, 196, 0.14);
  border-radius: 8px;
  background: #071315;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 10px 28px rgba(0, 0, 0, 0.2);
}

.main-nav a {
  min-height: 40px;
  padding: 9px 15px;
  border-radius: 6px;
  font-size: 0.88rem;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(var(--green-rgb), 0.11);
  box-shadow: inset 0 0 0 1px rgba(var(--green-rgb), 0.24);
}

.call-pill {
  border-radius: 7px;
  background: #071511;
}

.menu-toggle {
  border-radius: 6px;
  background: #071315;
}

@media (min-width: 1025px) {
  .main-nav a::before {
    content: "/";
    margin-inline-end: 5px;
    color: rgba(12, 217, 196, 0.52);
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.7rem;
    font-weight: 400;
  }
}

.clients,
.features,
.work,
.process,
.final-cta {
  padding: 72px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.055);
  background:
    linear-gradient(rgba(12, 217, 196, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 217, 196, 0.022) 1px, transparent 1px),
    var(--surface-b);
  background-size: 54px 54px, 54px 54px, auto;
}

.services,
.cta-band,
.launch-strip,
.faq-section {
  padding: 72px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.055);
  background:
    repeating-linear-gradient(90deg, transparent 0 89px, var(--line-green) 89px 90px),
    linear-gradient(180deg, var(--surface-a), #020708);
}

.section-code-label {
  position: absolute;
  top: 17px;
  right: max(22px, calc((100% - 1160px) / 2));
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(12, 217, 196, 0.34);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.59rem;
  direction: ltr;
  pointer-events: none;
}

.section-code-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px rgba(var(--green-rgb), 0.62);
}

.section-title,
.services .section-title,
.features .section-title,
.work .section-title,
.process .section-title,
.faq-heading {
  width: min(100%, 820px);
  margin: 0 auto 34px;
  text-align: center;
}

.section-title > span,
.services .section-title > span,
.features .section-title > span,
.work .section-title > span,
.process .section-title > span,
.faq-heading > span,
.clients-kicker,
.cta-kicker,
.launch-status,
.final-kicker {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 5px 13px;
  border: 1px solid rgba(var(--green-rgb), 0.3);
  border-radius: 6px;
  color: var(--green);
  background: rgba(var(--green-rgb), 0.055);
  font-size: 0.77rem;
  font-weight: 900;
}

:where(.clients-kicker, .cta-kicker, .launch-status, .final-kicker) svg {
  width: 15px;
  height: 15px;
}

.section-title h2,
.services .section-title h2,
.features .section-title h2,
.work .section-title h2,
.process .section-title h2,
.faq-heading h2,
.clients h2,
.cta-band .cta-panel h2,
.launch-strip .launch-copy h2,
.final-panel .final-content h2 {
  margin-top: 14px;
  color: #fff;
  font-size: 2.35rem;
  font-weight: 850;
  line-height: 1.34;
}

.section-lead,
.services .section-lead,
.features .section-lead,
.work .section-lead,
.process .section-lead,
.faq-heading .section-lead,
.clients-intro p,
.cta-band .cta-panel p,
.launch-strip .launch-copy p,
.final-panel .final-content > p {
  color: rgba(239, 246, 242, 0.76);
  font-size: 0.92rem;
  line-height: 1.9;
}

.hero h1 {
  color: #fff;
  font-size: 3.65rem;
  line-height: 1.14;
}

.hero p {
  color: rgba(239, 246, 242, 0.82);
  font-size: 1rem;
}

.btn,
.service-link,
.cta-button,
.launch-primary,
.final-actions a {
  border-radius: 6px;
}

.btn-primary,
.cta-button,
.launch-primary,
.final-primary {
  color: var(--on-green);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(var(--green-rgb), 0.16);
}

.btn-primary:hover,
.cta-button:hover,
.launch-primary:hover,
.final-primary:hover {
  background: var(--green-2);
  box-shadow: 0 16px 34px rgba(var(--green-rgb), 0.24);
}

.btn-ghost,
.final-secondary {
  border-color: rgba(12, 217, 196, 0.28);
  color: #fff;
  background: rgba(12, 217, 196, 0.035);
}

.services .service-card,
.feature-stage .feature-card,
.portfolio-showcase,
.process-console,
.faq-console,
.faq-list details,
.cta-band .cta-panel,
.final-panel {
  border-color: rgba(var(--green-rgb), 0.2);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 24px 58px rgba(0, 0, 0, 0.26);
}

.portfolio-showcase,
.process-console,
.faq-console,
.final-panel {
  background-color: rgba(5, 15, 17, 0.96);
}

.deploy-console,
.final-command-console,
.faq-console,
.process-console {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1120px) {
  .hero h1 {
    font-size: 2.85rem;
  }
}

@media (max-width: 1024px) {
  :where(#about, #services, #features, #work, #process, #faq, #contact) {
    scroll-margin-top: calc(var(--header-tablet) + 14px);
  }

  .clients,
  .services,
  .features,
  .cta-band,
  .work,
  .launch-strip,
  .process,
  .faq-section,
  .final-cta {
    padding: 60px 0;
  }

  .section-code-label {
    top: 13px;
    right: 14px;
  }

  .main-nav {
    border-radius: 0;
    background: #020809;
  }

  .main-nav a {
    border-radius: 6px;
  }

  .section-title h2,
  .services .section-title h2,
  .features .section-title h2,
  .work .section-title h2,
  .process .section-title h2,
  .faq-heading h2,
  .clients h2,
  .cta-band .cta-panel h2,
  .launch-strip .launch-copy h2,
  .final-panel .final-content h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.65rem;
  }
}

@media (max-width: 640px) {
  :where(#about, #services, #features, #work, #process, #faq, #contact) {
    scroll-margin-top: calc(var(--header-mobile) + 10px);
  }

  .clients,
  .services,
  .features,
  .cta-band,
  .work,
  .launch-strip,
  .process,
  .faq-section,
  .final-cta {
    padding: 48px 0;
  }

  .section-code-label {
    display: none;
  }

  .brand {
    font-size: 0.92rem;
  }

  .section-title,
  .services .section-title,
  .features .section-title,
  .work .section-title,
  .process .section-title,
  .faq-heading {
    margin-bottom: 27px;
  }

  .section-title > span,
  .services .section-title > span,
  .features .section-title > span,
  .work .section-title > span,
  .process .section-title > span,
  .faq-heading > span,
  .clients-kicker,
  .cta-kicker,
  .launch-status,
  .final-kicker {
    min-height: 30px;
    padding: 4px 11px;
    font-size: 0.7rem;
  }

  .section-title h2,
  .services .section-title h2,
  .features .section-title h2,
  .work .section-title h2,
  .process .section-title h2,
  .faq-heading h2,
  .clients h2,
  .cta-band .cta-panel h2,
  .launch-strip .launch-copy h2,
  .final-panel .final-content h2 {
    font-size: 1.68rem;
    line-height: 1.45;
  }

  .section-lead,
  .services .section-lead,
  .features .section-lead,
  .work .section-lead,
  .process .section-lead,
  .faq-heading .section-lead,
  .clients-intro p,
  .cta-band .cta-panel p,
  .launch-strip .launch-copy p,
  .final-panel .final-content > p {
    font-size: 0.82rem;
  }

  .hero h1 {
    font-size: 2.08rem;
    line-height: 1.28;
  }

  .hero p {
    font-size: 0.88rem;
  }
}

/* Smart contrast and technical background refinement */
.site-header {
  background: rgba(7, 22, 24, 0.96);
  border-bottom-color: rgba(var(--green-rgb), 0.24);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.main-nav,
.menu-toggle {
  background: #0a1e20;
}

.call-pill {
  background: #0a211b;
}

.hero {
  background:
    radial-gradient(circle, rgba(12, 217, 196, 0.19) 0 1px, transparent 1.5px) 14px 14px / 96px 96px,
    linear-gradient(rgba(12, 217, 196, 0.055) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(90deg, rgba(var(--green-rgb), 0.045) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(180deg, #071719, #091e20);
}

.hero::after {
  opacity: 0.86;
  background:
    linear-gradient(118deg, transparent 0 64%, rgba(var(--green-rgb), 0.1) 64.15% 64.35%, transparent 64.5%),
    linear-gradient(24deg, transparent 0 72%, rgba(12, 217, 196, 0.09) 72.15% 72.35%, transparent 72.5%);
}

.hero-kicker,
.hero-consult {
  background-color: rgba(10, 30, 32, 0.94);
}

.product-studio {
  border-color: rgba(255, 255, 255, 0.24);
  background: #0a1c1f;
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(var(--green-rgb), 0.09),
    0 0 42px rgba(12, 217, 196, 0.12);
}

.studio-topbar {
  background: #0d2527;
}

.clients,
.features,
.work,
.process,
.final-cta {
  border-block-color: rgba(255, 255, 255, 0.085);
  background:
    radial-gradient(circle, rgba(var(--green-rgb), 0.16) 0 1px, transparent 1.5px) 18px 18px / 108px 108px,
    linear-gradient(rgba(12, 217, 196, 0.065) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(90deg, rgba(12, 217, 196, 0.065) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(180deg, #092224, #071a1c);
}

.services,
.cta-band,
.launch-strip,
.faq-section {
  border-block-color: rgba(255, 255, 255, 0.085);
  background:
    radial-gradient(circle, rgba(12, 217, 196, 0.15) 0 1px, transparent 1.5px) 0 0 / 112px 112px,
    repeating-linear-gradient(90deg, transparent 0 71px, rgba(var(--green-rgb), 0.075) 71px 72px),
    repeating-linear-gradient(0deg, transparent 0 71px, rgba(12, 217, 196, 0.055) 71px 72px),
    linear-gradient(180deg, #071a1c, #0a2022);
}

.clients::before,
.features::before {
  opacity: 0.72;
}

.services::before {
  opacity: 0.82;
}

.section-code-label {
  color: rgba(12, 217, 196, 0.62);
}

.client-logo,
.services .service-card,
.feature-stage .feature-card,
.faq-list details {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(var(--green-rgb), 0.075), transparent 44%),
    linear-gradient(180deg, #0d292b, #0a2022);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    0 16px 38px rgba(0, 0, 0, 0.2);
}

.portfolio-showcase,
.process-console,
.faq-console,
.cta-band .cta-panel,
.final-panel {
  border-color: rgba(var(--green-rgb), 0.28);
  background-color: #0a2224;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    0 22px 52px rgba(0, 0, 0, 0.24);
}

.cta-band .cta-panel {
  background:
    linear-gradient(115deg, rgba(var(--green-rgb), 0.11), transparent 42%),
    #0b2426;
}

.final-panel {
  background:
    linear-gradient(90deg, rgba(12, 217, 196, 0.055), transparent 44%),
    #0a2224;
}

.portfolio-browser,
.deploy-console,
.final-command-console {
  background-color: #081b1d;
}

.portfolio-toolbar,
.process-console-bar,
.faq-console-head,
.final-command-head {
  background: #0d2729;
}

.deploy-console {
  border-color: rgba(var(--green-rgb), 0.31);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    0 16px 38px rgba(0, 0, 0, 0.24);
}

.site-footer {
  border-top-color: rgba(var(--green-rgb), 0.24);
  background:
    radial-gradient(circle, rgba(var(--green-rgb), 0.13) 0 1px, transparent 1.5px) 10px 10px / 92px 92px,
    linear-gradient(rgba(12, 217, 196, 0.055) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(90deg, rgba(12, 217, 196, 0.055) 1px, transparent 1px) 0 0 / 46px 46px,
    #07191b;
}

.footer-console-bar {
  background: rgba(11, 32, 34, 0.97);
}

.footer-brand p,
.footer-grid p,
.footer-navigation > a,
.footer-services > a {
  color: rgba(239, 246, 242, 0.7);
}

@media (max-width: 1024px) {
  .main-nav {
    background: #081b1d;
  }

  .clients,
  .features,
  .work,
  .process,
  .final-cta {
    background-size: 96px 96px, 48px 48px, 48px 48px, auto;
  }

  .services,
  .cta-band,
  .launch-strip,
  .faq-section {
    background-size: 96px 96px, auto, auto, auto;
  }
}

@media (max-width: 640px) {
  .hero {
    background:
      radial-gradient(circle, rgba(12, 217, 196, 0.15) 0 1px, transparent 1.5px) 10px 10px / 80px 80px,
      linear-gradient(rgba(12, 217, 196, 0.05) 1px, transparent 1px) 0 0 / 38px 38px,
      linear-gradient(90deg, rgba(var(--green-rgb), 0.04) 1px, transparent 1px) 0 0 / 38px 38px,
      linear-gradient(180deg, #071719, #091e20);
  }

  .clients,
  .features,
  .work,
  .process,
  .final-cta {
    background-size: 84px 84px, 40px 40px, 40px 40px, auto;
  }

  .services,
  .cta-band,
  .launch-strip,
  .faq-section {
    background-size: 84px 84px, auto, auto, auto;
  }
}

/* Scroll motion system */
@keyframes sectionScan {
  0% {
    top: 5%;
    opacity: 0;
    transform: scaleX(0.16);
  }
  18% {
    opacity: 0.42;
  }
  72% {
    opacity: 0.2;
  }
  100% {
    top: 95%;
    opacity: 0;
    transform: scaleX(0.92);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 120;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.045);
}

.scroll-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--green-2), var(--green));
  box-shadow: 0 0 14px rgba(var(--green-rgb), 0.58);
  transform: scaleX(0);
  transform-origin: right center;
  will-change: transform;
}

.site-header {
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(var(--green-rgb), 0.34);
  background: rgba(7, 22, 24, 0.985);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.motion-section {
  --section-shift: 0px;
  --code-shift: 0px;
}

.clients.motion-section,
.features.motion-section,
.work.motion-section,
.process.motion-section,
.final-cta.motion-section {
  background-position:
    18px var(--section-shift),
    0 var(--section-shift),
    var(--section-shift) 0,
    0 0;
}

.services.motion-section,
.cta-band.motion-section,
.launch-strip.motion-section,
.faq-section.motion-section {
  background-position:
    0 var(--section-shift),
    var(--section-shift) 0,
    0 var(--section-shift),
    0 0;
}

.site-footer.motion-section {
  background-position:
    10px var(--section-shift),
    0 var(--section-shift),
    var(--section-shift) 0,
    0 0;
}

.motion-section .section-code-label {
  transform: translate3d(var(--code-shift), 0, 0);
  will-change: transform;
}

.motion-section.is-inview .section-code-label::before {
  animation: pipelineLivePulse 2.2s ease-in-out infinite;
}

.section-scanline {
  position: absolute;
  top: 5%;
  right: 4%;
  left: 4%;
  z-index: 9;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(12, 217, 196, 0.7), rgba(var(--green-rgb), 0.84), transparent);
  box-shadow: 0 0 14px rgba(12, 217, 196, 0.2);
  transform: scaleX(0.16);
  transform-origin: center;
}

.motion-section.is-inview > .section-scanline {
  animation: sectionScan 1.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal[data-reveal] {
  --reveal-delay: 0ms;
  opacity: 0;
  clip-path: inset(0 0 8% 0);
  filter: saturate(0.82);
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.86s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 0.86s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s ease;
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform, clip-path;
}

.reveal[data-reveal].is-visible {
  opacity: 1;
  clip-path: inset(0);
  filter: none;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.reveal[data-reveal="title"] {
  clip-path: inset(0 0 24% 0);
  transform: translate3d(0, 28px, 0);
}

.reveal[data-reveal="card"] {
  clip-path: inset(0 0 12% 0);
  transform: translate3d(0, 42px, 0) scale(0.975);
}

.reveal[data-reveal="scale"] {
  clip-path: inset(4% 2%);
  transform: translate3d(0, 24px, 0) scale(0.95);
}

.reveal[data-reveal="panel"] {
  clip-path: inset(0 7% 0 0);
  transform: translate3d(34px, 0, 0) scale(0.985);
}

.reveal[data-reveal="browser"] {
  clip-path: inset(0 0 13% 0);
  transform: perspective(1200px) translate3d(0, 44px, 0) rotateX(3deg) scale(0.985);
  transform-origin: center top;
}

.reveal[data-reveal="from-right"] {
  clip-path: inset(0 0 0 12%);
  transform: translate3d(44px, 0, 0);
}

.reveal[data-reveal="from-left"] {
  clip-path: inset(0 12% 0 0);
  transform: translate3d(-44px, 0, 0);
}

.reveal[data-reveal="wipe"] {
  clip-path: inset(0 0 0 100%);
  transform: none;
}

.clients-summary.reveal .clients-stat,
.clients-summary.reveal .clients-note,
.cta-panel.reveal .cta-points li,
.process-console.reveal .process-step,
.process-console.reveal .process-delivery > div,
.final-panel.reveal .final-benefits li {
  opacity: 0;
  translate: 0 16px;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    translate 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.clients-summary.reveal.is-visible .clients-stat,
.clients-summary.reveal.is-visible .clients-note,
.cta-panel.reveal.is-visible .cta-points li,
.process-console.reveal.is-visible .process-step,
.process-console.reveal.is-visible .process-delivery > div,
.final-panel.reveal.is-visible .final-benefits li {
  opacity: 1;
  translate: 0 0;
}

.clients-summary.reveal.is-visible > :nth-child(1),
.cta-panel.reveal.is-visible .cta-points li:nth-child(1),
.process-console.reveal.is-visible .process-step:nth-child(1),
.final-panel.reveal.is-visible .final-benefits li:nth-child(1) {
  transition-delay: 0.2s;
}

.clients-summary.reveal.is-visible > :nth-child(2),
.cta-panel.reveal.is-visible .cta-points li:nth-child(2),
.process-console.reveal.is-visible .process-step:nth-child(2),
.final-panel.reveal.is-visible .final-benefits li:nth-child(2) {
  transition-delay: 0.28s;
}

.clients-summary.reveal.is-visible > :nth-child(3),
.cta-panel.reveal.is-visible .cta-points li:nth-child(3),
.process-console.reveal.is-visible .process-step:nth-child(3),
.final-panel.reveal.is-visible .final-benefits li:nth-child(3) {
  transition-delay: 0.36s;
}

.clients-summary.reveal.is-visible > :nth-child(4),
.process-console.reveal.is-visible .process-step:nth-child(4) {
  transition-delay: 0.44s;
}

.process-console.reveal.is-visible .process-step:nth-child(5) {
  transition-delay: 0.52s;
}

.process-console.reveal.is-visible .process-step:nth-child(6) {
  transition-delay: 0.6s;
}

.process-console.reveal.is-visible .process-delivery > div:nth-child(1) {
  transition-delay: 0.66s;
}

.process-console.reveal.is-visible .process-delivery > div:nth-child(2) {
  transition-delay: 0.74s;
}

.process-console.reveal.is-visible .process-delivery > div:nth-child(3) {
  transition-delay: 0.82s;
}

@media (max-width: 640px) {
  .reveal[data-reveal],
  .reveal[data-reveal="card"],
  .reveal[data-reveal="scale"],
  .reveal[data-reveal="panel"],
  .reveal[data-reveal="browser"],
  .reveal[data-reveal="from-right"],
  .reveal[data-reveal="from-left"] {
    transform: translate3d(0, 24px, 0) scale(0.985);
  }

  .section-scanline {
    right: 8%;
    left: 8%;
  }
}

/* Navigation icons, legal bar, and floating back-to-top */
.main-nav a {
  gap: 8px;
}

.main-nav a::before {
  display: none !important;
  content: none !important;
}

.nav-icon {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  color: var(--cyan);
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.nav-icon svg {
  width: 16px;
  height: 16px;
}

.nav-arrow {
  display: none;
}

.main-nav a:hover .nav-icon,
.main-nav a.active .nav-icon {
  color: var(--green);
  transform: translateY(-1px);
}

.footer-bottom {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 76px;
  padding-inline: 18px;
  border-top-color: rgba(var(--green-rgb), 0.18);
  background: rgba(8, 25, 27, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.footer-bottom .footer-copyright {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
}

.footer-copyright svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--green);
}

.footer-build {
  color: rgba(239, 246, 242, 0.56);
}

.back-to-top {
  position: fixed;
  right: auto;
  bottom: clamp(16px, 2.5vw, 28px);
  left: clamp(14px, 2.5vw, 28px);
  z-index: 88;
  width: 46px;
  height: 46px;
  border-color: rgba(var(--green-rgb), 0.42);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  color: #061006;
  background: var(--green);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.3),
    0 0 22px rgba(var(--green-rgb), 0.18);
  pointer-events: none;
  transform: translate3d(0, 16px, 0) scale(0.88);
  transition:
    opacity 0.24s ease,
    visibility 0s linear 0.24s,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0s;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: var(--cyan);
  color: #fff;
  background: #0d292b;
  transform: translate3d(0, -4px, 0) scale(1);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

@media (max-width: 1024px) {
  .main-nav a {
    justify-content: flex-start;
    gap: 14px;
  }

  .nav-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border: 1px solid rgba(12, 217, 196, 0.22);
    border-radius: 7px;
    background: rgba(12, 217, 196, 0.055);
  }

  .nav-icon svg {
    width: 20px;
    height: 20px;
  }

  .nav-arrow {
    display: block;
    width: 19px;
    height: 19px;
    margin-inline-start: auto;
    color: rgba(255, 255, 255, 0.42);
    transition: color 0.22s ease, transform 0.22s ease;
  }

  .main-nav a:hover .nav-icon,
  .main-nav a.active .nav-icon {
    border-color: rgba(var(--green-rgb), 0.42);
    background: rgba(var(--green-rgb), 0.1);
  }

  .main-nav a:hover .nav-arrow,
  .main-nav a.active .nav-arrow {
    color: var(--green);
    transform: translateX(-3px);
  }
}

@media (max-width: 640px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 7px;
    min-height: 92px;
    padding: 18px 14px;
    text-align: center;
  }

  .footer-bottom .footer-copyright,
  .footer-build {
    justify-content: center;
  }

  .footer-bottom .footer-copyright {
    font-size: 0.69rem;
  }

  .back-to-top,
  .back-to-top.is-visible,
  .back-to-top:hover,
  .back-to-top:focus-visible {
    position: fixed;
    top: auto;
    right: auto;
    bottom: 16px;
    left: 14px;
  }

  .back-to-top {
    width: 44px;
    height: 44px;
  }
}

.measurement-consent {
  position: fixed;
  z-index: 120;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: min(620px, calc(100vw - 36px));
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(var(--green-rgb), 0.55);
  border-radius: 7px;
  background: rgba(7, 27, 29, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.measurement-consent > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-content: center;
  border: 1px solid rgba(12, 217, 196, 0.42);
  border-radius: 6px;
  color: var(--green);
  font-family: Consolas, monospace;
  font-weight: 800;
}

.measurement-consent > div:nth-child(2) {
  min-width: 0;
}

.measurement-consent b {
  color: #fff;
  font-size: 0.78rem;
}

.measurement-consent p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.7;
}

.measurement-consent > div:last-child {
  display: flex;
  align-items: center;
  gap: 7px;
}

.measurement-consent button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  background: #0d2527;
  color: #fff;
  font: inherit;
  font-size: 0.62rem;
  font-weight: 800;
  cursor: pointer;
}

.measurement-consent button:last-child {
  border-color: var(--green);
  background: var(--green);
  color: #031507;
}

@media (max-width: 700px) {
  .measurement-consent {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 9px;
    padding: 11px;
  }

  .measurement-consent > span {
    width: 38px;
    height: 38px;
  }

  .measurement-consent > div:last-child {
    grid-column: 1 / -1;
  }

  .measurement-consent button {
    flex: 1 1 0;
  }
}

@media (max-width: 390px) {
  .measurement-consent p {
    font-size: 0.61rem;
  }

  .measurement-consent button {
    padding-inline: 8px;
    font-size: 0.57rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal[data-reveal],
  .reveal[data-reveal].is-visible {
    opacity: 1 !important;
    clip-path: none !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  .clients-summary.reveal > *,
  .cta-panel.reveal .cta-points li,
  .process-console.reveal .process-step,
  .process-console.reveal .process-delivery > div,
  .final-panel.reveal .final-benefits li {
    opacity: 1 !important;
    translate: none !important;
    transition: none !important;
  }

  .section-scanline {
    display: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
