/* 1. Design tokens and global base */

:root {
  --bg: #03050b;
  --bg-soft: #070b15;
  --panel: rgba(8, 13, 27, 0.76);
  --panel-strong: rgba(13, 18, 36, 0.92);
  --line: rgba(161, 142, 255, 0.18);
  --line-strong: rgba(161, 142, 255, 0.34);
  --text: #f6f7fb;
  --muted: #aeb4c8;
  --dim: #72788f;
  --violet: #9b6cff;
  --blue: #3867ff;
  --cyan: #33d7ff;
  --mint: #72f0c2;
  --shadow: rgba(64, 49, 255, 0.35);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

#works,
[data-case-category] {
  scroll-margin-top: 96px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(79, 90, 255, 0.2), transparent 30rem),
    radial-gradient(circle at 12% 26%, rgba(131, 73, 255, 0.16), transparent 24rem),
    linear-gradient(135deg, #03050b 0%, #050914 42%, #02040a 100%);
}

body.menu-open,
body.planner-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 64% 20%, black, transparent 70%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(3, 5, 11, 0.1), var(--bg) 88%);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  background: var(--violet);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  outline: 2px solid white;
  outline-offset: 2px;
  transform: translateY(0);
}

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

img,
svg {
  display: block;
}

button {
  font: inherit;
}

.btn,
button {
  border: 0;
}

/* 2. Header, navigation and shared controls */

.site-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  overflow: hidden;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
  padding: 14px 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    backdrop-filter 0.2s ease;
}

.header.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(3, 5, 11, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(155, 108, 255, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(155, 108, 255, 0.28), rgba(51, 215, 255, 0.12)),
    rgba(12, 16, 34, 0.88);
  box-shadow: 0 0 26px rgba(105, 74, 255, 0.45);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: white;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.brand-mark.small {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

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

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 34px);
}

.nav a,
.header-action,
.outline-link,
.case-card a {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.nav a:hover,
.case-card a:hover {
  color: var(--violet);
}

.nav a[aria-current="page"] {
  color: #c7b6ff;
}

.header-action,
.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(13, 18, 36, 0.42);
}

.header-action:hover,
.outline-link:hover {
  border-color: rgba(155, 108, 255, 0.72);
  transform: translateY(-1px);
}

.header-action svg,
.outline-link svg,
.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  background: rgba(13, 18, 36, 0.72);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* 3. Home hero, lead form and global CTA controls */

.hero {
  position: relative;
  display: grid;
  width: min(1320px, calc(100% - 64px));
  grid-template-columns: minmax(340px, 0.72fr) minmax(620px, 1.28fr);
  align-items: center;
  gap: clamp(44px, 5vw, 76px);
  min-height: min(700px, calc(100svh - 144px));
  padding: 42px 0 52px;
  overflow: clip;
}

.hero::after {
  position: absolute;
  right: 4%;
  bottom: 34px;
  width: 60%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(155, 108, 255, 0.35), transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 470px;
}

.eyebrow,
.section-kicker,
.case-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 14px;
  border: 1px solid rgba(155, 108, 255, 0.38);
  border-radius: 999px;
  color: #c7b6ff;
  background: rgba(155, 108, 255, 0.09);
  box-shadow: inset 0 0 18px rgba(155, 108, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 470px;
  margin: 20px 0 10px;
  padding-bottom: 0.12em;
  font-size: clamp(58px, 5vw, 82px);
  font-weight: 800;
  line-height: 1.14;
  white-space: nowrap;
}

.hero h1::first-line {
  color: var(--text);
}

