:root {
  --ink: #101936;
  --ink-2: #1b2853;
  --violet: #6d35e7;
  --magenta: #b616cc;
  --cyan: #1d9ee8;
  --cream: #f7f4ee;
  --paper: #fffdf9;
  --white: #ffffff;
  --muted: #697088;
  --line: rgba(16, 25, 54, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --success: #1f9f75;
  --shadow: 0 24px 70px rgba(16, 25, 54, 0.12);
  --container: 1200px;
  --radius: 18px;
  --section-space: 128px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

html[dir="rtl"] body {
  font-family: "Cairo", "Tahoma", sans-serif;
  line-height: 1.8;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 {
  line-height: 1.22;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(29, 158, 232, 0.6);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h1,
h2 {
  letter-spacing: 0;
}

h1 em,
h2 em {
  background: linear-gradient(110deg, #63c5ff 0%, #a94cec 48%, #f037c5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

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

.section {
  padding-block: var(--section-space);
}

.section-dark {
  color: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block-end: 24px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

html[dir="rtl"] .eyebrow {
  letter-spacing: 0;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #b7c7ef;
}

.section-heading {
  max-width: 760px;
  margin-block-end: 60px;
}

.section-heading h2 {
  max-width: 700px;
  margin-block-end: 24px;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
}

.section-heading > p:last-child {
  max-width: 670px;
  margin-block-end: 0;
  color: var(--muted);
  font-size: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button svg,
.text-link svg,
.language-link svg,
.service-card a svg,
.footer-conversation svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

html[dir="rtl"] .button svg,
html[dir="rtl"] .text-link svg,
html[dir="rtl"] .service-card a svg,
html[dir="rtl"] .footer-conversation svg {
  transform: scaleX(-1);
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 12px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  box-shadow: 0 12px 28px rgba(16, 25, 54, 0.22);
}

.button-gradient {
  background: linear-gradient(115deg, var(--cyan), var(--violet) 50%, var(--magenta));
  color: var(--white);
  box-shadow: 0 15px 35px rgba(109, 53, 231, 0.3);
}

.button-gradient:hover {
  box-shadow: 0 20px 45px rgba(109, 53, 231, 0.42);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  border-color: rgba(109, 53, 231, 0.45);
  background: rgba(109, 53, 231, 0.04);
}

.button-white {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 38px rgba(7, 13, 32, 0.22);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 800;
}

.text-link-light {
  color: var(--white);
}

.text-link:hover svg,
.service-card a:hover svg {
  transform: translateX(4px);
}

html[dir="rtl"] .text-link:hover svg,
html[dir="rtl"] .service-card a:hover svg {
  transform: scaleX(-1) translateX(4px);
}

.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  color: var(--white);
  transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled,
body:not(.page-home) .site-header {
  background: rgba(255, 253, 249, 0.93);
  box-shadow: 0 10px 35px rgba(16, 25, 54, 0.08);
  color: var(--ink);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 84px;
  gap: 36px;
}

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

.brand-symbol {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 9px;
  background: var(--white);
}

.brand-symbol img {
  position: absolute;
  width: 132px;
  max-width: none;
  inset-block-start: -35px;
  inset-inline-start: -44px;
  mix-blend-mode: multiply;
}

html[dir="rtl"] .brand-symbol img {
  inset-inline-start: auto;
  inset-inline-end: -44px;
}

.brand-words {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-words strong {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.brand-words small {
  margin-block-start: 5px;
  color: currentColor;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.28em;
  opacity: 0.72;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: 4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
}

.language-link svg {
  width: 17px;
  height: 17px;
}

.menu-button {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: currentColor;
}

.menu-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.mobile-menu {
  display: none;
}

.home-hero {
  position: relative;
  min-height: 702px;
  padding: 0;
  overflow: clip;
  background: #0b1229;
}

.hero-noise {
  position: absolute;
  z-index: 6;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  opacity: 0.045;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.home-hero::after {
  position: absolute;
  inset-inline-start: -12%;
  inset-block-end: -55%;
  width: 860px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-slides {
  position: relative;
}

.hero-slide {
  position: relative;
  min-height: 702px;
  height: 702px;
  padding-block: 110px 72px;
  overflow: clip;
  isolation: isolate;
}

.hero-slide::before,
.hero-slide::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
}

.hero-slide::after {
  z-index: -1;
  inset: auto -8% -52% auto;
  width: 720px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.025), transparent 62%);
}

.hero-slide-system::before {
  background:
    radial-gradient(circle at 72% 48%, rgba(109, 53, 231, 0.28), transparent 25%),
    radial-gradient(circle at 95% 10%, rgba(29, 158, 232, 0.16), transparent 28%),
    linear-gradient(120deg, #0b1229 0%, #111a3a 48%, #17143d 100%);
}

.hero-slide-journey::before {
  background:
    radial-gradient(circle at 76% 43%, rgba(36, 190, 225, 0.2), transparent 26%),
    radial-gradient(circle at 18% 78%, rgba(181, 37, 221, 0.18), transparent 30%),
    linear-gradient(118deg, #0b1531 0%, #151a45 52%, #25133f 100%);
}

.hero-slide-performance::before {
  background:
    radial-gradient(circle at 78% 38%, rgba(47, 213, 182, 0.16), transparent 23%),
    radial-gradient(circle at 25% 82%, rgba(45, 105, 230, 0.2), transparent 32%),
    linear-gradient(118deg, #09172a 0%, #0e2340 54%, #16163c 100%);
}

.hero-slide.is-active .hero-copy > * {
  animation: hero-copy-in 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-slide.is-active .hero-copy > :nth-child(2) { animation-delay: 70ms; }
.hero-slide.is-active .hero-copy > :nth-child(3) { animation-delay: 130ms; }
.hero-slide.is-active .hero-copy > :nth-child(4) { animation-delay: 190ms; }
.hero-slide.is-active .hero-copy > :nth-child(5) { animation-delay: 250ms; }
.hero-slide.is-active .hero-visual { animation: hero-visual-in 820ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both; }

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-visual-in {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(500px, 0.98fr);
  align-items: center;
  gap: 38px;
}

.hero-copy h1 {
  max-width: 700px;
  margin-block-end: 28px;
  font-size: clamp(52px, 5.25vw, 78px);
  font-weight: 700;
}

html[dir="rtl"] .hero-copy h1 {
  font-size: clamp(50px, 5vw, 74px);
}

.hero-slide:not(.hero-slide-system) .hero-copy h1 {
  font-size: clamp(48px, 4.6vw, 66px);
}

html[dir="rtl"] .hero-slide:not(.hero-slide-system) .hero-copy h1 {
  font-size: clamp(46px, 4.35vw, 62px);
}

.hero-intro {
  max-width: 630px;
  margin-block-end: 32px;
  color: #bdc5da;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-signal {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block-start: 44px;
  color: #94a0bd;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-signal i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #54d6ac;
  box-shadow: 0 0 0 6px rgba(84, 214, 172, 0.11);
}

.hero-visual {
  min-width: 0;
}

.hero-stage {
  position: relative;
  width: min(100%, 570px);
  height: 520px;
  margin-inline-start: auto;
}

.stage-orbit {
  position: absolute;
  inset: 3% 3% 2% 5%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(-11deg);
}

.stage-orbit::before,
.stage-orbit::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(29, 158, 232, 0.8);
  content: "";
}

.stage-orbit::before {
  inset-block-start: 14%;
  inset-inline-end: 11%;
}

.stage-orbit::after {
  inset-block-end: 9%;
  inset-inline-start: 24%;
  background: #f037c5;
}

.hero-logo-card {
  position: absolute;
  z-index: 2;
  inset-block-start: 70px;
  inset-inline-start: 120px;
  width: 290px;
  height: 350px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: #fcfaf5;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.34);
  transform: rotate(-3deg);
}

.hero-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.stage-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: rgba(21, 30, 65, 0.9);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.26);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.stage-card span,
.stage-card small {
  color: #9fa9c2;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.stage-card strong {
  display: block;
  margin-block: 2px;
  color: var(--white);
  font-size: 30px;
}

.stage-card-social {
  inset-block-start: 28px;
  inset-inline-end: -4px;
  width: 175px;
  padding: 18px;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 28px;
  margin-block-start: 10px;
}

.mini-bars i {
  flex: 1;
  height: 35%;
  border-radius: 3px;
  background: linear-gradient(var(--cyan), var(--violet));
}

.mini-bars i:nth-child(2) { height: 70%; }
.mini-bars i:nth-child(3) { height: 52%; }
.mini-bars i:nth-child(4) { height: 94%; }

.stage-card-performance {
  inset-inline-start: 6px;
  inset-block-end: 36px;
  width: 210px;
  padding: 18px 20px 14px;
}

.stage-card-performance svg {
  width: 100%;
  height: 52px;
  margin-block-start: -8px;
  fill: none;
  stroke: #4fd1ff;
  stroke-width: 3;
}

.stage-pill {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(13, 21, 48, 0.88);
  color: #d9ddec;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.stage-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--magenta);
}

.stage-pill-one {
  inset-inline-start: 70px;
  inset-block-start: 105px;
}

.stage-pill-two {
  inset-inline-end: 14px;
  inset-block-end: 102px;
}

.stage-pill-two i {
  background: var(--cyan);
}

.hero-slide.is-active .hero-stage-system .hero-logo-card {
  animation: system-card-in 900ms 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-slide.is-active .hero-stage-system .stage-card-social {
  animation: system-float-one 5s 650ms ease-in-out infinite;
}

.hero-slide.is-active .hero-stage-system .stage-card-performance {
  animation: system-float-two 5.6s 820ms ease-in-out infinite;
}

.hero-slide.is-active .hero-stage-system .stage-orbit {
  animation: system-orbit 18s linear infinite;
}

@keyframes system-card-in {
  from { opacity: 0; transform: translateY(34px) rotate(-8deg) scale(0.92); }
  to { opacity: 1; transform: translateY(0) rotate(-3deg) scale(1); }
}

@keyframes system-float-one {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes system-float-two {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(11px); }
}

@keyframes system-orbit {
  from { transform: rotate(-11deg); }
  to { transform: rotate(349deg); }
}

.journey-stage {
  isolation: isolate;
}

.journey-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  overflow: visible;
}

.journey-path {
  stroke: rgba(91, 202, 255, 0.5);
  stroke-dasharray: 0.025 0.045;
  stroke-linecap: round;
  stroke-width: 2;
}

.journey-path-two,
.journey-path-four {
  stroke: rgba(217, 61, 232, 0.48);
}

.hero-slide.is-active .journey-path {
  animation: journey-path-draw 1.15s 360ms ease-out both;
}

.hero-slide.is-active .journey-path-two { animation-delay: 510ms; }
.hero-slide.is-active .journey-path-three { animation-delay: 660ms; }
.hero-slide.is-active .journey-path-four { animation-delay: 810ms; }

@keyframes journey-path-draw {
  from { opacity: 0; stroke-dashoffset: 1; }
  to { opacity: 1; stroke-dashoffset: 0; }
}

.journey-core {
  position: absolute;
  z-index: 3;
  inset-block-start: 155px;
  inset-inline-start: calc(50% - 92px);
  display: grid;
  place-items: center;
  width: 184px;
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(13, 24, 58, 0.84));
  box-shadow: 0 32px 90px rgba(2, 8, 26, 0.42), inset 0 1px rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  text-align: center;
}

.journey-core > span,
.journey-core small {
  color: #9faccc;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journey-core img {
  width: 74px;
  height: 74px;
  margin-block: 4px;
  border-radius: 18px;
  object-fit: cover;
}

.journey-core strong {
  font-size: 24px;
}

.journey-node {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px 11px;
  width: 168px;
  min-height: 92px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: rgba(16, 28, 65, 0.82);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.journey-node::after {
  position: absolute;
  inset-block: 14px;
  inset-inline-start: 0;
  width: 3px;
  border-radius: 99px;
  background: var(--cyan);
  content: "";
}

.journey-node > span {
  grid-row: span 2;
  color: #5fcfff;
  font-size: 11px;
  font-weight: 800;
}

.journey-node strong {
  align-self: end;
  font-size: 15px;
}

.journey-node small {
  color: #9faccc;
  font-size: 10px;
  font-weight: 700;
}

.journey-node-brand { inset-block-start: 28px; inset-inline-start: 10px; }
.journey-node-content { inset-block-start: 28px; inset-inline-end: 10px; }
.journey-node-ads { inset-block-end: 28px; inset-inline-start: 10px; }
.journey-node-web { inset-block-end: 28px; inset-inline-end: 10px; }
.journey-node-content::after,
.journey-node-web::after { background: var(--magenta); }

.hero-slide.is-active .journey-node {
  animation: journey-node-in 680ms 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-slide.is-active .journey-node-content { animation-delay: 380ms; }
.hero-slide.is-active .journey-node-ads { animation-delay: 500ms; }
.hero-slide.is-active .journey-node-web { animation-delay: 620ms; }
.hero-slide.is-active .journey-core { animation: journey-core-in 850ms 180ms cubic-bezier(0.22, 1, 0.36, 1) both; }

@keyframes journey-node-in {
  from { opacity: 0; transform: scale(0.82) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes journey-core-in {
  from { opacity: 0; transform: scale(0.72) rotate(-7deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

.journey-pulse {
  position: absolute;
  z-index: -1;
  inset-block-start: 130px;
  inset-inline-start: calc(50% - 118px);
  width: 236px;
  aspect-ratio: 1;
  border: 1px solid rgba(91, 202, 255, 0.24);
  border-radius: 50%;
}

.hero-slide.is-active .journey-pulse {
  animation: journey-pulse 2.8s 900ms ease-out infinite;
}

@keyframes journey-pulse {
  0% { opacity: 0.75; transform: scale(0.72); }
  75%, 100% { opacity: 0; transform: scale(1.5); }
}

.performance-dashboard {
  position: absolute;
  inset-block-start: 68px;
  inset-inline-start: 24px;
  width: 455px;
  min-height: 350px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(20, 46, 78, 0.94), rgba(12, 25, 55, 0.91));
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.34);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.performance-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-end: 20px;
  color: #d7e2f6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.performance-dashboard-head div {
  display: flex;
  gap: 5px;
}

.performance-dashboard-head i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
}

.performance-metrics {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
}

.performance-metrics article {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.performance-metrics small,
.performance-next-card small {
  display: block;
  margin-block-end: 5px;
  color: #8192b4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.performance-metrics strong {
  display: block;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.performance-chart {
  margin-block-start: 16px;
}

.performance-chart svg {
  display: block;
  width: 100%;
  height: 165px;
  overflow: visible;
  fill: none;
}

.performance-chart .chart-grid {
  stroke: rgba(255, 255, 255, 0.065);
  stroke-width: 1;
}

.performance-chart .chart-line {
  stroke: #4ed7bd;
  stroke-linecap: round;
  stroke-width: 4;
  filter: drop-shadow(0 0 8px rgba(78, 215, 189, 0.38));
}

.performance-chart .chart-points {
  fill: #d8fff8;
  stroke: #4ed7bd;
  stroke-width: 4;
}

.performance-chart > div {
  display: flex;
  justify-content: space-between;
  color: #6e7fa2;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-slide.is-active .performance-chart .chart-line {
  animation: chart-line-draw 1.35s 520ms ease-out both;
}

.hero-slide.is-active .performance-chart .chart-points {
  animation: chart-points-in 500ms 1.2s ease-out both;
}

@keyframes chart-line-draw {
  from { stroke-dasharray: 1; stroke-dashoffset: 1; }
  to { stroke-dasharray: 1; stroke-dashoffset: 0; }
}

@keyframes chart-points-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.performance-test-card,
.performance-next-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 31, 65, 0.91);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.performance-test-card {
  inset-block-start: 24px;
  inset-inline-end: -4px;
  display: flex;
  align-items: center;
  gap: 13px;
  width: 205px;
  padding: 15px;
  border-radius: 15px;
}

.performance-test-card > span {
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(135deg, #30d9b8, #2177ec);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

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

.performance-test-card strong { font-size: 13px; }
.performance-test-card small { margin-block-start: 3px; color: #8395b7; font-size: 9px; }

.performance-next-card {
  inset-inline-start: 0;
  inset-block-end: 20px;
  width: 230px;
  padding: 17px;
  border-radius: 15px;
}

.performance-next-card strong {
  display: block;
  font-size: 18px;
}

.performance-next-card div {
  display: flex;
  gap: 5px;
  margin-block-start: 12px;
}

.performance-next-card i {
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: #28578c;
}

.performance-next-card i:nth-child(2) { background: #2e9caf; }
.performance-next-card i:nth-child(3) { background: #4ed7bd; }

.performance-target {
  position: absolute;
  z-index: 3;
  inset-inline-end: 9px;
  inset-block-end: 20px;
  display: grid;
  place-items: center;
  width: 110px;
  aspect-ratio: 1;
}

.performance-target i {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(78, 215, 189, 0.28);
  border-radius: 50%;
}

.performance-target i:nth-child(2) { width: 64%; height: 64%; }
.performance-target span {
  width: 13px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #4ed7bd;
  box-shadow: 0 0 22px rgba(78, 215, 189, 0.72);
}

.hero-slide.is-active .performance-dashboard { animation: dashboard-in 780ms 200ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-slide.is-active .performance-test-card { animation: performance-float-one 4.8s 750ms ease-in-out infinite; }
.hero-slide.is-active .performance-next-card { animation: performance-float-two 5.4s 900ms ease-in-out infinite; }
.hero-slide.is-active .performance-target { animation: target-pulse 2.4s 1s ease-in-out infinite; }

@keyframes dashboard-in {
  from { opacity: 0; transform: translateY(28px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes performance-float-one {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes performance-float-two {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(9px); }
}

@keyframes target-pulse {
  0%, 100% { opacity: 0.7; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.04); }
}

.hero-carousel-controls {
  position: absolute;
  z-index: 9;
  inset-block-end: 16px;
  inset-inline: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.hero-control-group {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 15, 36, 0.74);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.23);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  pointer-events: auto;
}

.hero-control {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #dbe2f2;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-control:focus-visible,
.hero-dot:focus-visible {
  outline: 2px solid #5ad8ff;
  outline-offset: 2px;
}

.hero-control svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

html[dir="ltr"] .hero-control-prev svg,
html[dir="rtl"] .hero-control-next svg { transform: rotate(180deg); }
.hero-control-toggle { margin-inline-start: 2px; border-inline-start: 1px solid rgba(255, 255, 255, 0.12); border-radius: 0 999px 999px 0; }
html[dir="rtl"] .hero-control-toggle { border-radius: 999px 0 0 999px; }

.hero-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-dot {
  display: grid;
  place-items: center;
  width: 28px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
}

.hero-dot span {
  width: 16px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.3);
  transition: width 220ms ease, background-color 220ms ease;
}

.hero-dot.is-active span {
  width: 25px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
}

.hero-counter {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  pointer-events: none;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  inset-inline-start: 50%;
  inset-block-end: 26px;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  inset-block-start: 9px;
  inset-inline-start: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--white);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  0%, 100% { opacity: 0.4; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 10px); }
}

.stats-band {
  border-block-end: 1px solid var(--line);
  background: var(--cream);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 132px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-inline: 28px;
  border-inline-end: 1px solid var(--line);
}

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

.stat:last-child {
  padding-inline-end: 0;
  border-inline-end: 0;
}

.stat strong {
  direction: ltr;
  font-size: 34px;
  unicode-bidi: isolate;
}

.stat span {
  max-width: 120px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.problems-section {
  background: var(--paper);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block-start: 1px solid var(--line);
  border-inline-start: 1px solid var(--line);
}

.problem-card {
  position: relative;
  min-height: 285px;
  padding: 30px;
  overflow: hidden;
  border-block-end: 1px solid var(--line);
  border-inline-end: 1px solid var(--line);
  background: var(--paper);
  transition: background-color 180ms ease, transform 180ms ease;
}

.problem-card::after {
  position: absolute;
  inset-inline: 30px;
  inset-block-end: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--magenta));
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.problem-card:hover {
  background: var(--cream);
  transform: translateY(-4px);
}

.problem-card:hover::after {
  transform: scaleX(1);
}

.problem-card > span {
  color: var(--magenta);
  font-size: 11px;
  font-weight: 800;
}

.problem-card h3 {
  margin-block: 58px 16px;
  font-size: 23px;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.services-section {
  background: var(--paper);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block-start: 1px solid var(--line);
  border-inline-start: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 34px 30px;
  border-block-end: 1px solid var(--line);
  border-inline-end: 1px solid var(--line);
  background: var(--paper);
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(63, 189, 248, 0.25), transparent 38%), linear-gradient(145deg, #17234d, #25133f);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

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

.service-card:hover {
  color: var(--white);
  transform: translateY(-5px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover p,
.service-card:hover .service-number,
.service-card:hover li {
  color: #bdc5dc;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-block-end: 70px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(29, 158, 232, 0.13), rgba(182, 22, 204, 0.13));
  color: var(--violet);
}

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

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #69d4ff;
}

.service-number {
  color: #a1a5b4;
  font-size: 11px;
  font-weight: 800;
}

.service-card h3 {
  margin-block-end: 16px;
  font-size: 25px;
}

.service-card p {
  margin-block-end: 28px;
  color: var(--muted);
  font-size: 14px;
}

.service-card ul {
  display: grid;
  gap: 9px;
  min-height: 104px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.service-card li {
  display: flex;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
}

.service-card li svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-block-start: auto;
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
}

.service-card:hover a {
  color: var(--white);
}

.service-card-facts {
  display: grid;
  gap: 20px;
  padding-block-start: 24px;
  margin-block: 4px 28px;
  border-block-start: 1px solid var(--line);
}

.service-card-fact > span {
  display: block;
  margin-block-end: 7px;
  color: var(--violet);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[dir="rtl"] .service-card-fact > span {
  letter-spacing: 0;
}

.service-card-fact p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.service-card-fact ul {
  min-height: 0;
  margin: 0;
}

.service-card:hover .service-card-facts {
  border-color: var(--line-light);
}

.service-card:hover .service-card-fact > span {
  color: #69d4ff;
}

.flow-system {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.flow-system::before {
  position: absolute;
  inset-inline-start: -180px;
  inset-block-start: 80px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(109, 53, 231, 0.11);
  border-radius: 50%;
  content: "";
}

.flow-system-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.flow-system-copy {
  position: sticky;
  inset-block-start: 130px;
  align-self: start;
}

.flow-system-copy .section-heading {
  margin-block-end: 30px;
}

.flow-steps {
  border-block-start: 1px solid var(--line);
}

.flow-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding-block: 34px;
  border-block-end: 1px solid var(--line);
}

.flow-step > span {
  color: var(--magenta);
  font-size: 11px;
  font-weight: 800;
}

.flow-step h3 {
  margin-block-end: 9px;
  font-size: 24px;
}

.flow-step p {
  max-width: 470px;
  margin-block-end: 0;
  color: var(--muted);
  font-size: 14px;
}

.work-preview,
.work-page {
  background: var(--paper);
}

.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-block-end: 60px;
}

.heading-row .section-heading {
  margin: 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 24px;
}

.showcase-card:nth-child(3n + 1) {
  grid-column: span 1;
}

.showcase-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
}

.showcase-art::before,
.showcase-art::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.showcase-art::before {
  width: 330px;
  height: 330px;
  background: rgba(255, 255, 255, 0.08);
}

.showcase-art::after {
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.showcase-art-1 { background: linear-gradient(135deg, #16204b, #6d35e7); }
.showcase-art-2 { background: linear-gradient(135deg, #f2ede5, #e1d3fa); }
.showcase-art-3 { background: linear-gradient(145deg, #121b3a, #12385d); }
.showcase-art-4 { background: linear-gradient(145deg, #fff5e9, #f3c9e9); }

.brand-board,
.social-board,
.media-board,
.web-board {
  position: relative;
  z-index: 2;
  width: 280px;
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 15px;
  box-shadow: 0 28px 50px rgba(16, 25, 54, 0.2);
}

.brand-board {
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  transform: rotate(-4deg);
}

.brand-board strong {
  display: block;
  font-size: 88px;
  line-height: 1;
}

.brand-board span {
  font-size: 12px;
  letter-spacing: 0.12em;
}

.brand-board i {
  position: absolute;
  inset-block-start: 25px;
  inset-inline-end: 25px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cyan);
}

.brand-board i:nth-child(2) { inset-block-start: 55px; background: var(--magenta); }
.brand-board i:nth-child(3) { inset-block-start: 85px; background: #f4b942; }

.social-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  transform: rotate(3deg);
}

.social-board i {
  height: 62px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--cyan), var(--violet));
}

.social-board i:nth-child(2) { background: linear-gradient(145deg, #f4b942, var(--magenta)); }
.social-board i:nth-child(3) { background: linear-gradient(145deg, var(--ink), var(--violet)); }
.social-board b { align-self: end; font-size: 42px; }
.social-board span { grid-column: span 2; align-self: end; color: var(--muted); font-size: 11px; }

.media-board {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transform: rotate(-2deg);
}

.media-board span { color: #9fc8ec; font-size: 12px; }
.media-board strong { display: block; font-size: 54px; }
.media-board svg { width: 100%; height: 70px; fill: none; stroke: #50d3ff; stroke-width: 4; }

.web-board {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  transform: rotate(2deg);
}

.web-board i {
  width: 78px;
  height: 78px;
  border-radius: 22px 7px 22px 7px;
  background: linear-gradient(135deg, var(--cyan), var(--violet), var(--magenta));
}

.web-board b { display: block; font-size: 38px; }
.web-board span { color: var(--muted); font-size: 10px; }

.showcase-copy {
  padding-block-start: 22px;
}

.showcase-copy > span {
  color: var(--violet);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-copy h3 {
  margin-block: 8px 10px;
  font-size: 25px;
}

.showcase-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.facebook-section {
  padding-block: 44px 112px;
  background: var(--paper);
}

.facebook-panel {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  min-height: 330px;
  padding: 58px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 15%, rgba(24, 119, 242, 0.35), transparent 28%),
    linear-gradient(125deg, #0d1734, #18275a);
  color: var(--white);
}

.facebook-panel::after {
  position: absolute;
  inset-inline-end: -80px;
  inset-block-end: -150px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

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

.facebook-panel-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.facebook-panel-icon svg {
  width: 42px;
  height: 42px;
  fill: #4c9aff;
}

.facebook-panel-copy .section-heading {
  margin: 0;
}

.facebook-panel-copy .eyebrow {
  color: #88c4ff;
}

.facebook-panel-copy .section-heading h2 {
  max-width: 650px;
  margin-block-end: 14px;
  font-size: clamp(34px, 4vw, 54px);
}

.facebook-panel-copy .section-heading > p:last-child {
  color: #b9c5de;
  font-size: 16px;
}

.facebook-button,
.footer-facebook-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-weight: 800;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.facebook-button {
  max-width: 260px;
  padding: 14px 20px;
  background: #1877f2;
  color: var(--white);
  font-size: 13px;
}

.facebook-button:hover,
.footer-facebook-link:hover {
  border-color: #5da1fa;
  background: #0f65d6;
  transform: translateY(-2px);
}

.facebook-button > svg:first-child,
.footer-facebook-link > svg:first-child {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.facebook-button > svg:last-child,
.footer-facebook-link > svg:last-child {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

html[dir="rtl"] .facebook-button > svg:last-child,
html[dir="rtl"] .footer-facebook-link > svg:last-child {
  transform: scaleX(-1);
}

.cta-section {
  padding-block-start: 40px;
  background: var(--paper);
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  min-height: 390px;
  padding: 70px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 0%, rgba(29, 158, 232, 0.35), transparent 28%),
    radial-gradient(circle at 10% 120%, rgba(182, 22, 204, 0.36), transparent 35%),
    linear-gradient(120deg, #0f1834, #211347);
  color: var(--white);
}

.cta-panel::after {
  position: absolute;
  inset-inline-end: -90px;
  inset-block-end: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

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

.cta-panel h2 {
  max-width: 700px;
  margin-block-end: 18px;
  font-size: clamp(40px, 5vw, 66px);
}

.cta-panel p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #bfc7db;
}

.page-hero {
  position: relative;
  min-height: 610px;
  padding-block: 190px 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 25%, rgba(109, 53, 231, 0.28), transparent 24%),
    linear-gradient(125deg, #0e1733, #17133b);
  color: var(--white);
}

.page-hero-shape {
  position: absolute;
  inset-inline-end: -100px;
  inset-block-start: 70px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 46% 54% 60% 40%;
  transform: rotate(25deg);
}

.page-hero-shape::before {
  position: absolute;
  inset: 80px;
  border: 1px solid rgba(78, 210, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 700;
}

.page-hero-grid > p {
  max-width: 440px;
  margin-block-end: 10px;
  color: #bdc5da;
  font-size: 18px;
}

.story-section {
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.giant-flow {
  position: sticky;
  inset-block-start: 140px;
  display: block;
  color: transparent;
  font-size: clamp(90px, 13vw, 190px);
  font-weight: 800;
  line-height: 0.9;
  text-orientation: mixed;
  -webkit-text-stroke: 1px rgba(109, 53, 231, 0.35);
  writing-mode: vertical-rl;
}

.story-grid .section-heading {
  margin-block-end: 35px;
}

.story-grid > div:last-child > p {
  color: var(--muted);
  font-size: 18px;
}

.principles-section {
  background: var(--cream);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block-start: 1px solid var(--line);
  border-inline-start: 1px solid var(--line);
}

.principle {
  min-height: 270px;
  padding: 30px;
  border-block-end: 1px solid var(--line);
  border-inline-end: 1px solid var(--line);
}

.principle > span {
  color: var(--magenta);
  font-size: 11px;
  font-weight: 800;
}

.principle h3 {
  margin-block: 60px 14px;
  font-size: 22px;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.services-listing .service-card-top {
  margin-block-end: 42px;
}

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

.services-model {
  background: var(--cream);
}

.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.model-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 510px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.model-orbit::before,
.model-orbit::after {
  position: absolute;
  border: 1px solid rgba(109, 53, 231, 0.15);
  border-radius: 50%;
  content: "";
}

.model-orbit::before { inset: 16%; }
.model-orbit::after { inset: 32%; background: linear-gradient(135deg, var(--cyan), var(--violet), var(--magenta)); }
.model-orbit strong { position: relative; z-index: 2; color: var(--white); font-size: 23px; letter-spacing: 0.12em; }
.model-orbit span { position: absolute; z-index: 2; padding: 7px 11px; border-radius: 999px; background: var(--paper); box-shadow: var(--shadow); color: var(--ink); font-size: 11px; font-weight: 800; }
.model-orbit span:nth-child(1) { inset-block-start: 6%; inset-inline-start: 42%; }
.model-orbit span:nth-child(2) { inset-block-start: 43%; inset-inline-end: -2%; }
.model-orbit span:nth-child(3) { inset-block-end: 5%; inset-inline-start: 42%; }
.model-orbit span:nth-child(4) { inset-block-start: 43%; inset-inline-start: -2%; }

.service-clarity-section {
  padding-block: 84px;
  background: var(--paper);
}

.service-clarity-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border-block-start: 1px solid var(--line);
  border-inline-start: 1px solid var(--line);
}

.service-clarity-grid article {
  min-height: 260px;
  padding: 36px;
  border-block-end: 1px solid var(--line);
  border-inline-end: 1px solid var(--line);
}

.service-clarity-grid article > span {
  display: block;
  margin-block-end: 48px;
  color: var(--violet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

html[dir="rtl"] .service-clarity-grid article > span {
  letter-spacing: 0;
}

.service-clarity-grid h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.service-clarity-grid p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.deliverables-section {
  background: var(--paper);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.deliverables-grid ul {
  padding: 0;
  margin: 0;
  border-block-start: 1px solid var(--line);
  list-style: none;
}

.deliverables-grid li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-block: 24px;
  border-block-end: 1px solid var(--line);
  font-size: 18px;
  font-weight: 600;
}

.deliverables-grid li svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
}

.service-benefits {
  background: var(--cream);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.benefits-grid article {
  min-height: 220px;
  padding: 30px;
  background: var(--cream);
}

.benefits-grid span {
  color: var(--magenta);
  font-size: 11px;
  font-weight: 800;
}

.benefits-grid p {
  margin-block-start: 65px;
  font-size: 18px;
  font-weight: 700;
}

.service-process {
  background: var(--ink);
  color: var(--white);
}

.service-process .section-heading > p:last-child {
  color: #aeb8cf;
}

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

.service-step {
  position: relative;
  min-height: 210px;
  padding: 30px;
  border-block-start: 1px solid var(--line-light);
  border-inline-end: 1px solid var(--line-light);
}

.service-step::after {
  position: absolute;
  inset-block-start: -4px;
  inset-inline-start: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.service-step span {
  color: #8f9cba;
  font-size: 11px;
}

.service-step h3 {
  margin-block-start: 70px;
  font-size: 20px;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq-grid details {
  border-block-start: 1px solid var(--line);
}

.faq-grid details:last-child {
  border-block-end: 1px solid var(--line);
}

.faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

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

.faq-grid summary span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--violet);
  transition: transform 180ms ease;
}

.faq-grid details[open] summary span {
  transform: rotate(45deg);
}

.faq-grid details p {
  max-width: 650px;
  padding-block-end: 24px;
  margin: 0;
  color: var(--muted);
}

.work-note {
  background: var(--cream);
  border-block-end: 1px solid var(--line);
}

.work-note p {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 80px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.work-note span {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f4b942;
}

.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  min-height: 520px;
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.contact-primary {
  background:
    radial-gradient(circle at 90% 0%, rgba(29, 158, 232, 0.22), transparent 30%),
    linear-gradient(145deg, #111a3a, #23143e);
  color: var(--white);
}

.contact-index {
  color: var(--magenta);
  font-size: 11px;
  font-weight: 800;
}

.contact-card h2 {
  max-width: 500px;
  margin-block: 80px 30px;
  font-size: 38px;
}

.contact-card ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin-block: 0 38px;
  list-style: none;
}

.contact-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c3cada;
}

.contact-card li svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
}

.contact-card > p {
  color: var(--muted);
  font-size: 18px;
}

.contact-card dl {
  margin-block-start: 70px;
  border-block-start: 1px solid var(--line);
}

.contact-card dl > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding-block: 20px;
  border-block-end: 1px solid var(--line);
}

.contact-card dt {
  color: var(--muted);
  font-size: 12px;
}

.contact-card dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  position: relative;
  padding-block: 100px 30px;
  overflow: hidden;
  background: #090f24;
  color: var(--white);
}

.footer-orbit {
  position: absolute;
  inset-inline-end: -220px;
  inset-block-start: -320px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 60px;
  padding-block-end: 80px;
}

.footer-brand .brand {
  margin-block-end: 28px;
}

.footer-brand p {
  max-width: 330px;
  color: #9ea8c0;
}

.footer-brand > span {
  color: #6e7892;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column strong {
  margin-block-end: 12px;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-column a {
  color: #9ea8c0;
  font-size: 13px;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-conversation {
  align-self: start;
  padding: 26px;
  border: 1px solid var(--line-light);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-conversation span {
  display: block;
  margin-block-end: 32px;
  color: #818ca7;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-conversation a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 16px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block-start: 28px;
  border-block-start: 1px solid var(--line-light);
  color: #6e7892;
  font-size: 11px;
}

.footer-facebook-link {
  min-height: 44px;
  padding: 10px 14px;
  color: #dbe8ff;
  font-size: 11px;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  inset-inline-end: 24px;
  inset-block-end: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: #17234d;
  box-shadow: 0 16px 38px rgba(10, 16, 38, 0.28);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.whatsapp-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #41d39d;
  box-shadow: 0 0 0 6px rgba(65, 211, 157, 0.12);
}

.section,
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal-late {
  transition-delay: 130ms;
}

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

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

@media (max-width: 1100px) {
  :root { --section-space: 100px; }
  .desktop-nav { gap: 18px; }
  .header-actions .button { display: none; }
  .home-hero-grid { grid-template-columns: 1fr 0.9fr; }
  .hero-stage { transform: scale(0.9); transform-origin: center right; }
  html[dir="rtl"] .hero-stage { transform-origin: center left; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-system-grid { gap: 60px; }
  .principles-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .service-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr; }
  .footer-conversation { grid-column: span 3; }
  .facebook-panel { grid-template-columns: 76px minmax(0, 1fr); }
  .facebook-button { grid-column: 2; justify-self: start; }
}

@media (max-width: 820px) {
  :root { --section-space: 82px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .desktop-nav, .header-actions > .language-link { display: none; }
  .header-inner { grid-template-columns: 1fr auto; min-height: 76px; }
  .menu-button { display: grid; }
  .mobile-menu {
    display: block;
    position: fixed;
    inset: 76px 0 auto;
    max-height: calc(100vh - 76px);
    padding: 18px;
    overflow: auto;
    border-block-start: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-menu nav { display: grid; }
  .mobile-menu nav a { padding: 16px 8px; border-block-end: 1px solid var(--line); font-size: 18px; font-weight: 700; }
  .mobile-menu nav a[aria-current="page"] { color: var(--violet); }
  .mobile-menu .language-link { padding: 20px 8px 8px; }
  .home-hero { min-height: auto; }
  .hero-slide { min-height: auto; height: auto; padding-block: 130px 105px; }
  .home-hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-copy h1 { font-size: clamp(50px, 12vw, 76px); }
  .hero-visual { min-height: 420px; }
  .hero-stage { height: 450px; margin-inline: auto; transform: scale(0.88); transform-origin: center; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat { flex-direction: column; align-items: flex-start; justify-content: center; min-height: 112px; padding: 20px; border-block-end: 0; }
  .stat:first-child, .stat:last-child { padding-inline: 20px; }
  .section-heading { margin-block-end: 42px; }
  .section-heading h2 { font-size: clamp(38px, 8vw, 56px); }
  .flow-system-grid, .story-grid, .model-grid, .service-clarity-grid, .deliverables-grid, .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .service-clarity-grid { gap: 0; }
  .flow-system-copy, .giant-flow { position: static; }
  .giant-flow { font-size: 110px; writing-mode: horizontal-tb; }
  .showcase-art { min-height: 340px; }
  .page-hero { min-height: 560px; padding-block: 150px 80px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .page-hero h1 { font-size: clamp(50px, 11vw, 78px); }
  .page-hero-grid > p { font-size: 17px; }
  .cta-panel { grid-template-columns: 1fr; min-height: 420px; padding: 52px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: auto; }
  .facebook-panel { grid-template-columns: 1fr; gap: 28px; padding: 48px; }
  .facebook-button { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-conversation { grid-column: span 2; }
}

@media (max-width: 580px) {
  :root { --section-space: 70px; }
  body { font-size: 15px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-symbol { width: 38px; height: 38px; }
  .brand-symbol img { width: 120px; inset-block-start: -32px; inset-inline-start: -40px; }
  html[dir="rtl"] .brand-symbol img { inset-inline-end: -40px; }
  .brand-words strong { font-size: 17px; }
  .brand-words small { font-size: 6px; }
  .home-hero { min-height: 720px; }
  .hero-slide { min-height: 720px; height: 720px; padding-block: 116px 104px; }
  .hero-copy h1 { margin-block-end: 22px; font-size: 44px; }
  html[dir="rtl"] .hero-copy h1 { font-size: 42px; }
  .hero-slide:not(.hero-slide-system) .hero-copy h1 { font-size: 40px; }
  html[dir="rtl"] .hero-slide:not(.hero-slide-system) .hero-copy h1 { font-size: 38px; }
  .hero-copy h1 { overflow-wrap: anywhere; }
  .hero-intro { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .hero-signal { margin-block-start: 36px; }
  .home-hero-grid { gap: 0; }
  .hero-visual { display: none; }
  .hero-carousel-controls { inset-block-end: 8px; justify-content: center; }
  .hero-counter { display: none; }
  .hero-control-group { max-width: 100%; }
  .hero-signal { letter-spacing: 0.08em; line-height: 1.6; }
  html[dir="ltr"] .hero-signal { display: none; }
  .scroll-cue { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { flex-direction: row; align-items: center; justify-content: flex-start; min-height: 82px; padding: 14px; border-inline-end: 0; border-block-end: 1px solid var(--line); }
  .stat:first-child, .stat:last-child { padding-inline: 14px; }
  .stat:last-child { border-block-end: 0; }
  .stat strong { font-size: 28px; }
  .stat span { font-size: 11px; }
  .stat span { max-width: none; }
  .services-grid, .problems-grid, .showcase-grid, .principles-grid, .benefits-grid, .service-steps { grid-template-columns: 1fr; }
  .services-listing .services-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 240px; padding: 26px 24px; }
  .problem-card h3 { margin-block-start: 42px; }
  .service-card { min-height: 360px; padding: 28px 24px; }
  .service-card-top { margin-block-end: 48px; }
  .services-listing .service-card { min-height: 710px; }
  .heading-row { align-items: flex-start; flex-direction: column; }
  .showcase-art { min-height: 310px; }
  .brand-board, .social-board, .media-board, .web-board { width: 245px; min-height: 190px; }
  .flow-step { grid-template-columns: 50px 1fr; }
  .cta-section { padding-block-start: 12px; }
  .cta-panel { min-height: 470px; padding: 36px 26px; }
  .cta-panel h2 { font-size: 40px; }
  .page-hero { min-height: 520px; padding-block: 132px 64px; }
  .page-hero h1 { font-size: 48px; overflow-wrap: anywhere; }
  html[dir="rtl"] .page-hero h1 { font-size: 42px; }
  .page-hero-grid > p { font-size: 16px; }
  .story-grid { gap: 30px; }
  .giant-flow { font-size: 82px; }
  .model-orbit { width: 95%; margin-inline: auto; }
  .service-clarity-section { padding-block: 58px; }
  .service-clarity-grid article { min-height: auto; padding: 28px 24px; }
  .service-clarity-grid article > span { margin-block-end: 30px; }
  .deliverables-grid li { font-size: 16px; }
  .benefits-grid article { min-height: 175px; }
  .benefits-grid p { margin-block-start: 45px; }
  .service-step { min-height: 165px; border-inline-end: 0; }
  .service-step h3 { margin-block-start: 45px; }
  .contact-card { padding: 34px 26px; }
  .contact-card h2 { margin-block: 55px 24px; font-size: 32px; }
  .contact-card dl > div { grid-template-columns: 1fr; gap: 5px; }
  .footer-grid { grid-template-columns: 1fr; gap: 45px; }
  .footer-brand, .footer-conversation { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .facebook-section { padding-block: 22px 76px; }
  .facebook-panel { min-height: auto; padding: 36px 26px; }
  .facebook-panel-icon { width: 62px; height: 62px; border-radius: 16px; }
  .facebook-panel-icon svg { width: 34px; height: 34px; }
  .facebook-panel-copy .section-heading h2 { font-size: 34px; }
  .facebook-button { width: 100%; max-width: none; }
  .footer-facebook-link { width: 100%; justify-content: flex-start; }
  .whatsapp-float { inset-inline-end: 14px; inset-block-end: 14px; padding: 12px; }
  .whatsapp-float > span:last-child { display: none; }
  .whatsapp-dot { width: 14px; height: 14px; }
}

@media (max-width: 340px) {
  html[dir="ltr"] .home-hero,
  html[dir="ltr"] .hero-slide {
    min-height: 800px;
    height: 800px;
  }
}
