:root {
  --ink: #080806;
  --ink-2: #151512;
  --panel: #1d1d18;
  --paper: #fffaf0;
  --paper-2: #f5ecdf;
  --white: #ffffff;
  --muted: #756f66;
  --muted-dark: #c8c0b4;
  --line: rgba(8, 8, 6, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --orange: #ff5a14;
  --orange-2: #ff9b31;
  --cyan: #16d9ff;
  --lime: #d8ff3e;
  --shadow: 0 28px 90px rgba(8, 8, 6, 0.18);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

main > section,
section[id],
.site-footer {
  scroll-margin-top: 24px;
}

body {
  --cursor-x: -999px;
  --cursor-y: -999px;
  --hero-parallax: 0px;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(8, 8, 6, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 6, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper) 0%, #fffdf7 52%, #f2e8db 100%);
  background-size: 40px 40px, 40px 40px, auto;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

html[lang="ar"] body {
  font-family: "Tajawal", "Inter", Arial, sans-serif;
}

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

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

button {
  font: inherit;
}

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

.cursor-aura {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 39;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(22, 217, 255, 0.16), transparent 58%),
    radial-gradient(circle, rgba(255, 90, 20, 0.12), transparent 68%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(calc(var(--cursor-x) - 50%), calc(var(--cursor-y) - 50%), 0);
  transition: opacity 0.25s ease;
  mix-blend-mode: screen;
}

body.has-pointer .cursor-aura {
  opacity: 0.78;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--cyan), var(--lime));
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  margin: 14px auto 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 8, 6, 0.74);
  color: var(--white);
  box-shadow: 0 18px 70px rgba(8, 8, 6, 0.22);
  backdrop-filter: blur(20px);
  transition: background 0.22s ease, box-shadow 0.22s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 6, 0.9);
  box-shadow: 0 22px 80px rgba(8, 8, 6, 0.28);
}

.brand,
.nav,
.hero-actions,
.hero-proof,
.marquee div,
.training-card,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--orange);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
  box-shadow: inset 0 0 0 2px rgba(8, 8, 6, 0.12);
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.15;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
}

.nav {
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 850;
}

.nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink) !important;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.language-option {
  display: grid;
  place-items: center;
  min-width: 36px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.66);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 950;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.language-option:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.language-option.is-active {
  background: var(--orange);
  color: var(--ink);
}

.header-language {
  margin-left: auto;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-top: -74px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    radial-gradient(circle at 58% 10%, rgba(22, 217, 255, 0.18), transparent 28%),
    radial-gradient(circle at 82% 32%, rgba(255, 90, 20, 0.28), transparent 32%),
    var(--ink);
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
  color: var(--white);
}

.neural-canvas,
.hero-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.neural-canvas {
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.62;
}

.hero-shine {
  z-index: 1;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.08) 16%, transparent 32%),
    radial-gradient(circle at 72% 18%, rgba(216, 255, 62, 0.12), transparent 24%);
  background-size: 220% 100%, auto;
  mix-blend-mode: screen;
}

.hero::after {
  content: "";
  position: absolute;
  right: -16vw;
  bottom: -30vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(216, 255, 62, 0.24);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 72px minmax(0, 660px) minmax(320px, 0.72fr);
  grid-template-rows: minmax(560px, calc(100vh - 28px)) auto;
  gap: 28px 56px;
  align-items: center;
  width: min(1230px, calc(100% - 36px));
  margin: 0 auto;
  padding: 112px 0 68px;
}

.hero-rail {
  display: grid;
  justify-items: center;
  gap: 34px;
  height: 100%;
  padding: 118px 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 660px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  font-size: clamp(3.7rem, 6.15vw, 6.35rem);
  line-height: 0.86;
  text-wrap: balance;
}

.hero-title {
  overflow: visible;
}

.hero-title span {
  display: block;
  transform-origin: left bottom;
}

.hero-statement {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  font-weight: 650;
  line-height: 1.58;
}

.hero-statement strong {
  color: var(--white);
  font-weight: 950;
}

.signal-bar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 620px;
  margin-top: 24px;
  overflow: hidden;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.signal-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(22, 217, 255, 0.18), transparent);
  transform: translateX(-120%);
  pointer-events: none;
}

.signal-bar span {
  position: relative;
  z-index: 1;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
}