.hero h1 {
  background: linear-gradient(105deg, #ffffff 0%, #ffffff 42%, #a875ff 62%, #6e8cff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy p,
.panel-intro p,
.section-head p,
.studio-content p,
.cta p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.hero-copy .hero-tagline {
  max-width: 470px;
  margin: 0 0 16px;
  color: white;
  font-size: clamp(20px, 1.65vw, 26px);
  font-weight: 800;
  line-height: 1.24;
}

.hero-copy .hero-copy-text {
  max-width: 470px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.contact-note {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-actions .btn-ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.contact-note a {
  color: white;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(155, 108, 255, 0.62);
  text-underline-offset: 4px;
}

.lead-form {
  position: relative;
  display: grid;
  gap: 16px;
  max-width: 640px;
  margin-top: 24px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(161, 142, 255, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(155, 108, 255, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(9, 14, 29, 0.9), rgba(4, 7, 16, 0.78));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.js-enabled .lead-form[data-collapsible-lead-form]:not(.is-expanded) {
  display: none;
}

.lead-form[data-collapsible-lead-form] {
  transform-origin: top;
}

.lead-form[data-collapsible-lead-form].is-expanded {
  animation: leadFormReveal 0.28s ease both;
}

.lead-form > input[name="website"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form label > span {
  color: rgba(226, 219, 255, 0.78);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(161, 142, 255, 0.28);
  border-radius: 8px;
  color: white;
  background: linear-gradient(180deg, rgba(11, 15, 31, 0.92), rgba(7, 11, 24, 0.92));
  font: inherit;
  font-size: 14px;
  outline: none;
  color-scheme: dark;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.lead-form input,
.lead-form select {
  padding: 0 14px;
}

.lead-form select {
  appearance: none;
  padding-right: 42px;
  background:
    linear-gradient(45deg, transparent 50%, rgba(226, 219, 255, 0.9) 50%) calc(100% - 22px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, rgba(226, 219, 255, 0.9) 50%, transparent 50%) calc(100% - 16px) 50% / 7px 7px no-repeat,
    linear-gradient(180deg, rgba(11, 15, 31, 0.94), rgba(7, 11, 24, 0.94));
}

.lead-form select option {
  color: white;
  background: #090d1b;
}

.lead-form textarea {
  min-height: 118px;
  padding: 14px;
  resize: vertical;
  line-height: 1.55;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(174, 180, 200, 0.58);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(155, 108, 255, 0.78);
  background-color: rgba(12, 17, 34, 0.96);
  box-shadow:
    0 0 0 3px rgba(155, 108, 255, 0.16),
    0 14px 34px rgba(0, 0, 0, 0.16);
}

.lead-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}

.lead-consent input {
  display: grid;
  width: 20px;
  min-height: 20px;
  margin-top: 1px;
  place-items: center;
  appearance: none;
  border: 1px solid rgba(161, 142, 255, 0.38);
  border-radius: 6px;
  background: rgba(9, 13, 27, 0.86);
  accent-color: var(--violet);
  cursor: pointer;
}

.lead-consent input::before {
  width: 6px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  content: "";
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
}

.lead-consent input:checked {
  border-color: transparent;
  background: linear-gradient(135deg, var(--violet), var(--blue));
}

.lead-consent input:checked::before {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.lead-form .lead-consent > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
  text-transform: none;
}

.lead-consent a,
.planner-consent a {
  color: white;
  text-decoration: underline;
  text-decoration-color: rgba(155, 108, 255, 0.62);
  text-underline-offset: 3px;
}

.lead-submit {
  width: fit-content;
  min-width: 190px;
  min-height: 56px;
  padding: 0 28px;
}

.lead-submit:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.lead-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.lead-status.is-success {
  color: var(--mint);
}

.lead-status.is-error {
  color: #ff9fbc;
}

.btn,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.btn {
  padding: 0 24px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.btn-primary,
.mini-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  box-shadow: 0 18px 40px rgba(70, 84, 255, 0.34);
}

.btn-primary::after,
.mini-button::after {
  position: absolute;
  inset: -1px;
  z-index: 0;
  content: "";
  background: linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, 0.34) 48%, transparent 68%);
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 0.2s ease,
    transform 0.65s ease;
}

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

.btn:focus-visible,
.mini-button:focus-visible,
.header-action:focus-visible,
.outline-link:focus-visible,
.menu-toggle:focus-visible,
.filter-pill:focus-visible,
.case-card a:focus-visible,
.planner-close:focus-visible,
.planner-icon-button:focus-visible,
.planner-send:focus-visible,
.planner-action:focus-visible,
.planner-file button:focus-visible {
  outline: 2px solid rgba(114, 240, 194, 0.92);
  outline-offset: 3px;
}

.btn-primary:hover,
.mini-button:hover {
  box-shadow: 0 22px 54px rgba(70, 84, 255, 0.46);
}

.btn-primary:hover::after,
.mini-button:hover::after {
  opacity: 0.8;
  transform: translateX(120%);
}

.btn-ghost {
  border: 1px solid transparent;
  color: white;
}

.btn-ghost:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.play-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.play-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero-art {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 0;
  margin-right: 0;
}

.hero-art::before {
  position: absolute;
  inset: -28% -20% -24% -18%;
  z-index: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(ellipse at 64% 58%, rgba(57, 66, 255, 0.24), rgba(80, 48, 255, 0.12) 38%, transparent 68%);
  filter: blur(24px);
  opacity: 0.95;
  display: none;
}

.hero-map {
  position: relative;
  isolation: isolate;
  z-index: 1;
  width: min(920px, 100%);
  max-width: 100%;
  aspect-ratio: 131 / 72;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-map::before {
  position: absolute;
  inset: -1px;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, #030711 0%, rgba(3, 7, 17, 0.92) 7%, rgba(3, 7, 17, 0) 23%, rgba(3, 7, 17, 0) 82%, rgba(3, 7, 17, 0.72) 95%, #030711 100%),
    linear-gradient(180deg, #030711 0%, rgba(3, 7, 17, 0.9) 9%, rgba(3, 7, 17, 0) 24%, rgba(3, 7, 17, 0) 68%, rgba(3, 7, 17, 0.76) 87%, #030711 100%);
  filter: none;
  opacity: 1;
  display: none;
}

.hero-map::after {
  position: absolute;
  inset: -6% -4% -8% 6%;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(114, 240, 194, 0.08) 48%, rgba(155, 108, 255, 0.26) 50%, rgba(56, 103, 255, 0.08) 53%, transparent 60%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 22px);
  filter: blur(0.2px);
  mix-blend-mode: screen;
  opacity: 0.56;
  transform: translateX(-46%) skewX(-11deg);
  animation: heroMapScan 7.6s ease-in-out 1.2s infinite;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  display: none;
}

.hero-media-shell {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 9%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 84%, transparent 100%);
  mask-composite: intersect;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 9%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 84%, transparent 100%);
  -webkit-mask-composite: source-in;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
}

.hero-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroImageDrift 13s ease-in-out infinite;
  filter: saturate(1.08) contrast(1.04);
  mix-blend-mode: screen;
  transform-origin: 50% 58%;
}

.hero-topic-zone {
  position: absolute;
  z-index: 80;
  display: block;
  min-width: 118px;
  min-height: 70px;
  color: white;
  cursor: pointer;
  outline: none;
  text-decoration: none;
}

.hero-topic-zone::before {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(155, 108, 255, 0);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--zone-glow-x, 50%) var(--zone-glow-y, 50%), rgba(155, 108, 255, 0.18), transparent 56%),
    linear-gradient(135deg, rgba(155, 108, 255, 0.04), transparent 62%);
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.hero-topic-zone::after {
  position: absolute;
  width: 18px;
  height: 18px;
  content: "";
  border-top: 1px solid rgba(255, 255, 255, 0.44);
  border-left: 1px solid rgba(155, 108, 255, 0.58);
  opacity: 0;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.hero-topic-zone span {
  position: absolute;
  z-index: 1;
  display: inline-block;
  max-width: min(220px, 100%);
  color: rgba(255, 255, 255, 0.94);
  font-family: "SF Pro Display", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 21px;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
  isolation: isolate;
  white-space: normal;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.78),
    0 0 18px rgba(155, 108, 255, 0.62);
  transition:
    color 0.22s ease,
    text-shadow 0.22s ease;
}

.hero-topic-zone:hover::before,
.hero-topic-zone:focus-visible::before {
  border-color: rgba(155, 108, 255, 0.34);
  opacity: 1;
  transform: scale(1);
}

.hero-topic-zone:hover::after,
.hero-topic-zone:focus-visible::after {
  opacity: 0;
  transform: translate3d(4px, -4px, 0);
}

.hero-topic-zone:hover span,
.hero-topic-zone:focus-visible span {
  color: white;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.86),
    0 0 22px rgba(114, 240, 194, 0.56),
    0 0 28px rgba(155, 108, 255, 0.82);
}

.hero-topic-zone-bots {
  --zone-glow-x: 50%;
  --zone-glow-y: 66%;
  top: 6%;
  left: 29%;
  width: 26%;
  height: 22%;
}

.hero-topic-zone-bots span {
  top: 0;
  left: 0;
}

.hero-topic-zone-bots::after {
  top: 8%;
  left: 2%;
}

.hero-topic-zone-ai {
  --zone-glow-x: 52%;
  --zone-glow-y: 56%;
  top: 1%;
  left: 53%;
  width: 16%;
  height: 18%;
}

.hero-topic-zone-ai span {
  top: 0;
  left: 53%;
  transform: translateX(-50%);
}

.hero-topic-zone-ai:hover span,
.hero-topic-zone-ai:focus-visible span {
  transform: translateX(-50%);
}

.hero-topic-zone-ai::after {
  top: 10%;
  left: 24%;
}

.hero-topic-zone-crm {
  --zone-glow-x: 44%;
  --zone-glow-y: 58%;
  top: 6%;
  right: 0;
  width: 30%;
  height: 24%;
}

.hero-topic-zone-crm span {
  top: 0;
  right: 0;
  width: 230px;
  max-width: 230px;
  text-align: left;
}

.hero-topic-zone-crm::after {
  top: 13%;
  right: 12%;
  border-right: 1px solid rgba(155, 108, 255, 0.58);
  border-left: 0;
}

.hero-topic-zone-mobile {
  --zone-glow-x: 62%;
  --zone-glow-y: 40%;
  top: 44%;
  left: 9%;
  width: 30%;
  height: 25%;
}

.hero-topic-zone-mobile span {
  top: 0;
  left: 0;
  width: 215px;
  max-width: 215px;
}

.hero-topic-zone-mobile::after {
  top: 7%;
  left: 3%;
}

.hero-topic-zone-web {
  --zone-glow-x: 45%;
  --zone-glow-y: 38%;
  top: 78%;
  left: 59%;
  width: 24%;
  height: 22%;
}

.hero-topic-zone-web span {
  top: 0;
  left: 0;
  width: 150px;
  max-width: 150px;
}

.hero-topic-zone-web::after {
  bottom: 11%;
  left: 3%;
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
}

.hero-topic-zone {
  --mx: 0px;
  --my: 0px;
  --topic-delay: 0ms;
  --beam-length: 72px;
  --beam-angle: 0deg;
  opacity: 0;
  animation: heroTopicIgnite 0.72s cubic-bezier(0.16, 1, 0.3, 1) var(--topic-delay) both;
}

.hero-topic-zone::before {
  border-color: transparent;
  background: transparent;
  opacity: 0;
  transform: scale(0.94);
  animation: none;
}

.hero-topic-zone::after {
  display: none;
}

.hero-topic-zone span {
  max-width: min(250px, 100%);
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: 21px;
  font-feature-settings:
    "ss01" 1,
    "cv01" 1;
  transform: none;
  animation: heroTopicSignal 5.2s ease-in-out calc(var(--topic-delay) + 0.9s) infinite;
}

.hero-topic-zone span::before {
  display: none;
}

.hero-topic-zone span::after {
  display: none;
}

.hero-topic-zone:hover::before,
.hero-topic-zone:focus-visible::before {
  border-color: transparent;
  opacity: 0;
  transform: none;
}

.hero-topic-zone:hover::after,
.hero-topic-zone:focus-visible::after {
  opacity: 0;
  transform: none;
}

.hero-topic-zone:hover span,
.hero-topic-zone:focus-visible span {
  color: white;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.94),
    0 0 18px rgba(255, 255, 255, 0.34),
    0 0 30px rgba(155, 108, 255, 0.76);
  transform: none;
}

.hero-topic-zone.is-pulsing::before {
  animation: none;
}

.hero-topic-zone-bots {
  --topic-delay: 0.28s;
  --beam-length: 68px;
  --beam-angle: 28deg;
}

.hero-topic-zone-ai {
  --topic-delay: 0.46s;
  --beam-length: 54px;
  --beam-angle: 86deg;
}

.hero-topic-zone-ai span {
  transform: translateX(-50%);
}

.hero-topic-zone-ai:hover span,
.hero-topic-zone-ai:focus-visible span {
  transform: translateX(-50%);
}

.hero-topic-zone-crm {
  --topic-delay: 0.64s;
  --beam-left: auto;
  --beam-right: 100%;
  --beam-length: 82px;
  --beam-angle: 192deg;
}

.hero-topic-zone-crm span::after {
  display: none;
}

.hero-topic-zone-mobile {
  --topic-delay: 0.82s;
  --beam-length: 72px;
  --beam-angle: -18deg;
}

.hero-topic-zone-web {
  --topic-delay: 1s;
  --beam-length: 80px;
  --beam-angle: -28deg;
}

.trust-strip {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 32px;
  width: min(var(--max), calc(100% - 48px));
  min-height: 96px;
  margin: 0 auto 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-strip p {
  margin: 0;
  color: white;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.trust-logos span {
  color: rgba(219, 224, 240, 0.38);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
}

.js-enabled .trust-strip.reveal .trust-logos span {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 0.62s ease,
    filter 0.62s ease,
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-enabled .trust-strip.reveal.is-visible .trust-logos span {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

.js-enabled .trust-strip.reveal.is-visible .trust-logos span:nth-child(1) {
  transition-delay: 90ms;
}

.js-enabled .trust-strip.reveal.is-visible .trust-logos span:nth-child(2) {
  transition-delay: 150ms;
}

.js-enabled .trust-strip.reveal.is-visible .trust-logos span:nth-child(3) {
  transition-delay: 210ms;
}

.js-enabled .trust-strip.reveal.is-visible .trust-logos span:nth-child(4) {
  transition-delay: 270ms;
}

.js-enabled .trust-strip.reveal.is-visible .trust-logos span:nth-child(5) {
  transition-delay: 330ms;
}

.js-enabled .trust-strip.reveal.is-visible .trust-logos span:nth-child(6) {
  transition-delay: 390ms;
}

.solution-section {
  padding-top: 58px;
}

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

.solution-card {
  min-height: 270px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(14, 20, 38, 0.88), rgba(6, 10, 21, 0.92)),
    radial-gradient(circle at 16% 0, rgba(114, 240, 194, 0.12), transparent 12rem);
}

.solution-card span {
  display: inline-flex;
  margin-bottom: 44px;
  color: rgba(114, 240, 194, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.solution-card h3 {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.25;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* 4. Home page sections and reusable cards */

.automation-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(10, 15, 31, 0.94), rgba(3, 6, 14, 0.86)),
    radial-gradient(circle at 19% 94%, rgba(155, 108, 255, 0.24), transparent 18rem);
  box-shadow:
    inset 0 0 0 1px rgba(155, 108, 255, 0.04),
    0 24px 90px rgba(0, 0, 0, 0.22);
}

.panel-intro {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.panel-intro h2,
.section-head h2,
.studio h2,
.cta h2 {
  max-width: 620px;
  margin: 16px 0 18px;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 750;
  line-height: 1.12;
}

.mini-button {
  min-height: 46px;
  margin-top: 26px;
  padding: 0 22px;
}

.orbital-widget {
  position: absolute;
  right: 6%;
  bottom: -18px;
  width: 290px;
  height: 220px;
  transform: perspective(700px) rotateX(58deg) rotateZ(-22deg);
}

.orbital-widget::before,
.orbital-widget::after,
.orbital-widget i {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(155, 108, 255, 0.45);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 30px rgba(155, 108, 255, 0.22);
}

.orbital-widget::after {
  inset: 52px;
  border-color: rgba(51, 215, 255, 0.28);
}

.orbital-widget i:nth-of-type(1) {
  inset: 74px;
  border-color: rgba(114, 240, 194, 0.26);
}

.orbital-widget i:nth-of-type(2) {
  top: 34px;
  right: 86px;
  bottom: auto;
  left: auto;
  width: 8px;
  height: 8px;
  border: 0;
  background: var(--cyan);
  box-shadow: 0 0 24px var(--cyan);
}

.orbital-widget i:nth-of-type(3) {
  top: 96px;
  right: 38px;
  bottom: auto;
  left: auto;
  width: 7px;
  height: 7px;
  border: 0;
  background: var(--violet);
  box-shadow: 0 0 24px var(--violet);
}

.cube {
  position: absolute;
  top: 62px;
  left: 98px;
  width: 96px;
  height: 96px;
  transform-style: preserve-3d;
  animation: floatCube 6s ease-in-out infinite;
}

.cube span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(194, 179, 255, 0.7);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(155, 108, 255, 0.34), rgba(51, 215, 255, 0.08));
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.06),
    0 0 42px rgba(155, 108, 255, 0.42);
}

.cube span:nth-child(1) {
  transform: translateZ(48px);
}

.cube span:nth-child(2) {
  transform: rotateY(90deg) translateZ(48px);
}

.cube span:nth-child(3) {
  transform: rotateX(90deg) translateZ(48px);
}

@keyframes floatCube {
  0%,
  100% {
    transform: translateZ(0) rotateZ(0deg);
  }

  50% {
    transform: translateZ(18px) rotateZ(8deg);
  }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 34px;
  align-content: center;
}

.service-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-height: 120px;
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(155, 108, 255, 0.48);
  border-radius: 8px;
  color: var(--violet);
  background: rgba(155, 108, 255, 0.08);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card h3,
.case-card h3,
.step h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.35;
}

.service-card p,
.case-card p,
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-pages-strip {
  padding-top: 58px;
}

.service-page-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.service-page-card {
  display: grid;
  min-height: 206px;
  align-content: space-between;
  gap: 22px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(14, 20, 38, 0.88), rgba(6, 10, 21, 0.92)),
    radial-gradient(circle at 18% 0, rgba(155, 108, 255, 0.14), transparent 12rem),
    radial-gradient(circle at 88% 100%, rgba(51, 215, 255, 0.08), transparent 10rem);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.service-page-card:hover,
.service-page-card:focus-visible {
  border-color: rgba(155, 108, 255, 0.62);
  background:
    linear-gradient(180deg, rgba(19, 25, 48, 0.94), rgba(7, 12, 24, 0.96)),
    radial-gradient(circle at 18% 0, rgba(155, 108, 255, 0.2), transparent 12rem),
    radial-gradient(circle at 88% 100%, rgba(51, 215, 255, 0.12), transparent 10rem);
  outline: none;
  transform: translateY(-2px);
}

.service-page-card span {
  color: rgba(114, 240, 194, 0.86);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.service-page-card h3 {
  margin: auto 0 0;
  color: white;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.service-page-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.cases-section,
.process,
.studio,
.cta {
  padding-top: 68px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 420px;
}

.outline-link {
  flex: 0 0 auto;
}

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

.case-card {
  position: relative;
  min-height: 344px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(15, 21, 39, 0.9), rgba(7, 11, 22, 0.95)),
    radial-gradient(circle at 50% 0, rgba(155, 108, 255, 0.2), transparent 14rem);
}

.case-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(3, 5, 11, 0.68));
}

.case-visual {
  position: relative;
  height: 152px;
  margin: -2px -2px 18px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 60% 25%, rgba(155, 108, 255, 0.28), transparent 9rem),
    linear-gradient(135deg, rgba(21, 27, 52, 0.96), rgba(5, 8, 17, 0.94));
}

.portfolio-shot {
  background: #060913;
}

.portfolio-shot::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 5, 11, 0) 58%, rgba(3, 5, 11, 0.42)),
    radial-gradient(circle at 50% 0, rgba(155, 108, 255, 0.12), transparent 18rem);
}

.portfolio-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.94) contrast(1.02);
}

.bot-asset-shot,
.mobile-app-shot,
.mobile-carousel-shot {
  background:
    radial-gradient(circle at 50% 34%, rgba(51, 215, 255, 0.14), transparent 12rem),
    radial-gradient(circle at 50% 74%, rgba(155, 108, 255, 0.18), transparent 13rem),
    linear-gradient(145deg, rgba(11, 16, 31, 0.98), rgba(4, 7, 15, 0.98));
}

.bot-asset-shot img,
.mobile-app-shot img {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  object-fit: contain;
}

.bot-asset-shot img {
  padding: 20px;
  filter: saturate(1.06) contrast(1.04) drop-shadow(0 22px 42px rgba(0, 0, 0, 0.3));
}

.mobile-app-shot img {
  padding: 8px 10px;
  filter: saturate(1.02) contrast(1.02) drop-shadow(0 22px 44px rgba(0, 0, 0, 0.36));
}

.mobile-carousel-shot {
  isolation: isolate;
}

.mobile-carousel-shot .portfolio-slide {
  position: absolute;
  inset: 10px;
  z-index: 1;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: contain;
  object-position: center;
  opacity: 0;
  filter: saturate(1.02) contrast(1.02) drop-shadow(0 24px 46px rgba(0, 0, 0, 0.34));
  transform: translateX(24px) scale(0.97);
  animation: fitnessSlideShow 21s ease-in-out infinite;
  animation-delay: 0s;
}

.mobile-carousel-shot .portfolio-slide:first-child {
  opacity: 1;
}

.mobile-carousel-shot .portfolio-slide:nth-child(2) {
  animation-delay: 3s;
}

.mobile-carousel-shot .portfolio-slide:nth-child(3) {
  animation-delay: 6s;
}

.mobile-carousel-shot .portfolio-slide:nth-child(4) {
  animation-delay: 9s;
}

.mobile-carousel-shot .portfolio-slide:nth-child(5) {
  animation-delay: 12s;
}

.mobile-carousel-shot .portfolio-slide:nth-child(6) {
  animation-delay: 15s;
}

.mobile-carousel-shot .portfolio-slide:nth-child(7) {
  animation-delay: 18s;
}

.screen,
.phone,
.chat-row,
.telegram-orb,
.floating-panel,
.agent-dot {
  position: absolute;
}

.visual-dashboard .screen {
  top: 34px;
  left: 22px;
  width: 132px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(230, 236, 255, 0.9);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
  transform: perspective(420px) rotateY(-18deg) rotateX(8deg);
}

.visual-dashboard .screen span {
  display: block;
  width: 64%;
  height: 8px;
  margin: 11px 0 0 13px;
  border-radius: 99px;
  background: rgba(63, 70, 112, 0.18);
}

.visual-dashboard .screen span:nth-child(2) {
  width: 44%;
}

.visual-dashboard .screen span:nth-child(3) {
  width: 76%;
}

.floating-panel {
  right: 28px;
  bottom: 24px;
  width: 82px;
  height: 62px;
  border: 1px solid rgba(155, 108, 255, 0.44);
  border-radius: 8px;
  background: rgba(12, 16, 34, 0.88);
  transform: perspective(380px) rotateY(20deg) rotateX(8deg);
}

.phone {
  top: 22px;
  width: 78px;
  height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    repeating-linear-gradient(180deg, rgba(155, 108, 255, 0.28) 0 12px, transparent 12px 26px),
    #080d1d;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.42);
}

.phone-left {
  left: 52px;
  transform: rotate(-7deg);
}

.phone-right {
  right: 52px;
  transform: rotate(10deg);
}

.visual-ai {
  padding: 24px;
}

.chat-row {
  left: 24px;
  width: calc(100% - 58px);
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.chat-row:nth-child(1) {
  top: 26px;
}

.chat-row:nth-child(2) {
  top: 66px;
  width: calc(100% - 84px);
}

.chat-row:nth-child(3) {
  top: 106px;
  width: calc(100% - 110px);
}

.agent-dot {
  right: 22px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan), var(--violet) 52%, rgba(9, 13, 27, 0.92) 54%);
  box-shadow: 0 0 32px rgba(155, 108, 255, 0.58);
}

.telegram-orb {
  right: 35px;
  bottom: 24px;
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: white;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.8), transparent 20%),
    linear-gradient(145deg, rgba(230, 238, 255, 0.86), rgba(96, 106, 158, 0.74) 35%, rgba(20, 23, 45, 0.95));
  box-shadow: 0 18px 46px rgba(57, 73, 164, 0.42);
}

.telegram-orb svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.case-tag {
  position: relative;
  min-height: 22px;
  padding: 0 8px;
  font-size: 10px;
  color: rgba(226, 219, 255, 0.78);
}

.case-card h3,
.case-card p,
.case-card a {
  position: relative;
  z-index: 1;
}