.signal-bar i {
  align-self: center;
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 90, 20, 0.72);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.primary {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 24px 48px rgba(255, 90, 20, 0.28);
}

.hero-actions .primary {
  min-width: 254px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff7a21 54%, var(--lime) 155%);
  color: var(--ink);
  box-shadow: 0 22px 52px rgba(255, 90, 20, 0.4);
}

.secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-actions .secondary {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
}

.portrait-system {
  position: relative;
  align-self: stretch;
  min-height: 600px;
}

.orbit-ring {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(22, 217, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-ring-a {
  inset: 54px -28px 70px 28px;
}

.orbit-ring-b {
  inset: 112px 42px 28px -22px;
  border-color: rgba(255, 90, 20, 0.2);
}

.portrait-frame {
  position: absolute;
  z-index: 2;
  inset: 62px 0 118px 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: #10100d;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.38);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) contrast(1.06);
  transform: translate3d(0, calc(var(--hero-parallax) * -0.18), 0) scale(1.04);
}

.portrait-glow {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(8, 8, 6, 0.92), transparent);
  pointer-events: none;
}

.availability-card,
.system-card {
  position: absolute;
  z-index: 4;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.availability-card {
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(216, 255, 62, 0.14);
}

.system-card {
  width: min(198px, calc(50% - 34px));
  padding: 14px 15px;
  border-radius: 17px;
  background: rgba(8, 8, 6, 0.66);
}

.system-card small {
  display: block;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.system-card strong {
  display: block;
  margin-top: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  line-height: 1.12;
}

.system-card-a {
  left: 28px;
  bottom: 16px;
}

.system-card-b {
  right: 28px;
  bottom: 16px;
}

.hero-proof {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.hero-proof article {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(14px);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.hero-proof article::after {
  content: "";
  position: absolute;
  inset: auto 14px 14px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), var(--cyan), var(--lime));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.hero-proof article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 90, 20, 0.38);
  background: rgba(255, 255, 255, 0.11);
}

.hero-proof article:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero-proof span {
  color: var(--orange);
  font-weight: 950;
}

.hero-proof strong {
  display: block;
  margin-top: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.22rem;
  line-height: 1.04;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 90, 20, 0.36);
  border-bottom: 1px solid rgba(8, 8, 6, 0.08);
  background:
    linear-gradient(90deg, rgba(8, 8, 6, 0.98), rgba(21, 21, 18, 0.96) 54%, rgba(48, 25, 14, 0.94)),
    var(--ink);
  color: var(--white);
}

.marquee div {
  width: max-content;
  min-width: 100%;
  justify-content: center;
  gap: clamp(24px, 5vw, 86px);
  padding: 17px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.marquee span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 90, 20, 0.65);
}

.scroll-hook {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  padding: 114px 0 92px;
}

.scroll-hook-copy h2 {
  max-width: 620px;
  font-size: clamp(2.85rem, 5.1vw, 5.35rem);
  line-height: 0.92;
  text-wrap: balance;
}

.scroll-hook-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 720;
}

.growth-cockpit {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line-dark);
  border-radius: 32px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #080806 0%, #141712 56%, #071718 100%);
  background-size: 30px 30px, 30px 30px, auto;
  color: var(--white);
  box-shadow: 0 34px 110px rgba(8, 8, 6, 0.26);
}

.growth-cockpit::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  pointer-events: none;
}

.cockpit-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  color: var(--muted-dark);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.cockpit-top strong {
  color: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.system-map {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.system-map::before,
.system-map::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--lime), transparent);
  opacity: 0.55;
}

.system-map::before {
  left: 9%;
  right: 9%;
  top: calc(50% - 1px);
  height: 2px;
}

.system-map::after {
  top: 9%;
  bottom: 9%;
  left: calc(50% - 1px);
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--orange), var(--cyan), transparent);
}

.system-node {
  position: relative;
  z-index: 1;
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.system-node:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 255, 62, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.system-node span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
}

.system-node strong {
  display: block;
  margin-top: 34px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 2.3vw, 2.3rem);
  line-height: 0.96;
}

.system-node p {
  max-width: 280px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.95rem;
  font-weight: 680;
}

.cockpit-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.cockpit-metrics span {
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: inset 0 -3px 0 rgba(216, 255, 62, 0.18);
}

.services,
.proof,
.selected-work,
.training {
  padding: 112px 0 96px;
}