.case-card h3 {
  margin-top: 12px;
  min-height: 46px;
}

.case-card a {
  display: inline-flex;
  gap: 6px;
  margin-top: 18px;
  color: #a98cff;
}

/* 5. Cases page catalog and filters */

.cases-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.64fr);
  gap: 42px;
  align-items: end;
  min-height: 500px;
  padding: 86px 0 54px;
}

.cases-hero h1 {
  max-width: 780px;
  margin: 20px 0 22px;
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 800;
  line-height: 1.04;
  background: linear-gradient(105deg, #ffffff 0%, #ffffff 52%, #9b6cff 72%, #33d7ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cases-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.cases-hero-actions {
  margin-top: 32px;
}

.cases-hero-metrics {
  display: grid;
  gap: 12px;
}

.cases-hero-metrics div {
  min-height: 122px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 15% 0, rgba(155, 108, 255, 0.18), transparent 12rem),
    rgba(11, 16, 32, 0.72);
}

.cases-hero-metrics strong {
  display: block;
  margin-bottom: 14px;
  color: white;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.cases-hero-metrics span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.case-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 34px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.case-guide h2 {
  max-width: 720px;
  margin: 18px 0 14px;
  font-size: 44px;
  line-height: 1.05;
}

.case-guide p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.case-guide-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-guide-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(12, 17, 32, 0.56);
}

.case-guide-steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(114, 240, 194, 0.24);
  border-radius: 999px;
  color: #dbf8ef;
  background: rgba(114, 240, 194, 0.08);
  font-size: 14px;
}

.case-guide-steps span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.cases-catalog {
  padding-top: 34px;
}

.filtered-entry .cases-hero {
  display: none;
}

.filtered-entry .cases-catalog {
  padding-top: 78px;
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 520px;
}

.case-filter-panel {
  display: grid;
  gap: 16px;
  justify-items: end;
}

.case-filter-group {
  display: grid;
  gap: 8px;
}

.case-filter-label {
  color: rgba(232, 236, 255, 0.62);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
}

.case-filter-note {
  max-width: 520px;
  margin: -2px 0 0;
  color: rgba(232, 236, 255, 0.6);
  font-size: 13px;
  line-height: 1.55;
  text-align: right;
}

.filter-pill {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(161, 142, 255, 0.22);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(13, 18, 36, 0.58);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.filter-pill:hover,
.filter-pill.is-active {
  border-color: rgba(155, 108, 255, 0.72);
  color: white;
  background: rgba(155, 108, 255, 0.18);
}

.filter-pill:hover {
  transform: translateY(-1px);
}

.all-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.46fr) minmax(0, 1fr);
  min-height: 368px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(14, 20, 38, 0.92), rgba(6, 10, 21, 0.95)),
    radial-gradient(circle at 0 0, rgba(155, 108, 255, 0.2), transparent 15rem);
}

.case-inline-cta {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 220px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(114, 240, 194, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0, rgba(114, 240, 194, 0.16), transparent 16rem),
    linear-gradient(135deg, rgba(13, 20, 36, 0.96), rgba(8, 11, 24, 0.94));
}

.case-inline-cta h3 {
  max-width: 720px;
  margin: 16px 0 12px;
  font-size: 34px;
  line-height: 1.1;
}

.case-inline-cta p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.case-inline-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.project-card.is-hidden {
  display: none;
}

.project-card .case-visual {
  height: 100%;
  min-height: 100%;
  margin: 0;
  border-radius: 0;
}

.project-card:has(.portfolio-shot) {
  grid-template-columns: 1fr;
  min-height: auto;
}

.project-card:has(.portfolio-shot) .portfolio-shot {
  height: 232px;
  min-height: 232px;
}

.project-card:has(.bot-asset-shot) .bot-asset-shot {
  height: 252px;
  min-height: 252px;
}

.project-card:has(.mobile-app-shot) .mobile-app-shot,
.project-card:has(.mobile-carousel-shot) .mobile-carousel-shot {
  height: 420px;
  min-height: 420px;
}

.project-card-body {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.project-card h3 {
  margin: 14px 0 12px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.16;
}

.project-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -6px 0 18px;
}

.project-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(114, 240, 194, 0.18);
  border-radius: 999px;
  color: rgba(219, 248, 239, 0.78);
  background: rgba(114, 240, 194, 0.07);
  font-size: 11px;
  font-weight: 850;
}

.project-details {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
}

.project-details div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.project-details dt,
.project-details dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.project-details dt {
  color: #c7b6ff;
  font-weight: 900;
}

.project-details dd {
  color: var(--muted);
}

.project-details a {
  color: rgba(238, 242, 255, 0.94);
  font-weight: 850;
  text-decoration-color: rgba(155, 108, 255, 0.7);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition:
    color 0.2s ease,
    text-decoration-color 0.2s ease;
}

.project-details a:hover,
.project-details a:focus-visible {
  color: white;
  text-decoration-color: rgba(114, 240, 194, 0.9);
  outline: none;
}

.project-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  margin-top: 18px;
  padding: 0 14px;
  border: 1px solid rgba(155, 108, 255, 0.42);
  border-radius: 8px;
  color: white;
  background: rgba(155, 108, 255, 0.12);
  font-size: 13px;
  font-weight: 900;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.project-action:hover,
.project-action:focus-visible {
  border-color: rgba(155, 108, 255, 0.76);
  background: rgba(155, 108, 255, 0.2);
  outline: none;
  transform: translateY(-1px);
}

/* 6. Resources page */

.resources-page {
  padding-bottom: 46px;
}

.resources-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.86fr);
  gap: 44px;
  align-items: center;
  min-height: 560px;
  padding: 64px 0 46px;
}

.resources-hero h1 {
  max-width: 760px;
  margin: 20px 0 22px;
  font-size: 62px;
  line-height: 1.04;
}

.resources-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.resources-hero-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(11, 16, 32, 0.72);
}

.resources-hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(3, 5, 11, 0.08), rgba(3, 5, 11, 0.26)),
    radial-gradient(circle at 20% 20%, rgba(114, 240, 194, 0.16), transparent 14rem);
}

.resources-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.resource-topics,
.resource-articles {
  padding-top: 54px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.resource-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: var(--text);
  background:
    radial-gradient(circle at 16% 0, rgba(155, 108, 255, 0.15), transparent 13rem),
    rgba(12, 17, 32, 0.72);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  border-color: rgba(155, 108, 255, 0.58);
  background:
    radial-gradient(circle at 16% 0, rgba(155, 108, 255, 0.22), transparent 13rem),
    rgba(15, 21, 40, 0.86);
  outline: none;
  transform: translateY(-2px);
}

.resource-card span,
.article-meta span {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(114, 240, 194, 0.18);
  border-radius: 999px;
  color: rgba(219, 248, 239, 0.82);
  background: rgba(114, 240, 194, 0.07);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.resource-card h3 {
  margin: 22px 0 12px;
  font-size: 25px;
  line-height: 1.16;
}

.resource-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.resource-articles {
  display: grid;
  gap: 18px;
}

.resource-articles .section-head {
  margin-bottom: 10px;
}

.resource-article {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(14, 20, 38, 0.9), rgba(7, 10, 22, 0.92)),
    radial-gradient(circle at 100% 0, rgba(51, 215, 255, 0.1), transparent 14rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.resource-article h2 {
  max-width: 840px;
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
}

.resource-article h3 {
  max-width: 780px;
  margin: 0;
  font-size: 22px;
  line-height: 1.22;
}

.resource-article p,
.resource-article li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.resource-article p {
  max-width: 860px;
  margin: 0;
}

.resource-article ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 4px;
  padding: 22px;
  border: 1px solid rgba(155, 108, 255, 0.22);
  border-radius: 8px;
  background: rgba(155, 108, 255, 0.09);
}

.article-cta h3 {
  margin-bottom: 8px;
}

.article-cta p {
  font-size: 14px;
}

.article-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  color: #c7b6ff;
  background: rgba(13, 18, 36, 0.5);
  font-size: 13px;
  font-weight: 850;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.article-links a:hover,
.article-links a:focus-visible {
  border-color: rgba(155, 108, 255, 0.62);
  color: white;
  outline: none;
  transform: translateY(-1px);
}

.resource-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 250px;
  margin-top: 54px;
  padding: 30px;
  border: 1px solid rgba(114, 240, 194, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0, rgba(114, 240, 194, 0.16), transparent 16rem),
    linear-gradient(135deg, rgba(13, 20, 36, 0.96), rgba(8, 11, 24, 0.94));
}

.resource-final-cta h2 {
  max-width: 720px;
  margin: 16px 0 12px;
  font-size: 40px;
  line-height: 1.1;
}

.resource-final-cta p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* 7. Visual mockups and decorative UI illustrations */

.visual-crm .crm-table {
  position: absolute;
  top: 30px;
  left: 24px;
  width: calc(100% - 54px);
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 13px, transparent 13px 26px),
    linear-gradient(90deg, rgba(155, 108, 255, 0.2) 0 24%, transparent 24% 100%),
    rgba(8, 13, 27, 0.88);
}

.visual-crm .crm-chart {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 86px;
  height: 86px;
  border: 14px solid rgba(155, 108, 255, 0.26);
  border-top-color: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(51, 215, 255, 0.22);
}

.visual-store .store-window {
  position: absolute;
  top: 28px;
  left: 28px;
  width: calc(100% - 58px);
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(114, 240, 194, 0.32) 0 33%, transparent 33%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 28px, transparent 28px 46px),
    rgba(8, 13, 27, 0.9);
}