.section-head {
  max-width: 890px;
}

.section-head h2,
.training-card h2,
.contact-copy h2 {
  font-size: clamp(2.35rem, 4.65vw, 5rem);
  line-height: 0.95;
  text-wrap: balance;
}

.section-head p:not(.eyebrow),
.training-card p:not(.eyebrow),
.contact-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
}

.invert h2,
.invert p:not(.eyebrow) {
  color: var(--white);
}

.service-console {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.service-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.service-tab {
  width: 100%;
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  cursor: pointer;
  font-weight: 950;
  text-align: left;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.service-tab:hover,
.service-tab.is-active {
  transform: translateX(4px);
  border-color: rgba(255, 90, 20, 0.4);
  background: var(--ink);
  color: var(--white);
}

.service-detail {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  min-height: 350px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(8, 8, 6, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 90, 20, 0.12), transparent 34%),
    linear-gradient(rgba(8, 8, 6, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 6, 0.05) 1px, transparent 1px),
    var(--white);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow);
}

.service-detail::after {
  content: "AI";
  position: absolute;
  right: 24px;
  bottom: -34px;
  color: rgba(8, 8, 6, 0.045);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 800;
  line-height: 0.8;
}

.service-detail span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  border-radius: 18px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 950;
}

.service-detail h3 {
  max-width: 650px;
  font-size: clamp(2rem, 3.45vw, 4rem);
  line-height: 0.98;
}

.service-detail p {
  max-width: 620px;
  color: #4a453f;
  font-size: 1.08rem;
  font-weight: 760;
}

.service-detail ul {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  align-content: start;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 850;
}

.ugc {
  position: relative;
  overflow: hidden;
  padding: 126px 0 108px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, var(--ink) 0%, var(--panel) 58%, #111916 100%);
  background-size: 42px 42px, 42px 42px, auto;
  color: var(--white);
}

.ugc-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

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

.ugc-copy h2 {
  max-width: 680px;
  font-size: clamp(2.35rem, 4.25vw, 4.65rem);
  line-height: 0.95;
  text-wrap: balance;
}

.ugc-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted-dark);
  font-size: 1.08rem;
  font-weight: 650;
}

.ugc-copy .button {
  margin-top: 22px;
}

.ugc-board {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.ugc-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.6fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
  min-height: 270px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line-dark);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 90, 20, 0.16), rgba(22, 217, 255, 0.08) 48%, rgba(216, 255, 62, 0.05)),
    rgba(255, 255, 255, 0.075);
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.28);
}

.ugc-feature-copy > span,
.ugc-steps span {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ugc-feature-copy > strong {
  display: block;
  max-width: 420px;
  margin-top: 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.75rem, 2.7vw, 2.7rem);
  line-height: 0.96;
  text-wrap: balance;
}

.ugc-feature-copy > p {
  max-width: 440px;
  color: var(--muted-dark);
  font-weight: 650;
}

.ugc-preview-stack {
  display: grid;
  gap: 10px;
  align-content: center;
  min-width: 0;
}

.ugc-reel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: center;
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(8, 8, 6, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ugc-reel i {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--orange);
  color: var(--ink);
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 950;
}

.ugc-reel b {
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  line-height: 1;
}

.ugc-reel small {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 850;
}

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

.ugc-steps article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.ugc-steps strong {
  display: block;
  margin-top: 26px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.ugc-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 680;
}

.sprint {
  position: relative;
  overflow: hidden;
  padding: 132px 0 112px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    var(--ink);
  background-size: 44px 44px;
  color: var(--white);
}

.sprint::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 90, 20, 0.2), transparent 28%),
    radial-gradient(circle at 78% 62%, rgba(22, 217, 255, 0.12), transparent 30%);
  pointer-events: none;
}

.sprint-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1.32fr);
  gap: 54px;
  align-items: start;
}

.sprint-steps {
  display: grid;
  gap: 13px;
}

.sprint-steps article {
  display: grid;
  grid-template-columns: 84px minmax(210px, 0.72fr) minmax(260px, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 112px;
  padding: 22px 24px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(14px);
}

.sprint-steps span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.sprint-steps strong {
  min-width: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.48rem, 1.8vw, 1.7rem);
  line-height: 1.04;
}