.visual-store .store-badge {
  position: absolute;
  right: 32px;
  bottom: 30px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(114, 240, 194, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle, rgba(114, 240, 194, 0.82), rgba(155, 108, 255, 0.72) 58%, rgba(8, 13, 27, 0.92) 60%);
  box-shadow: 0 0 32px rgba(114, 240, 194, 0.24);
}

.visual-landing .landing-browser {
  position: absolute;
  top: 26px;
  left: 24px;
  width: calc(100% - 48px);
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0 18px, transparent 18px),
    linear-gradient(135deg, rgba(155, 108, 255, 0.34), rgba(51, 215, 255, 0.1)),
    rgba(8, 13, 27, 0.88);
}

.visual-landing .landing-card {
  position: absolute;
  right: 30px;
  bottom: 26px;
  width: 104px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.visual-analytics .analytics-bars {
  position: absolute;
  bottom: 34px;
  left: 30px;
  width: 150px;
  height: 116px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 48%, rgba(155, 108, 255, 0.68) 48%),
    linear-gradient(90deg, transparent 0 18%, rgba(51, 215, 255, 0.42) 18% 30%, transparent 30% 42%, rgba(155, 108, 255, 0.62) 42% 54%, transparent 54% 66%, rgba(114, 240, 194, 0.42) 66% 78%, transparent 78%);
}

.visual-analytics .analytics-ring {
  position: absolute;
  top: 34px;
  right: 34px;
  width: 92px;
  height: 92px;
  border: 13px solid rgba(255, 255, 255, 0.08);
  border-right-color: var(--violet);
  border-bottom-color: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(155, 108, 255, 0.28);
}

/* 8. Trust, process, studio, FAQ and CTA */

.trust-proof {
  padding-top: 68px;
}

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

.trust-proof-card {
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(14, 20, 38, 0.88), rgba(6, 10, 21, 0.94)),
    radial-gradient(circle at 14% 0, rgba(114, 240, 194, 0.12), transparent 12rem);
}

.trust-proof-card span {
  display: inline-flex;
  margin-bottom: 40px;
  color: rgba(114, 240, 194, 0.88);
  font-size: 13px;
  font-weight: 900;
}

.trust-proof-card h3 {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.25;
}

.trust-proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 14px;
  margin-top: 14px;
}

.team-panel,
.stack-panel,
.after-request {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(14, 20, 38, 0.9), rgba(6, 10, 21, 0.94)),
    radial-gradient(circle at 94% 0, rgba(155, 108, 255, 0.14), transparent 16rem);
}

.team-panel,
.stack-panel {
  min-height: 410px;
  padding: 26px;
}

.panel-label {
  width: fit-content;
  min-height: 26px;
  margin-bottom: 18px;
  padding: 5px 10px;
  border: 1px solid rgba(114, 240, 194, 0.18);
  border-radius: 999px;
  color: rgba(219, 248, 239, 0.78);
  background: rgba(114, 240, 194, 0.07);
  font-size: 11px;
  font-weight: 850;
  line-height: 14px;
}

.team-panel h3,
.stack-panel h3,
.after-request h3 {
  margin: 0;
  color: white;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.16;
}

.role-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.role-list div {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.role-list strong,
.after-request strong {
  color: white;
  font-size: 14px;
  line-height: 1.45;
}

.role-list span,
.after-request span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.stack-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.stack-groups div {
  min-height: 136px;
  padding: 18px;
  border: 1px solid rgba(155, 108, 255, 0.16);
  border-radius: 8px;
  background: rgba(155, 108, 255, 0.07);
}

.stack-groups span {
  display: block;
  margin-bottom: 18px;
  color: #c7b6ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.stack-groups p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.after-request {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 14px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(14, 20, 38, 0.92), rgba(6, 10, 21, 0.95)),
    radial-gradient(circle at 82% 30%, rgba(51, 215, 255, 0.12), transparent 16rem);
}

.after-request ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.after-request li {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.after-request strong {
  display: block;
  margin-bottom: 12px;
}

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

.step {
  min-height: 232px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(14, 20, 38, 0.88), rgba(6, 10, 21, 0.92)),
    radial-gradient(circle at 20% 0, rgba(51, 215, 255, 0.12), transparent 12rem);
}

.step span {
  display: inline-flex;
  margin-bottom: 46px;
  color: rgba(155, 108, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
}

.studio {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 48px;
  align-items: center;
}

.studio-content {
  padding: 40px 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stats div {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(11, 16, 32, 0.76);
}

.stats strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  background: linear-gradient(135deg, #fff, #8b98ff 56%, #72f0c2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.faq-section {
  padding-top: 68px;
}

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

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(14, 20, 38, 0.88), rgba(6, 10, 21, 0.92)),
    radial-gradient(circle at 94% 0, rgba(155, 108, 255, 0.12), transparent 16rem);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 70px;
  padding: 0 22px;
  cursor: pointer;
  color: white;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(161, 142, 255, 0.24);
  border-radius: 8px;
  content: "+";
  color: #c7b6ff;
  background: rgba(155, 108, 255, 0.1);
  font-size: 18px;
  line-height: 1;
}

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

.faq-list p {
  max-width: 840px;
  margin: -6px 22px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.cta {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 30px;
  align-items: center;
  min-height: 270px;
  margin-top: 68px;
  margin-bottom: 46px;
  padding: 32px 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 38%, rgba(51, 215, 255, 0.16), transparent 18rem),
    radial-gradient(circle at 58% 45%, rgba(155, 108, 255, 0.24), transparent 15rem),
    linear-gradient(135deg, rgba(12, 17, 34, 0.95), rgba(5, 8, 17, 0.96));
}

.cta > * {
  position: relative;
  z-index: 1;
}

.cta > :first-child {
  z-index: 3;
}

.cta-visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 280px;
}

.cta-visual picture {
  position: absolute;
  inset: -68px -86px -62px -260px;
  display: block;
  overflow: hidden;
  mask-image:
    linear-gradient(90deg, transparent 0%, black 28%, black 88%, transparent 100%),
    linear-gradient(180deg, transparent 0%, black 13%, black 82%, transparent 100%);
  mask-composite: intersect;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, black 28%, black 88%, transparent 100%),
    linear-gradient(180deg, transparent 0%, black 13%, black 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
}

.cta-visual::after {
  position: absolute;
  inset: -74px -92px -68px -650px;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 17, 34, 0.98) 0%, rgba(12, 17, 34, 0.92) 38%, rgba(12, 17, 34, 0.58) 48%, transparent 62%, transparent 76%, rgba(5, 8, 17, 0.52) 94%, rgba(5, 8, 17, 0.95) 100%),
    linear-gradient(180deg, rgba(5, 8, 17, 0.95) 0%, transparent 18%, transparent 68%, rgba(5, 8, 17, 0.9) 100%);
}

.cta-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  filter: saturate(1.08) contrast(1.03) drop-shadow(0 24px 54px rgba(64, 49, 255, 0.22));
  mix-blend-mode: screen;
}

.ai-typing-card {
  position: absolute;
  top: 58px;
  left: clamp(12px, 5.5%, 42px);
  z-index: 2;
  display: grid;
  gap: 8px;
  width: min(300px, 84%);
  padding: 13px 15px 14px;
  border: 1px solid rgba(161, 142, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(10, 15, 31, 0.88), rgba(5, 8, 17, 0.74)),
    radial-gradient(circle at 100% 0%, rgba(114, 240, 194, 0.16), transparent 12rem);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  animation: aiTypingFloat 4.8s ease-in-out infinite;
}

.ai-typing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(114, 240, 194, 0.92);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.ai-typing-kicker::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  content: "";
  background: var(--mint);
  box-shadow: 0 0 18px rgba(114, 240, 194, 0.76);
  animation: aiTypingPulse 1.35s ease-in-out infinite;
}

.ai-typing-line {
  display: inline-block;
  width: 0;
  max-width: 100%;
  overflow: hidden;
  border-right: 2px solid rgba(255, 255, 255, 0.82);
  color: white;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
  white-space: nowrap;
  animation:
    aiTypingText 5.8s steps(20, end) infinite,
    aiTypingCaret 0.74s step-end infinite;
}

/* 9. AI planner modal and lead qualification */

.planner-modal[hidden] {
  display: none;
}

.planner-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
}

.planner-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(14px);
}

.planner-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto minmax(240px, 1fr) auto;
  width: min(920px, 100%);
  height: min(780px, calc(100svh - 44px));
  overflow: hidden;
  border: 1px solid rgba(161, 142, 255, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 12%, rgba(51, 215, 255, 0.14), transparent 19rem),
    radial-gradient(circle at 8% 24%, rgba(155, 108, 255, 0.18), transparent 18rem),
    rgba(6, 10, 21, 0.98);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.55);
}

.planner-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.planner-head h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.planner-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.planner-tools {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.planner-close,
.planner-icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(161, 142, 255, 0.24);
  border-radius: 8px;
  color: white;
  background: rgba(13, 18, 36, 0.72);
  cursor: pointer;
}

.planner-close svg,
.planner-icon-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.planner-thread {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  padding: 20px;
}

.planner-message {
  width: fit-content;
  max-width: min(680px, 88%);
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #eef1ff;
  background: rgba(14, 20, 38, 0.88);
  font-size: 14px;
  line-height: 1.62;
  white-space: pre-wrap;
}

.planner-message.user {
  justify-self: end;
  border-color: rgba(155, 108, 255, 0.32);
  background: linear-gradient(135deg, rgba(155, 108, 255, 0.22), rgba(56, 103, 255, 0.18));
}

.planner-message.assistant {
  justify-self: start;
}