.sprint-steps p {
  min-width: 0;
  margin: 0;
  color: #d1d5db;
  font-weight: 720;
  line-height: 1.36;
  text-wrap: pretty;
}

.sprint-cta {
  margin-top: 26px;
}

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

.proof-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 58px rgba(8, 8, 6, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.proof-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--cyan), var(--lime));
}

.proof-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 20, 0.28);
  box-shadow: 0 24px 76px rgba(8, 8, 6, 0.14);
}

.proof-card span {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.proof-card h3 {
  margin-top: 42px;
  font-size: clamp(1.9rem, 2.55vw, 2.75rem);
  line-height: 0.96;
}

.proof-card p {
  color: #4a453f;
  font-weight: 720;
}

.proof-mark {
  position: absolute;
  right: 24px;
  top: 26px;
  display: grid;
  place-items: center;
  min-width: 52px;
  height: 52px;
  padding: 0 12px;
  border: 1px solid rgba(255, 90, 20, 0.2);
  border-radius: 16px;
  background: rgba(255, 90, 20, 0.08);
  color: var(--orange);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  font-weight: 950;
}

.proof-link {
  align-self: end;
  width: fit-content;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 950;
}

.proof-link::after {
  content: " ->";
  color: var(--orange);
}

.selected-work {
  display: grid;
  gap: 42px;
}

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

.work-impact article {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(8, 8, 6, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 90, 20, 0.12), rgba(255, 255, 255, 0.74)),
    var(--white);
  box-shadow: 0 18px 52px rgba(8, 8, 6, 0.08);
}

.work-impact strong {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.work-impact span {
  display: block;
  margin-top: 18px;
  color: #4a453f;
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
}

.work-data-note {
  max-width: 520px;
  margin: -28px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.work-grid {
  display: grid;
  gap: 18px;
}

.work-card {
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: perspective(1100px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y)) translateY(var(--lift, 0));
  transform-style: preserve-3d;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(22, 217, 255, 0.16), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

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

.work-card:hover {
  --lift: -7px;
  border-color: rgba(255, 90, 20, 0.28);
  box-shadow: 0 34px 100px rgba(8, 8, 6, 0.2);
}

.work-card:hover::after {
  opacity: 1;
}

.case-number {
  position: absolute;
  right: clamp(18px, 3vw, 36px);
  top: clamp(16px, 2vw, 28px);
  z-index: 2;
  color: rgba(8, 8, 6, 0.06);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(5.2rem, 10vw, 10rem);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
}

.work-card-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
}

.work-visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background:
    linear-gradient(rgba(8, 8, 6, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 6, 0.05) 1px, transparent 1px),
    var(--paper-2);
  background-size: 34px 34px;
}

.work-visual::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 2;
  width: 58px;
  height: 14px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 7px 7px, var(--orange) 0 4px, transparent 4.8px),
    radial-gradient(circle at 29px 7px, var(--orange-2) 0 4px, transparent 4.8px),
    radial-gradient(circle at 51px 7px, var(--cyan) 0 4px, transparent 4.8px);
  filter: drop-shadow(0 8px 20px rgba(8, 8, 6, 0.16));
}

.work-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.42) 47%, transparent 66%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-130%);
}

.work-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s ease;
}