.planner-message.is-typing-live::after {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 3px;
  content: "";
  background: rgba(255, 255, 255, 0.82);
  vertical-align: -0.16em;
  animation: aiPlannerCaret 0.74s step-end infinite;
}

.planner-message.system {
  justify-self: center;
  max-width: 100%;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.planner-composer {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(3, 5, 11, 0.72);
}

.planner-footer {
  max-height: min(430px, 54svh);
  overflow: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 5, 11, 0.72);
}

.planner-files {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.planner-file {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(161, 142, 255, 0.24);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(13, 18, 36, 0.76);
  font-size: 12px;
}

.planner-file button {
  color: white;
  background: transparent;
  cursor: pointer;
}

.planner-input-row {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 10px;
  align-items: end;
}

.planner-input-row textarea {
  width: 100%;
  min-height: 52px;
  max-height: 146px;
  resize: vertical;
  padding: 14px 14px;
  border: 1px solid rgba(161, 142, 255, 0.22);
  border-radius: 8px;
  color: white;
  background: rgba(10, 15, 31, 0.86);
  font: inherit;
  line-height: 1.45;
  outline: none;
}

.planner-input-row textarea:focus {
  border-color: rgba(155, 108, 255, 0.62);
}

.planner-send {
  min-height: 52px;
  padding: 0 18px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  cursor: pointer;
  font-weight: 900;
}

.planner-send:disabled,
.planner-icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.planner-icon-button.is-recording {
  border-color: rgba(255, 95, 128, 0.7);
  color: #ff9bb0;
  box-shadow: 0 0 0 4px rgba(255, 95, 128, 0.1);
}

.planner-journey {
  display: grid;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 5, 11, 0.36);
}

.planner-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.planner-progress li {
  position: relative;
  min-width: 0;
  min-height: 28px;
  padding: 7px 8px;
  border: 1px solid rgba(161, 142, 255, 0.18);
  border-radius: 8px;
  color: var(--dim);
  background: rgba(13, 18, 36, 0.56);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.planner-progress li.is-done {
  border-color: rgba(114, 240, 194, 0.28);
  color: rgba(188, 255, 233, 0.8);
  background: rgba(114, 240, 194, 0.08);
}

.planner-progress li.is-active {
  border-color: rgba(155, 108, 255, 0.72);
  color: white;
  background: linear-gradient(135deg, rgba(155, 108, 255, 0.26), rgba(51, 215, 255, 0.12));
  box-shadow: 0 0 0 3px rgba(155, 108, 255, 0.1);
}

.planner-starters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.planner-starters button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(161, 142, 255, 0.24);
  border-radius: 8px;
  color: #eef1ff;
  background: rgba(10, 15, 31, 0.82);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.planner-starters button:hover,
.planner-starters button:focus-visible {
  border-color: rgba(155, 108, 255, 0.7);
}

.planner-starters button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.planner-actions {
  display: none;
  gap: 12px;
  padding: 14px 14px 0;
}

.planner-actions.is-visible {
  display: grid;
}

.planner-lead-head {
  display: grid;
  gap: 4px;
}

.planner-lead-head strong {
  color: white;
  font-size: 14px;
  line-height: 1.25;
}

.planner-lead-head span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.planner-lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.planner-lead-grid label,
.planner-consent {
  display: grid;
  gap: 7px;
}

.planner-lead-grid label > span {
  color: rgba(226, 219, 255, 0.84);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.planner-lead-grid input,
.planner-lead-grid select {
  width: 100%;
  min-height: 40px;
  padding: 0 11px;
  border: 1px solid rgba(161, 142, 255, 0.24);
  border-radius: 8px;
  color: white;
  background: rgba(9, 13, 27, 0.82);
  font: inherit;
  font-size: 13px;
  outline: none;
  color-scheme: dark;
}

.planner-lead-grid select {
  appearance: none;
  padding-right: 34px;
  background:
    linear-gradient(45deg, transparent 50%, rgba(226, 219, 255, 0.9) 50%) calc(100% - 18px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, rgba(226, 219, 255, 0.9) 50%, transparent 50%) calc(100% - 13px) 50% / 6px 6px no-repeat,
    rgba(9, 13, 27, 0.82);
}

.planner-lead-grid select option {
  color: white;
  background: #090d1b;
}

.planner-lead-grid input:focus,
.planner-lead-grid select:focus {
  border-color: rgba(155, 108, 255, 0.78);
  box-shadow: 0 0 0 3px rgba(155, 108, 255, 0.14);
}

.planner-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.planner-consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--violet);
}

.planner-consent span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.planner-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.planner-action {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  color: white;
  background: rgba(155, 108, 255, 0.16);
  cursor: pointer;
  font-weight: 900;
}

.planner-action:disabled {
  cursor: not-allowed;
  opacity: 0.66;
}

.planner-action.primary {
  background: linear-gradient(135deg, var(--violet), var(--blue));
}

.planner-status {
  min-height: 18px;
  color: var(--muted);
  font-size: 12px;
}

.planner-file-input {
  display: none;
}

.planner-file-note {
  color: var(--dim);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.hand-line {
  position: absolute;
  top: 56%;
  right: -16%;
  width: 78%;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(30, 35, 58, 0.1), rgba(195, 207, 255, 0.42));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
  transform: rotate(-12deg);
}

.hand-line::before,
.hand-line::after {
  position: absolute;
  top: 9px;
  right: 12%;
  width: 34%;
  height: 8px;
  border-radius: 999px;
  content: "";
  background: rgba(255, 255, 255, 0.28);
}

.hand-line::after {
  top: -18px;
  right: 22%;
  width: 22%;
  transform: rotate(19deg);
}

.cta-chip {
  position: absolute;
  top: 42px;
  left: 18%;
  display: grid;
  width: 98px;
  height: 98px;
  place-items: center;
  border: 1px solid rgba(155, 108, 255, 0.5);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(155, 108, 255, 0.7), rgba(30, 55, 255, 0.72));
  box-shadow: 0 22px 58px rgba(80, 57, 255, 0.55);
  transform: rotate(-15deg);
}

/* 10. Footer, legal and service-detail pages */

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 48px));
  min-height: 104px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.footer p {
  margin: 0;
  font-size: 14px;
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.footer-links a {
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.footer-links a[href="privacy.html"],
.footer-links a[href="consent.html"] {
  color: var(--muted);
  font-size: 12px;
}

.legal-page {
  padding: 72px 0;
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  margin: 18px 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: 24px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.legal-content a {
  color: white;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(155, 108, 255, 0.62);
  text-underline-offset: 4px;
}

.legal-note {
  padding: 18px 20px;
  border: 1px solid rgba(255, 196, 87, 0.24);
  border-radius: 8px;
  background: rgba(255, 196, 87, 0.08);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.legal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(161, 142, 255, 0.22);
  border-radius: 8px;
  background: rgba(13, 18, 36, 0.76);
  text-decoration: none;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 10px;
}

.contact-method {
  display: grid;
  gap: 10px;
  min-height: 196px;
  padding: 20px;
  border: 1px solid rgba(161, 142, 255, 0.18);
  border-radius: 8px;
  background: rgba(13, 18, 36, 0.74);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.contact-method span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method strong {
  color: white;
  font-size: 17px;
  line-height: 1.35;
}

.contact-method small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.service-page {
  padding-bottom: 34px;
}

.ad-page {
  padding-bottom: 34px;
}

.ad-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 42px;
  align-items: center;
  min-height: 560px;
  padding: 70px 0 38px;
}

.ad-hero-copy h1 {
  max-width: 900px;
  margin: 20px 0 20px;
  font-size: clamp(44px, 5.3vw, 74px);
  font-weight: 800;
  line-height: 1.04;
  background: linear-gradient(105deg, #ffffff 0%, #ffffff 50%, #72f0c2 72%, #33d7ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ad-hero-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.ad-hero-actions,
.ad-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ad-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.ad-proof-row span {
  display: grid;
  min-height: 84px;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(161, 142, 255, 0.2);
  border-radius: 8px;
  color: rgba(235, 240, 255, 0.88);
  background: rgba(13, 18, 36, 0.72);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.ad-hero-panel,
.ad-card,
.ad-conversion {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(14, 20, 38, 0.9), rgba(6, 10, 21, 0.94)),
    radial-gradient(circle at 12% 0, rgba(114, 240, 194, 0.12), transparent 12rem);
}

.ad-hero-panel {
  overflow: hidden;
  min-height: 430px;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.2);
}

.ad-hero-panel picture,
.ad-hero-panel img {
  display: block;
  width: 100%;
}

.ad-hero-panel img {
  height: 230px;
  object-fit: cover;
}

.ad-panel-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 24px 28px 28px;
  color: var(--muted);
}

.ad-panel-list li {
  font-size: 15px;
  line-height: 1.6;
}

.ad-conversion {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
  gap: 26px;
  align-items: start;
  margin-top: 22px;
  padding: 28px;
}

.ad-conversion h2 {
  max-width: 720px;
  margin: 14px 0;
  color: white;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.1;
}

.ad-conversion p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.ad-card-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.ad-card {
  min-height: 126px;
  padding: 18px;
}

.ad-card strong {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(114, 240, 194, 0.88);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ad-card p {
  font-size: 14px;
}

.ad-lead-form {
  max-width: none;
  margin-top: 0;
  background: rgba(5, 8, 17, 0.58);
}

.service-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 42px;
  align-items: center;
  align-content: center;
  min-height: 520px;
  padding: 76px 0 58px;
}

.service-hero-copy h1 {
  max-width: 920px;
  margin: 20px 0 22px;
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 800;
  line-height: 1.04;
  background: linear-gradient(105deg, #ffffff 0%, #ffffff 52%, #9b6cff 72%, #33d7ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-hero-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.service-hero-panel {
  align-self: stretch;
  min-height: 320px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(14, 20, 38, 0.9), rgba(6, 10, 21, 0.94)),
    radial-gradient(circle at 16% 0, rgba(155, 108, 255, 0.18), transparent 14rem),
    radial-gradient(circle at 92% 94%, rgba(114, 240, 194, 0.1), transparent 12rem);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.2);
}

.service-hero-panel span {
  display: inline-flex;
  min-height: 28px;
  margin-bottom: 26px;
  padding: 0 10px;
  align-items: center;
  border: 1px solid rgba(114, 240, 194, 0.22);
  border-radius: 999px;
  color: rgba(219, 248, 239, 0.82);
  background: rgba(114, 240, 194, 0.08);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-hero-panel ul,
.service-info-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.service-hero-panel li,
.service-info-card li {
  font-size: 15px;
  line-height: 1.68;
}

.service-outcomes {
  padding-top: 18px;
}

.service-outcome-grid,
.service-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-outcome-grid article,
.service-info-grid article,
.service-page-cta {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(14, 20, 38, 0.88), rgba(6, 10, 21, 0.92)),
    radial-gradient(circle at 10% 0, rgba(114, 240, 194, 0.12), transparent 12rem);
}

.service-outcome {
  min-height: 220px;
  padding: 24px;
}

.service-outcome strong {
  display: inline-flex;
  margin-bottom: 42px;
  color: rgba(114, 240, 194, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.service-outcome h3,
.service-info-card h3,
.service-page-cta h2 {
  margin: 0 0 12px;
  color: white;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.16;
}

.service-outcome p,
.service-page-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.service-info-grid {
  padding-top: 16px;
}

.service-info-card {
  padding: 26px;
}

.service-info-card a {
  color: white;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(155, 108, 255, 0.62);
  text-underline-offset: 4px;
}

.service-page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 54px;
  padding: 30px;
}

.service-page-cta h2 {
  max-width: 700px;
}

.service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.reveal {
  opacity: 1;
  clip-path: none;
  transform: translateY(0);
}

.js-enabled .reveal {
  opacity: 0;
  clip-path: inset(0 0 0 0);
  filter: blur(9px);
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.82s ease,
    clip-path 0.86s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.82s ease,
    transform 0.86s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, clip-path, filter, transform;
}

.js-enabled .reveal[data-reveal="hero-title"] {
  filter: blur(12px);
  transform: translate3d(-28px, 18px, 0) scale(0.94);
}

.js-enabled .reveal[data-reveal="hero-media"] {
  filter: blur(14px);
  transform: translate3d(46px, 10px, 0) scale(0.96);
}

.js-enabled .reveal[data-reveal="headline"],
.js-enabled .reveal[data-reveal="strip"] {
  clip-path: inset(0 100% 0 0);
  transform: translate3d(0, 18px, 0);
}

.js-enabled .reveal[data-reveal="left"],
.js-enabled .reveal[data-reveal="card-left"] {
  transform: translate3d(-42px, 18px, 0) rotate(-1.2deg);
}

.js-enabled .reveal[data-reveal="right"],
.js-enabled .reveal[data-reveal="card-right"] {
  transform: translate3d(42px, 18px, 0) rotate(1.2deg);
}

.js-enabled .reveal[data-reveal="scale"],
.js-enabled .reveal[data-reveal="glow"] {
  filter: blur(12px);
  transform: translate3d(0, 26px, 0) scale(0.94);
}

.js-enabled .reveal[data-reveal="fold"] {
  transform: perspective(900px) rotateX(-9deg) translate3d(0, 26px, 0);
  transform-origin: 50% 0%;
}

.js-enabled .reveal[data-reveal="tilt"],
.js-enabled .reveal[data-reveal="card-tilt"] {
  transform: perspective(900px) rotateX(8deg) rotateY(calc(var(--reveal-turn, 1) * -5deg)) translate3d(0, 22px, 0);
  transform-origin: 50% 60%;
}

.js-enabled .reveal[data-reveal="card-rise"] {
  filter: blur(7px);
  transform: translate3d(0, 34px, 0) scale(0.97);
}

.js-enabled .reveal[data-reveal="panel"] {
  filter: blur(11px);
  transform: translate3d(0, 36px, 0) scale(0.97);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  filter: blur(0);
  transform: none;
}

.service-card,
.solution-card,
.case-card,
.project-card,
.resource-card,
.ad-card,
.trust-proof-card,
.service-info-card,
.stat-card {
  transition:
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.service-card:hover,
.solution-card:hover,
.case-card:hover,
.project-card:hover,
.resource-card:hover,
.ad-card:hover,
.trust-proof-card:hover,
.service-info-card:hover,
.stat-card:hover {
  border-color: rgba(155, 108, 255, 0.34);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}

@keyframes heroImageDrift {
  0%,
  100% {
    transform: translate3d(-3.8%, -1%, 0) scale(1.08);
  }

  45% {
    transform: translate3d(-4.4%, -2.2%, 0) scale(1.11);
  }
}

@keyframes fitnessSlideShow {
  0%,
  13.2% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  14.3%,
  100% {
    opacity: 0;
    transform: translateX(-24px) scale(0.97);
  }
}

@keyframes heroMapScan {
  0%,
  18% {
    opacity: 0;
    transform: translateX(-54%) skewX(-11deg);
  }

  38%,
  54% {
    opacity: 0.64;
  }

  78%,
  100% {
    opacity: 0;
    transform: translateX(44%) skewX(-11deg);
  }
}

@keyframes heroTopicIgnite {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 16px, 0) scale(0.9);
  }

  62% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, -2px, 0) scale(1.03);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroZoneBreath {
  0%,
  100% {
    opacity: 0.16;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.38;
    transform: scale(1.015);
  }
}

@keyframes heroTopicSignal {
  0%,
  100% {
    text-shadow:
      0 2px 18px rgba(0, 0, 0, 0.78),
      0 0 14px rgba(155, 108, 255, 0.44);
  }

  50% {
    text-shadow:
      0 2px 18px rgba(0, 0, 0, 0.86),
      0 0 22px rgba(114, 240, 194, 0.36),
      0 0 30px rgba(155, 108, 255, 0.58);
  }
}

@keyframes heroBeamPulse {
  0%,
  100% {
    opacity: 0.22;
    transform: rotate(var(--beam-angle)) scaleX(0.58);
  }

  48% {
    opacity: 0.88;
    transform: rotate(var(--beam-angle)) scaleX(1);
  }
}

@keyframes heroZoneBurst {
  0% {
    opacity: 0.9;
    transform: scale(0.96);
  }

  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes leadFormReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aiTypingText {
  0%,
  10% {
    width: 0;
  }

  46%,
  78% {
    width: 20ch;
  }

  94%,
  100% {
    width: 0;
  }
}

@keyframes aiTypingCaret {
  50% {
    border-color: transparent;
  }
}

@keyframes aiTypingFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -7px, 0);
  }
}

@keyframes aiTypingPulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.88);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes aiPlannerCaret {
  50% {
    opacity: 0;
  }
}

/* 11. Responsive rules */

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

  .js-enabled .reveal {
    opacity: 1 !important;
    clip-path: none !important;
    filter: none !important;
    transform: none !important;
  }

  .js-enabled .trust-strip.reveal .trust-logos span {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .hero-map::after,
  .hero-topic-zone,
  .hero-topic-zone::before,
  .hero-topic-zone span,
  .hero-topic-zone span::after {
    animation: none !important;
  }

  .hero-topic-zone {
    opacity: 1 !important;
  }

  .ai-typing-line {
    width: auto;
    border-right: 0;
  }

  .mobile-carousel-shot .portfolio-slide {
    animation: none !important;
    opacity: 0;
    transform: none;
  }

  .mobile-carousel-shot .portfolio-slide:first-child {
    opacity: 1;
  }
}