.preview-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  padding: 9px 12px;
  border: 1px solid rgba(8, 8, 6, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.work-card:hover .work-visual img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.work-content {
  position: relative;
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(28px, 5vw, 52px);
  background:
    radial-gradient(circle at 92% 12%, rgba(22, 217, 255, 0.12), transparent 34%),
    radial-gradient(circle at 12% 90%, rgba(255, 90, 20, 0.1), transparent 36%);
}

.work-content > span {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.work-content h3 {
  margin-top: 24px;
  font-size: clamp(2.2rem, 3.45vw, 4.25rem);
  line-height: 1.06;
  text-wrap: balance;
}

.work-content p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 650;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 12px;
}

.work-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.work-kpi {
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(8, 8, 6, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
}

.work-kpi strong {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.work-kpi span {
  display: block;
  margin-top: 8px;
  color: #4a453f;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-link {
  width: fit-content;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 950;
}

.case-link::after {
  content: " ->";
  color: var(--orange);
}

.work-tags span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 90, 20, 0.22);
  border-radius: 999px;
  background: rgba(255, 90, 20, 0.08);
  color: #8b300b;
  font-size: 0.8rem;
  font-weight: 950;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.work-card:hover .work-tags span {
  transform: translateY(-2px);
  border-color: rgba(255, 90, 20, 0.36);
  background: rgba(255, 90, 20, 0.12);
}

.work-card-dark {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  background:
    linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    var(--ink);
  background-size: 38px 38px;
  color: var(--white);
}

.work-card-dark .case-number {
  color: rgba(255, 255, 255, 0.07);
}

.work-card-dark .work-content {
  background:
    radial-gradient(circle at 88% 14%, rgba(216, 255, 62, 0.12), transparent 34%),
    radial-gradient(circle at 4% 86%, rgba(255, 90, 20, 0.18), transparent 38%);
}

.work-card-dark .work-content p {
  color: var(--muted-dark);
}

.work-card-dark .work-tags span {
  border-color: rgba(216, 255, 62, 0.22);
  background: rgba(216, 255, 62, 0.08);
  color: var(--lime);
}

.work-card-dark .work-kpi {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.work-card-dark .work-kpi strong,
.work-card-dark .case-link {
  color: var(--white);
}

.work-card-dark .work-kpi span {
  color: #d1d5db;
}

.work-card-dark:hover .work-tags span {
  border-color: rgba(216, 255, 62, 0.36);
  background: rgba(216, 255, 62, 0.13);
}

.work-card-dark .work-visual {
  min-height: 460px;
  background: var(--white);
}

.work-visual-para img {
  object-position: left top;
}

.training {
  display: grid;
  gap: 18px;
}

.training-card {
  gap: clamp(24px, 5vw, 58px);
  padding: clamp(26px, 5vw, 56px);
  border-radius: 32px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.training-card img {
  flex: 0 0 auto;
  width: clamp(155px, 20vw, 240px);
  height: clamp(155px, 20vw, 240px);
  border: 4px solid var(--orange);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.training-card p:not(.eyebrow) {
  color: var(--muted-dark);
}

.training-format {
  width: fit-content;
  margin: 18px 0 0;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.92rem !important;
  font-weight: 850 !important;
}

.training-cta {
  margin-top: 22px;
}

.tool-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-stack span {
  padding: 12px 15px;
  border: 1px solid rgba(255, 90, 20, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #8b300b;
  font-size: 0.88rem;
  font-weight: 900;
}

.contact {
  padding: 112px 0 136px;
  background: var(--orange);
  color: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.78fr);
  gap: 42px;
  align-items: start;
}

.contact-copy p {
  color: rgba(8, 8, 6, 0.72);
}

.contact .eyebrow {
  color: var(--ink);
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 28px;
  border: 2px solid rgba(8, 8, 6, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(22, 217, 255, 0.08), transparent 36%),
    var(--ink);
  color: var(--white);
  box-shadow: 0 28px 70px rgba(8, 8, 6, 0.18);
}

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

.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.form-field span {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  font-weight: 750;
  outline: none;
  padding: 0 15px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 126px;
  padding: 14px 15px;
  resize: vertical;
}

.form-field select {
  appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(255, 90, 20, 0.16);
}

.form-field select option {
  background: var(--ink);
  color: var(--white);
}

.form-submit {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #ff7a21);
  color: var(--ink);
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 950;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(255, 90, 20, 0.24);
}

.form-note {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 780;
}

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

.quick-link {
  display: grid;
  gap: 2px;
  min-height: 70px;
  padding: 14px 16px;
  border: 1px solid rgba(8, 8, 6, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.quick-link strong {
  font-size: 1rem;
  text-transform: none;
}

.quick-link.whatsapp {
  background: var(--ink);
  color: var(--white);
}

.quick-link.whatsapp strong {
  color: var(--orange);
}

.site-footer {
  display: grid;
  gap: 26px;
  padding: 48px 0;
  color: var(--muted);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.55fr) minmax(260px, 0.75fr);
  gap: 28px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 54px rgba(8, 8, 6, 0.07);
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--orange);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 950;
}

.footer-brand strong {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.footer-brand p {
  max-width: 480px;
  margin: 10px 0 0;
  font-weight: 650;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-nav a {
  color: var(--ink);
  font-weight: 900;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 950;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-pill.whatsapp {
  background: var(--ink);
  color: var(--orange);
}

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

.footer-pill:not(.whatsapp):hover {
  background: var(--ink);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: var(--ink);
  color: var(--orange);
  box-shadow: 0 14px 34px rgba(8, 8, 6, 0.2);
  font-size: 0.86rem;
  font-weight: 950;
  opacity: 0.9;
}

.thanks-body {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    radial-gradient(circle at 72% 18%, rgba(255, 90, 20, 0.26), transparent 30%),
    radial-gradient(circle at 20% 72%, rgba(22, 217, 255, 0.12), transparent 28%),
    var(--ink);
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
  color: var(--white);
}

.thanks-header {
  position: relative;
}

.thanks-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 104px);
  padding: 58px 0;
}

.thanks-panel {
  width: min(860px, 100%);
  padding: clamp(30px, 6vw, 68px);
  border: 1px solid var(--line-dark);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.thanks-panel h1 {
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.84;
}

.thanks-panel p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted-dark);
  font-size: 1.08rem;
  font-weight: 650;
}

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

html[dir="rtl"] {
  text-align: right;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 {
  font-family: "Tajawal", "Space Grotesk", "Inter", sans-serif;
}

html[dir="rtl"] .header-language {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .hero-rail {
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

html[dir="rtl"] .hero-title span {
  transform-origin: right bottom;
}

html[dir="rtl"] .proof-mark {
  right: auto;
  left: 24px;
}

html[dir="rtl"] .preview-badge {
  right: auto;
  left: 18px;
}

html[dir="rtl"] .proof-link::after,
html[dir="rtl"] .case-link::after {
  content: " <-";
}

html[dir="rtl"] .eyebrow::before {
  order: 2;
}

html[dir="rtl"] .service-tab {
  text-align: right;
}

html[dir="rtl"] .service-tab:hover,
html[dir="rtl"] .service-tab.is-active {
  transform: translateX(-4px);
}

html[dir="rtl"] .service-detail::after {
  right: auto;
  left: 24px;
}

html[dir="rtl"] .work-visual::before {
  right: 22px;
  left: auto;
}

html[dir="rtl"] .case-number {
  right: auto;
  left: clamp(18px, 3vw, 36px);
}

html[dir="rtl"] .footer-nav a:hover {
  transform: translateX(-3px);
}

html[dir="rtl"] .floating-cta {
  right: auto;
  left: 20px;
}

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

@media (prefers-reduced-motion: no-preference) {
  body.motion-ready .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

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

  .hero-title span {
    opacity: 0;
    transform: translateY(112%) rotate(2deg);
    animation: title-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .hero-title span:nth-child(2) {
    animation-delay: 0.12s;
  }

  .hero-shine {
    animation: hero-shine 8s ease-in-out infinite;
  }

  .signal-bar::before {
    animation: signal-scan 4.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  }

  .orbit-ring-a {
    animation: orbit-drift 14s linear infinite;
  }

  .orbit-ring-b {
    animation: orbit-drift 18s linear infinite reverse;
  }

  .system-card-a {
    animation: card-float-a 6.5s ease-in-out infinite;
  }

  .system-card-b {
    animation: card-float-b 7.5s ease-in-out infinite;
  }

  .availability-card {
    animation: card-pulse 4.8s ease-in-out infinite;
  }

  .marquee div {
    animation: marquee-drift 18s ease-in-out infinite alternate;
  }

  .growth-cockpit.is-visible .system-map::before {
    animation: cockpit-flow-x 2.8s ease-in-out infinite;
  }

  .growth-cockpit.is-visible .system-map::after {
    animation: cockpit-flow-y 3.2s ease-in-out infinite;
  }

  .growth-cockpit.is-visible .system-node {
    animation: node-breathe 5.8s ease-in-out infinite;
  }

  .growth-cockpit.is-visible .system-node:nth-child(2) {
    animation-delay: 0.25s;
  }

  .growth-cockpit.is-visible .system-node:nth-child(3) {
    animation-delay: 0.5s;
  }

  .growth-cockpit.is-visible .system-node:nth-child(4) {
    animation-delay: 0.75s;
  }

  .growth-cockpit.is-visible .cockpit-metrics span {
    animation: metric-glow 4.4s ease-in-out infinite;
  }

  .growth-cockpit.is-visible .cockpit-metrics span:nth-child(2) {
    animation-delay: 0.35s;
  }

  .growth-cockpit.is-visible .cockpit-metrics span:nth-child(3) {
    animation-delay: 0.7s;
  }

  .growth-cockpit.is-visible .cockpit-metrics span:nth-child(4) {
    animation-delay: 1.05s;
  }

  .work-card.is-visible .work-visual::after {
    animation: preview-sheen 1.05s 0.18s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .work-card-dark.is-visible .work-visual::after {
    animation-delay: 0.36s;
  }
}

@keyframes title-rise {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes hero-shine {
  0%,
  100% {
    background-position: 0% 0%, center;
    opacity: 0.72;
  }

  50% {
    background-position: 100% 0%, center;
    opacity: 1;
  }
}

@keyframes signal-scan {
  0% {
    transform: translateX(-120%);
  }

  55%,
  100% {
    transform: translateX(260%);
  }
}

@keyframes orbit-drift {
  to {
    transform: rotate(360deg);
  }
}

@keyframes card-float-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

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

@keyframes card-float-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

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

@keyframes card-pulse {
  0%,
  100% {
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
  }

  50% {
    box-shadow: 0 22px 70px rgba(216, 255, 62, 0.16);
  }
}

@keyframes marquee-drift {
  to {
    transform: translateX(-28px);
  }
}

@keyframes cockpit-flow-x {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.72);
  }

  50% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

@keyframes cockpit-flow-y {
  0%,
  100% {
    opacity: 0.28;
    transform: scaleY(0.72);
  }

  50% {
    opacity: 0.78;
    transform: scaleY(1);
  }
}

@keyframes node-breathe {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(0);
  }

  50% {
    border-color: rgba(216, 255, 62, 0.34);
    transform: translateY(-4px);
  }
}

@keyframes metric-glow {
  0%,
  100% {
    background: rgba(216, 255, 62, 0.08);
  }

  50% {
    background: rgba(216, 255, 62, 0.16);
  }
}

@keyframes preview-sheen {
  0% {
    opacity: 0;
    transform: translateX(-130%);
  }

  18%,
  66% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(130%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-aura,
  .neural-canvas,
  .hero-shine,
  .orbit-ring {
    display: none;
  }

  .work-visual::after {
    opacity: 0;
  }

  .portrait-frame img,
  .work-card,
  .system-node,
  .work-visual img {
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 1040px) {
  .site-header {
    top: 10px;
    border-radius: 24px;
  }

  .menu-button {
    display: grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 12px;
    border: 0;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
  }

  .menu-button span {
    height: 2px;
    border-radius: 99px;
    background: var(--white);
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line-dark);
    border-radius: 24px;
    background: rgba(8, 8, 6, 0.94);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .nav .language-switch {
    justify-content: center;
    margin: 8px 0;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 34px;
    padding-top: 132px;
  }

  .hero-rail {
    display: none;
  }

  .portrait-system {
    min-height: 600px;
  }

  .portrait-frame {
    inset: 62px 0 118px 5%;
  }

  .hero-proof,
  .scroll-hook,
  .service-console,
  .sprint-layout,
  .ugc-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .training-card {
    display: grid;
    justify-items: start;
  }

  html[dir="rtl"] .training-card {
    justify-items: end;
  }

  .hero-proof {
    grid-column: auto;
  }

  .service-detail {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-detail ul {
    align-content: start;
  }

  .sprint-steps article {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .sprint-steps p {
    grid-column: 2;
  }

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

  .work-card-feature,
  .work-card-dark {
    grid-template-columns: 1fr;
  }

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

  .work-card-dark .work-visual {
    order: -1;
  }

  .work-visual {
    min-height: 360px;
  }

  .ugc-steps {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: 260px;
  }

  .proof-card h3 {
    margin-top: 52px;
  }

  .contact-button {
    min-height: 132px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 640px) {
  .cursor-aura {
    display: none;
  }

  .orbit-ring {
    display: none;
  }

  .section-shell,
  .site-header,
  .hero-grid {
    width: min(100% - 28px, 1180px);
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    max-width: 166px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    margin-top: -72px;
  }

  .hero-grid {
    padding: 124px 0 30px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.15rem);
    line-height: 0.9;
  }

  .hero-statement,
  .section-head p:not(.eyebrow),
  .training-card p:not(.eyebrow),
  .contact-copy p,
  .service-detail p {
    font-size: 1rem;
  }

  .signal-bar {
    width: 100%;
    border-radius: 24px;
  }

  .signal-bar span {
    flex: 1 1 calc(50% - 8px);
    padding: 8px 10px;
    font-size: 0.72rem;
    text-align: center;
  }

  .signal-bar i {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .portrait-system {
    min-height: 500px;
  }

  .portrait-frame {
    inset: 66px 0 112px;
    border-radius: 28px;
  }

  .portrait-frame::before {
    inset: 12px;
    border-radius: 20px;
  }

  .availability-card {
    top: 0;
    left: 10px;
    max-width: calc(100% - 20px);
    font-size: 0.76rem;
  }

  .system-card {
    width: calc(50% - 22px);
    min-height: 86px;
    padding: 12px;
  }

  .system-card-a {
    left: 12px;
    bottom: 12px;
  }

  .system-card-b {
    right: 12px;
    bottom: 12px;
  }

  .system-card small {
    font-size: 0.64rem;
  }

  .system-card strong {
    font-size: 0.92rem;
  }

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

  .hero-proof article {
    min-height: 96px;
    padding: 14px;
  }

  .hero-proof strong {
    margin-top: 12px;
    font-size: 1rem;
  }

  .marquee div {
    justify-content: flex-start;
    overflow: auto;
  }

  .scroll-hook {
    padding: 66px 0 56px;
  }

  .services,
  .proof,
  .selected-work,
  .training {
    padding: 72px 0;
  }

  .ugc {
    padding: 76px 0;
  }

  .ugc-copy h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .scroll-hook-copy h2 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .growth-cockpit {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .cockpit-top,
  .cockpit-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .cockpit-top {
    display: grid;
  }

  .system-map {
    grid-template-columns: 1fr;
  }

  .system-map::before,
  .system-map::after {
    display: none;
  }

  .system-node {
    min-height: 142px;
    border-radius: 18px;
  }

  .system-node strong {
    margin-top: 22px;
  }

  .ugc-copy p:not(.eyebrow),
  .ugc-feature-copy > p {
    font-size: 1rem;
  }

  .ugc-feature {
    grid-template-columns: 1fr;
    min-height: 240px;
    border-radius: 24px;
  }

  .ugc-feature-copy > strong {
    margin-top: 24px;
  }

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

  .sprint {
    padding: 86px 0;
  }

  .contact {
    padding: 86px 0 104px;
  }

  .service-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .service-tab {
    min-height: 56px;
    padding: 0 13px;
    text-align: center;
  }

  .service-tab:hover,
  .service-tab.is-active {
    transform: translateY(-2px);
  }

  html[dir="rtl"] .service-tab:hover,
  html[dir="rtl"] .service-tab.is-active {
    transform: translateY(-2px);
  }

  .service-detail,
  .proof-card,
  .work-card,
  .training-card,
  .contact-button {
    border-radius: 24px;
  }

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

  .work-content {
    padding: 24px;
  }

  .work-content h3 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .work-content p {
    font-size: 1rem;
  }

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

  .work-impact {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .work-impact article {
    min-height: 112px;
    padding: 16px;
    border-radius: 20px;
  }

  .work-impact strong {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }

  .work-impact span {
    margin-top: 12px;
    font-size: 0.76rem;
  }

  .work-data-note {
    margin-top: -26px;
  }

  .preview-badge {
    right: 14px;
    top: 14px;
  }

  html[dir="rtl"] .preview-badge {
    left: 14px;
  }

  .tool-stack {
    min-width: 0;
  }

  .training-format {
    width: 100%;
    border-radius: 18px;
  }

  .tool-stack span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .contact-button {
    min-height: 124px;
    padding: 22px;
  }

  .contact-button strong {
    font-size: 1.55rem;
  }

  .form-row,
  .quick-contact {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .thanks-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    border-radius: 14px;
  }

  .thanks-actions,
  .thanks-actions .button {
    width: 100%;
  }

  .footer-main {
    padding: 22px;
    border-radius: 24px;
  }

  .footer-brand {
    display: grid;
  }

  .service-detail {
    padding: 24px;
  }

  .service-detail span {
    margin-bottom: 24px;
  }

  .sprint-steps article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sprint-steps p {
    grid-column: auto;
  }

  .training-card img {
    width: 150px;
    height: 150px;
  }

  footer {
    display: grid;
    padding-bottom: 34px;
  }

  .floating-cta {
    display: none;
  }
}