@media (min-width: 1081px) and (max-width: 1399px) {
  .hero-art {
    margin-right: 0;
  }

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

@media (max-width: 1080px) {
  .header-action {
    display: none;
  }

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

  .nav {
    justify-content: end;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
    padding-top: 22px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-art {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    overflow: visible;
  }

  .hero-map {
    width: 100%;
  }

  @media (min-width: 900px) {
    .hero {
      width: min(100% - 48px, 1040px);
      grid-template-columns: minmax(0, 420px) minmax(420px, 1fr);
      gap: 32px;
      align-items: center;
      min-height: min(620px, calc(100svh - 128px));
      padding-top: 34px;
    }

    .hero-copy {
      max-width: 420px;
    }

    .hero h1 {
      max-width: 420px;
      padding-bottom: 0.12em;
      font-size: clamp(56px, 6vw, 64px);
      line-height: 1.14;
    }

    .hero-copy .hero-tagline {
      max-width: 420px;
      font-size: 20px;
    }

    .hero-copy .hero-copy-text {
      max-width: 410px;
    }

    .hero-art {
      max-width: none;
      margin: 0;
    }

    .hero-map {
      width: 100%;
    }

    .hero-topic-zone span {
      font-size: 15px;
    }

  }

  .automation-panel,
  .studio,
  .ad-hero,
  .ad-conversion,
  .service-page-hero,
  .service-page-cta,
  .cta {
    grid-template-columns: 1fr;
  }

  .service-hero-panel {
    min-height: auto;
  }

  .ad-hero {
    min-height: auto;
    padding-top: 58px;
  }

  .service-cta-actions {
    justify-content: flex-start;
  }

  .panel-intro {
    min-height: 340px;
  }

  .orbital-widget {
    right: 11%;
  }

  .case-grid,
  .solution-grid,
  .service-page-links,
  .trust-proof-grid,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cases-hero,
  .resources-hero,
  .case-guide,
  .project-card,
  .case-inline-cta,
  .article-cta,
  .resource-final-cta {
    grid-template-columns: 1fr;
  }

  .cases-hero {
    min-height: auto;
    padding-top: 58px;
  }

  .cases-hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .all-cases-grid {
    grid-template-columns: 1fr;
  }

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

  .resources-hero {
    min-height: auto;
    padding-top: 58px;
  }

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

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

  .case-inline-actions {
    justify-content: flex-start;
  }

  .project-card .case-visual {
    min-height: 210px;
  }

  .service-outcome-grid,
  .service-info-grid {
    grid-template-columns: 1fr;
  }

  .delivery-grid,
  .after-request {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .section,
  .header,
  .trust-strip,
  .footer {
    width: min(100% - 32px, var(--max));
  }

  .header {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav {
    position: fixed;
    top: 72px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: rgba(6, 9, 19, 0.96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    min-height: 46px;
    padding: 0 12px;
    border-radius: 8px;
    line-height: 46px;
  }

  .nav a:hover {
    background: rgba(155, 108, 255, 0.1);
  }

  .hero h1 {
    padding-bottom: 0.12em;
    font-size: clamp(56px, 13vw, 76px);
    line-height: 1.14;
  }

  .hero-art {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    overflow: visible;
  }

  .hero-map {
    width: 100%;
  }

  .hero-topic-zone {
    display: none;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 0;
  }

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

  .automation-panel,
  .cta {
    padding: 26px;
  }

  .service-grid,
  .solution-grid,
  .service-page-links,
  .trust-proof-grid,
  .delivery-grid,
  .after-request,
  .contact-methods,
  .section-head,
  .stats,
  .footer {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .case-filters {
    justify-content: flex-start;
    max-width: none;
  }

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

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

  .resources-hero h1 {
    font-size: 44px;
  }

  .resource-article {
    padding: 24px;
  }

  .article-cta {
    align-items: start;
  }

  .case-filter-panel {
    justify-items: start;
  }

  .case-filter-group {
    width: 100%;
  }

  .case-filter-label,
  .case-filter-note {
    max-width: none;
    text-align: left;
  }

  .after-request ol {
    grid-template-columns: 1fr;
  }

  .role-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .cases-hero-metrics {
    grid-template-columns: 1fr;
  }

  .outline-link {
    width: fit-content;
  }

  .footer {
    justify-items: start;
    padding: 28px 0;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 10px;
  }

  .hero {
    overflow: hidden;
    padding-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(44px, 13.5vw, 52px);
    line-height: 1.14;
    margin-top: 18px;
  }

  .hero-copy p,
  .service-hero-copy p,
  .panel-intro p,
  .section-head p,
  .studio-content p,
  .service-page-cta p,
  .cta p {
    font-size: 15px;
  }

  .btn {
    width: 100%;
    padding: 0 18px;
  }

  .lead-form {
    padding: 14px;
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
  }

  .lead-submit {
    width: 100%;
  }

  .btn-ghost {
    justify-content: center;
  }

  .hero-art {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: 100%;
    min-height: auto;
    margin: 22px auto 0;
    opacity: 1;
  }

  .hero-map {
    width: 100%;
  }

  .automation-panel {
    gap: 24px;
  }

  .panel-intro {
    min-height: 320px;
  }

  .orbital-widget {
    right: auto;
    left: 3%;
    bottom: -30px;
    width: 240px;
    transform: perspective(700px) rotateX(58deg) rotateZ(-22deg) scale(0.85);
  }

  .service-card {
    grid-template-columns: 50px 1fr;
    min-height: 106px;
  }

  .service-page-card,
  .service-outcome,
  .service-info-card,
  .service-hero-panel,
  .service-page-cta,
  .trust-proof-card,
  .team-panel,
  .stack-panel,
  .after-request {
    padding: 20px;
  }

  .service-page-card {
    min-height: 174px;
  }

  .trust-proof-card {
    min-height: 220px;
  }

  .stack-groups {
    grid-template-columns: 1fr;
  }

  .service-cta-actions {
    width: 100%;
  }

  .service-icon {
    width: 46px;
    height: 46px;
  }

  .case-grid,
  .solution-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .cases-hero {
    padding: 28px 0 30px;
  }

  .cases-hero h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .case-guide {
    gap: 22px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .case-guide h2 {
    font-size: 32px;
  }

  .case-guide-steps li {
    grid-template-columns: 36px 1fr;
    min-height: 68px;
    padding: 12px;
  }

  .case-guide-steps strong {
    width: 36px;
    height: 36px;
  }

  .service-page-hero {
    min-height: auto;
    padding: 34px 0 28px;
  }

  .service-page-hero h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .service-page-hero p {
    font-size: 15px;
  }

  .cases-hero p {
    font-size: 15px;
  }

  .resources-hero {
    padding: 28px 0 30px;
  }

  .resources-hero h1 {
    font-size: 34px;
  }

  .resources-hero p,
  .resource-article p,
  .resource-article li {
    font-size: 15px;
  }

  .resources-hero-visual {
    min-height: 220px;
  }

  .resources-hero-visual img {
    min-height: 220px;
  }

  .resource-topics,
  .resource-articles {
    padding-top: 38px;
  }

  .resource-card {
    min-height: 210px;
    padding: 20px;
  }

  .resource-card h3 {
    font-size: 23px;
  }

  .resource-article {
    padding: 20px;
  }

  .ad-hero {
    padding: 30px 0 26px;
  }

  .ad-hero-copy h1 {
    font-size: 34px;
  }

  .ad-hero-copy p,
  .ad-conversion p,
  .ad-panel-list li {
    font-size: 15px;
  }

  .ad-hero-actions,
  .ad-link-row {
    width: 100%;
  }

  .ad-hero-actions .btn,
  .ad-link-row .btn {
    width: 100%;
  }

  .ad-hero-panel {
    min-height: auto;
  }

  .ad-hero-panel img {
    height: 170px;
  }

  .ad-panel-list {
    padding: 18px;
  }

  .ad-conversion {
    padding: 18px;
  }

  .project-card:has(.mobile-app-shot) .mobile-app-shot,
  .project-card:has(.mobile-carousel-shot) .mobile-carousel-shot {
    height: 360px;
    min-height: 360px;
  }

  .legal-page {
    padding: 34px 0;
  }

  .legal-content h1 {
    font-size: clamp(26px, 8vw, 34px);
    overflow-wrap: break-word;
  }

  .legal-content h2 {
    font-size: 22px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 15px;
  }

  .legal-note,
  .contact-method {
    padding: 16px;
  }

  .contact-method {
    min-height: auto;
  }

  .resource-article h2 {
    font-size: 28px;
  }

  .resource-article h3 {
    font-size: 20px;
  }

  .article-cta {
    padding: 18px;
  }

  .article-cta .btn,
  .resource-final-cta .btn {
    width: 100%;
  }

  .resource-final-cta {
    min-height: auto;
    padding: 20px;
  }

  .resource-final-cta h2 {
    font-size: 28px;
  }

  .cases-catalog {
    padding-top: 12px;
  }

  .filter-pill {
    min-height: 36px;
    padding: 0 12px;
  }

  .case-inline-cta {
    min-height: auto;
    padding: 20px;
  }

  .case-inline-cta h3 {
    font-size: 27px;
  }

  .case-inline-actions,
  .case-inline-actions .btn {
    width: 100%;
  }

  .case-inline-actions {
    justify-content: stretch;
  }

  .project-card .case-visual {
    min-height: 172px;
  }

  .project-card-body {
    padding: 18px;
  }

  .project-action {
    width: 100%;
  }

  .project-card h3 {
    font-size: 24px;
  }

  .project-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .case-card {
    min-height: 320px;
  }

  .cases-section,
  .solution-section,
  .service-pages-strip,
  .process,
  .studio,
  .faq-section,
  .cta {
    padding-top: 46px;
  }

  .cta {
    margin-top: 44px;
    padding: 24px;
  }

  .cta-visual {
    min-height: 150px;
  }

  .ai-typing-card {
    top: 6px;
    left: 12px;
    width: min(250px, calc(100% - 24px));
    padding: 11px 12px;
  }

  .ai-typing-line {
    font-size: 13px;
  }

  .cta-visual picture {
    inset: -38px -76px -38px -92px;
  }

  .cta-visual::after {
    inset: -42px -82px -44px -102px;
  }

  .planner-modal {
    padding: 0;
  }

  .planner-dialog {
    width: 100%;
    height: 100svh;
    border-radius: 0;
  }

  .planner-head {
    padding: 14px;
  }

  .planner-head h3 {
    font-size: 17px;
  }

  .planner-journey {
    gap: 10px;
    padding: 12px 14px;
  }

  .planner-progress {
    display: flex;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .planner-progress li {
    min-width: 108px;
  }

  .planner-starters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .planner-starters button {
    flex: 0 0 auto;
  }

  .planner-thread {
    padding: 14px;
  }

  .planner-message {
    max-width: 94%;
  }

  .planner-input-row {
    grid-template-columns: auto auto 1fr;
  }

  .planner-footer {
    max-height: 58svh;
  }

  .planner-lead-grid {
    grid-template-columns: 1fr;
  }

  .planner-action {
    width: 100%;
  }

  .planner-send {
    grid-column: 1 / -1;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    padding-bottom: 0.12em;
    font-size: 34px;
    line-height: 1.14;
  }

  .hero-copy,
  .hero-copy p,
  .hero-actions {
    max-width: 100%;
  }
}
