:root {
  --ink: #080b14;
  --ink-2: #0d1221;
  --ink-3: #131a2d;
  --surface: #101626;
  --surface-2: #171f33;
  --text: #f4f6ff;
  --muted: #9aa5be;
  --faint: #667089;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --primary: #7867ff;
  --primary-light: #9d8fff;
  --cyan: #24d6d0;
  --green: #4ee6a0;
  --pink: #ed63c7;
  --orange: #ffb45c;
  --gradient: linear-gradient(135deg, #7367ff 0%, #aa6bff 48%, #e45fc6 100%);
  --gradient-cool: linear-gradient(135deg, #796bff 0%, #22d3c7 100%);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.25);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  --section: clamp(80px, 9vw, 136px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

[data-theme="light"] {
  --ink: #f4f6fb;
  --ink-2: #ffffff;
  --ink-3: #e9edf6;
  --surface: #ffffff;
  --surface-2: #edf1f8;
  --text: #111729;
  --muted: #59637a;
  --faint: #7c879c;
  --line: rgba(17, 23, 41, 0.09);
  --line-strong: rgba(17, 23, 41, 0.16);
  --shadow: 0 24px 80px rgba(44, 52, 82, 0.14);
  --shadow-card: 0 18px 50px rgba(44, 52, 82, 0.1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
  color-scheme: dark;
}

[data-theme="light"] {
  color-scheme: light;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: color .3s, background .3s;
}

body.no-scroll {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

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

h1,
h2,
h3 {
  font-family: "Segoe UI", Inter, ui-sans-serif, sans-serif;
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.65rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
}

h3 {
  font-size: 1.22rem;
}

::selection {
  color: #fff;
  background: rgba(120, 103, 255, .7);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

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

.container.narrow,
.narrow {
  max-width: 840px;
}

.section-shell {
  position: relative;
  padding: var(--section) 0;
}

.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;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--primary-light);
  font-size: .73rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 1px;
  content: "";
  background: currentColor;
}

.gradient-text {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text);
  font-size: .9rem;
  font-weight: 720;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s, background .35s, border-color .35s;
}

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

.btn-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 14px 35px rgba(121, 104, 255, .3);
}

.btn-primary::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: translateX(-120%);
  transition: transform .7s;
}

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

.btn-primary:hover {
  box-shadow: 0 18px 44px rgba(121, 104, 255, .44);
}

.btn-ghost,
.btn-outline {
  background: rgba(255,255,255,.035);
  border-color: var(--line-strong);
  backdrop-filter: blur(14px);
}

.btn-ghost:hover,
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.26);
}

.btn-small {
  min-height: 38px;
  padding: 0 17px;
  font-size: .8rem;
}

.btn.disabled {
  opacity: .35;
  pointer-events: none;
}

#loading-screen {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: grid;
  place-items: center;
  background: #080b14;
  transition: opacity .5s, visibility .5s;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark,
.brand-mark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  font-family: "Segoe UI", sans-serif;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: -.08em;
}

.loader-mark {
  width: 76px;
  height: 76px;
  border-radius: 23px;
  font-size: 1.2rem;
  animation: loader 1.1s infinite alternate var(--ease);
}

.scroll-progress {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  pointer-events: none;
  opacity: .48;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 98, 255, .14), transparent 67%);
  transform: translate(-50%, -50%);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s, box-shadow .35s;
}

.site-header.scrolled {
  background: rgba(8, 11, 20, .82);
  border-color: var(--line);
  box-shadow: 0 12px 44px rgba(0,0,0,.2);
  backdrop-filter: blur(22px);
}

[data-theme="light"] .site-header.scrolled {
  background: rgba(255,255,255,.86);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--container));
  height: 78px;
  margin: auto;
  gap: 28px;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 8px 26px rgba(126, 102, 255, .3);
}

.brand-word {
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.brand-word strong {
  color: var(--primary-light);
}

.brand-logo-set {
  display: block;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 42px;
  max-width: 210px;
  object-fit: contain;
}

.brand-logo-light {
  display: none;
}

[data-theme="light"] .brand-logo-dark {
  display: none;
}

[data-theme="light"] .brand-logo-light {
  display: block;
}

.site-footer .brand-logo-dark,
.site-footer .brand-logo-footer {
  display: block;
}

.site-footer .brand-logo-light {
  display: none;
}

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

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 13px;
  border-radius: 10px;
  color: #bec6d8;
  font-size: .82rem;
  font-weight: 600;
  transition: color .2s, background .2s;
}

[data-theme="light"] .nav-link {
  color: var(--muted);
}

.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,.055);
}

[data-theme="light"] .nav-link:hover {
  color: var(--text);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu,
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  padding: 9px;
  opacity: 0;
  visibility: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(12, 17, 31, .97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  transform: translateY(-7px);
  transition: .24s var(--ease);
}

[data-theme="light"] .nav-dropdown-menu,
[data-theme="light"] .lang-menu {
  background: rgba(255,255,255,.98);
}

.nav-dropdown-menu {
  left: 50%;
  width: 260px;
  transform: translate(-50%, -7px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: .8rem;
}

.nav-dropdown-menu a:hover,
.lang-menu a:hover {
  color: var(--text);
  background: rgba(255,255,255,.055);
}

.menu-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dot);
  box-shadow: 0 0 12px var(--dot);
}

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

.icon-button,
.lang-current {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  color: #c3cada;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.035);
  cursor: pointer;
}

.icon-button:hover,
.lang-current:hover {
  color: #fff;
  border-color: var(--line-strong);
}

.lang-switcher {
  position: relative;
}

.lang-current {
  display: flex;
  width: auto;
  padding: 0 9px;
  gap: 4px;
  font-size: .68rem;
  font-weight: 800;
}

.lang-menu {
  right: 0;
  width: 165px;
}

.lang-switcher.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 9px;
  color: var(--muted);
  font-size: .75rem;
}

.lang-menu a span {
  min-width: 26px;
  color: var(--primary-light);
  font-weight: 850;
}

.lang-menu a.active {
  color: var(--text);
  background: rgba(120,103,255,.12);
}

.nav-cta {
  min-height: 39px;
  padding: 0 17px;
  font-size: .75rem;
}

.mobile-menu-btn {
  display: none;
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-btn span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: var(--text);
  transition: .25s;
}

.mobile-nav {
  display: none;
  padding: 10px 24px 24px;
  border-top: 1px solid var(--line);
  background: rgba(8,11,20,.97);
}

.mobile-nav a {
  display: block;
  padding: 12px 5px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.mobile-nav.open {
  display: block;
}

.search-overlay {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  background: rgba(5,7,13,.94);
  backdrop-filter: blur(18px);
  transition: .3s;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-close {
  position: absolute;
  top: 30px;
  right: 34px;
  color: #fff;
  border: 0;
  background: transparent;
  font-size: 2.5rem;
  cursor: pointer;
}

.search-panel {
  width: min(100%, 760px);
}

.search-panel h2 {
  margin-bottom: 34px;
}

.search-panel input {
  width: 100%;
  padding: 20px 0;
  color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.24);
  outline: none;
  background: transparent;
  font-size: clamp(1.35rem, 4vw, 2.8rem);
}

.search-results {
  max-height: 45vh;
  margin-top: 22px;
  overflow: auto;
}

.search-results a,
.search-message {
  display: block;
  padding: 15px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #c9d0df;
}

.search-results a b {
  display: block;
  color: #fff;
}

.search-results a small {
  color: #818ba1;
}

.hero-section {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  padding: 124px 0 75px;
  background:
    radial-gradient(circle at 70% 45%, rgba(105, 82, 227, .15), transparent 33%),
    radial-gradient(circle at 12% 70%, rgba(30, 207, 196, .05), transparent 27%),
    #080b14;
}

[data-theme="light"] .hero-section {
  background:
    radial-gradient(circle at 70% 45%, rgba(105, 82, 227, .13), transparent 34%),
    radial-gradient(circle at 12% 70%, rgba(30, 207, 196, .08), transparent 27%),
    #f4f6fb;
}

.hero-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

body[data-particles="0"] .hero-grid,
body[data-particles="0"] .hero-aurora {
  display: none;
}

.hero-aurora {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
  animation: drift 12s infinite alternate var(--ease);
}

.hero-aurora-one {
  top: 10%;
  right: -8%;
  background: #8e63ff;
}

.hero-aurora-two {
  bottom: -20%;
  left: 18%;
  background: #20cfc9;
  animation-delay: -5s;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.hero-copy {
  padding-top: 18px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  padding: 7px 13px;
  color: #b5bed0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 13px var(--green);
  animation: pulse 1.7s infinite;
}

.hero-title {
  max-width: 790px;
  margin-bottom: 25px;
  font-size: clamp(3.1rem, 5.8vw, 5.85rem);
  letter-spacing: -.065em;
}

.hero-subtitle {
  max-width: 580px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.play-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: .7rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 50px;
  color: var(--faint);
  font-size: .69rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-trust div {
  display: flex;
}

.hero-trust b {
  display: grid;
  width: 28px;
  height: 28px;
  margin-left: -5px;
  place-items: center;
  color: #aeb6c7;
  border: 2px solid #080b14;
  border-radius: 50%;
  background: #1a2133;
  font-size: .61rem;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
  perspective: 1100px;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(135,112,255,.16);
  border-radius: 50%;
  animation: rotate 25s linear infinite;
}

.visual-orbit::before {
  position: absolute;
  top: 19%;
  left: 2%;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 18px var(--primary);
}

.orbit-one {
  width: 460px;
  height: 460px;
}

.orbit-two {
  width: 350px;
  height: 350px;
  animation-direction: reverse;
  animation-duration: 18s;
}

.code-window {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(14, 19, 34, .8);
  box-shadow: 0 34px 100px rgba(0,0,0,.5), inset 0 1px rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  transform: rotateY(-6deg) rotateX(3deg);
  transition: transform .6s var(--ease);
}

.hero-visual:hover .code-window {
  transform: rotateY(0) rotateX(0) translateY(-5px);
}

.window-top {
  display: flex;
  align-items: center;
  height: 45px;
  padding: 0 16px;
  gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.025);
}

.window-top span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6b72;
}

.window-top span:nth-child(2) {
  background: #ffc95b;
}

.window-top span:nth-child(3) {
  background: #4ee6a0;
}

.window-top small {
  margin-inline: auto;
  color: #626d83;
  font-size: .64rem;
}

.code-lines {
  display: grid;
  padding: 28px 24px;
  color: #d3d9e8;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(.68rem, 1.2vw, .8rem);
  line-height: 2.1;
}

.code-lines span {
  white-space: nowrap;
}

.code-lines i {
  display: inline-block;
  width: 34px;
  color: #414b62;
  font-style: normal;
  user-select: none;
}

.code-lines em {
  color: #e6a6d3;
  font-style: normal;
}

.code-lines .purple {
  color: #ac8cff;
}

.code-lines .green {
  color: #54d5c5;
}

.cursor {
  color: var(--green);
  animation: blink .7s infinite;
}

.code-result {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 18px 18px;
  padding: 14px;
  border: 1px solid rgba(78,230,160,.16);
  border-radius: 13px;
  background: rgba(78,230,160,.055);
}

.result-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--green);
  border-radius: 9px;
  background: rgba(78,230,160,.12);
}

.code-result div {
  display: grid;
}

.code-result small {
  color: #6e7a90;
  font-size: .59rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.code-result strong {
  color: #cfd6e5;
  font-size: .72rem;
}

.live-pill {
  margin-inline-start: auto;
  padding: 3px 7px;
  color: var(--green);
  border: 1px solid rgba(78,230,160,.25);
  border-radius: 99px;
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 28px auto;
  padding: 11px 14px;
  column-gap: 9px;
  color: #cdd3e1;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  background: rgba(18, 24, 41, .82);
  box-shadow: 0 18px 45px rgba(0,0,0,.3);
  backdrop-filter: blur(16px);
  animation: float 5s infinite ease-in-out;
}

.floating-chip > span {
  grid-row: span 2;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--cyan);
  border-radius: 8px;
  background: rgba(36,214,208,.09);
}

.floating-chip b {
  font-size: .8rem;
  line-height: 1.15;
}

.floating-chip small {
  color: #707b91;
  font-size: .55rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.chip-one {
  top: 8%;
  right: -2%;
}

.chip-two {
  bottom: 12%;
  left: -5%;
  animation-delay: -2.3s;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #566078;
  font-size: .54rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 1px;
  height: 30px;
  background: linear-gradient(var(--primary), transparent);
}

.section-header {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-header .eyebrow {
  justify-content: center;
}

.section-header h2 {
  margin-bottom: 18px;
}

.section-header p,
.lead {
  color: var(--muted);
}

.services-section {
  background:
    radial-gradient(circle at 50% 0, rgba(111,91,255,.09), transparent 36%),
    var(--ink-2);
}

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

.service-card {
  position: relative;
  min-height: 260px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  transition: transform .5s var(--ease), border-color .4s, box-shadow .4s;
}

.service-card::before {
  position: absolute;
  inset: auto -30% -60% 10%;
  height: 80%;
  content: "";
  opacity: 0;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 24%, transparent), transparent 67%);
  transition: opacity .45s;
}

.service-card:hover {
  border-color: color-mix(in srgb, var(--accent) 42%, transparent);
  box-shadow: var(--shadow-card);
  transform: translateY(-8px);
}

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

.service-index {
  position: absolute;
  top: 19px;
  right: 21px;
  color: var(--faint);
  font-family: monospace;
  font-size: .65rem;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 13px;
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  font-size: 1.25rem;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent) 13%, transparent);
}

.service-card h2,
.service-card h3 {
  position: relative;
  margin-bottom: 11px;
  font-size: 1.05rem;
}

.service-card p {
  position: relative;
  min-height: 44px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .79rem;
}

.card-link {
  position: relative;
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
}

.service-grid .service-card:last-child:nth-child(4n + 1) {
  grid-column: 2 / span 2;
}

.approach-section {
  overflow: hidden;
  background: var(--ink);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(60px, 10vw, 130px);
}

.split-layout h2 {
  max-width: 550px;
  margin-bottom: 20px;
}

.approach-visual {
  display: grid;
  min-height: 520px;
  place-items: center;
}

.process-ring {
  position: relative;
  display: grid;
  width: min(78vw, 410px);
  height: min(78vw, 410px);
  place-items: center;
  border: 1px solid rgba(123,103,255,.24);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(113,92,255,.045);
}

.process-ring::before,
.process-ring::after {
  position: absolute;
  content: "";
  border: 1px dashed rgba(255,255,255,.08);
  border-radius: 50%;
}

.process-ring::before {
  inset: 14%;
  animation: rotate 24s linear infinite;
}

.process-ring::after {
  inset: 30%;
  background: radial-gradient(circle, rgba(119,99,255,.12), transparent 70%);
}

.ring-center {
  z-index: 2;
  display: grid;
  text-align: center;
}

.ring-center b {
  font-size: 1.1rem;
  letter-spacing: .16em;
}

.ring-center small {
  color: var(--faint);
  font-size: .52rem;
  letter-spacing: .2em;
}

.process-node {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 77px;
  height: 77px;
  place-items: center;
  color: var(--primary-light);
  border: 1px solid rgba(124,105,255,.28);
  border-radius: 50%;
  background: var(--ink-2);
  box-shadow: 0 12px 36px rgba(0,0,0,.3);
  font-family: monospace;
  font-size: .8rem;
}

.process-node small {
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: .52rem;
  letter-spacing: .04em;
}

.node-a {
  top: -10px;
  left: 42%;
}

.node-b {
  top: 42%;
  right: -12px;
}

.node-c {
  bottom: -10px;
  left: 42%;
}

.node-d {
  top: 42%;
  left: -12px;
}

.feature-list {
  display: grid;
  margin: 36px 0 0;
  padding: 0;
  gap: 22px;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
}

.feature-list li > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(78,230,160,.2);
  border-radius: 7px;
  background: rgba(78,230,160,.07);
  font-size: .66rem;
}

.feature-list b {
  font-size: .86rem;
}

.feature-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .77rem;
}

.stats-section {
  padding: 70px 0;
  border-block: 1px solid var(--line);
  background: var(--ink-2);
}

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

.stat-card {
  display: grid;
  justify-items: center;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-number {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 850;
  letter-spacing: -.06em;
  line-height: 1;
}

.stat-card > span {
  margin-top: 10px;
  color: var(--muted);
  font-size: .73rem;
}

.work-section {
  background: var(--ink);
}

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

.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform .45s var(--ease), border-color .3s, box-shadow .4s;
}

.work-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
  transform: translateY(-7px);
}

.work-art {
  position: relative;
  display: grid;
  min-height: 250px;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.2), transparent 18%),
    linear-gradient(145deg, #5d54d2, #9666da 48%, #242b48);
}

.work-card:nth-child(2) .work-art {
  background:
    radial-gradient(circle at 25% 22%, rgba(255,255,255,.18), transparent 20%),
    linear-gradient(145deg, #0d847e, #24b8ad 48%, #172e44);
}

.work-card:nth-child(3) .work-art {
  background:
    radial-gradient(circle at 72% 28%, rgba(255,255,255,.15), transparent 17%),
    linear-gradient(145deg, #bf5c8e, #7756ba 48%, #252842);
}

.work-art::before,
.work-art::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
}

.work-art::before {
  width: 230px;
  height: 230px;
}

.work-art::after {
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(3px);
}

.work-art span {
  z-index: 2;
  color: rgba(255,255,255,.9);
  font-family: "Segoe UI", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  text-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.work-info {
  padding: 25px;
}

.work-info small {
  color: var(--primary-light);
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.work-info h2,
.work-info h3 {
  margin: 9px 0 11px;
  font-size: 1.28rem;
}

.work-info p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .79rem;
}

.app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 18px;
}

.app-links a {
  color: var(--primary-light);
  font-size: .68rem;
  font-weight: 700;
}

.section-action {
  margin-top: 44px;
  text-align: center;
}

.testimonial-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 50%, rgba(125,105,255,.08), transparent 30%),
    var(--ink-2);
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 22px;
  gap: 16px;
}

.testimonial-card {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
}

.quote-mark {
  height: 45px;
  color: var(--primary-light);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.testimonial-card > p {
  min-height: 90px;
  color: #cbd2e2;
  font-size: .89rem;
}

[data-theme="light"] .testimonial-card > p {
  color: var(--text);
}

.testimonial-card footer {
  display: grid;
}

.testimonial-card footer b {
  font-size: .76rem;
}

.testimonial-card footer span {
  color: var(--faint);
  font-size: .67rem;
}

.blog-preview {
  background: var(--ink);
}

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

.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .4s var(--ease), border-color .3s;
}

.post-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-6px);
}

.post-art {
  position: relative;
  display: flex;
  height: 185px;
  align-items: flex-end;
  padding: 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(108,89,242,.75), rgba(28, 34, 56, .5)),
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(255,255,255,.08) 16px 17px);
}

.post-card:nth-child(2n) .post-art {
  background:
    linear-gradient(135deg, rgba(25,151,144,.8), rgba(28,34,56,.5)),
    repeating-linear-gradient(-45deg, transparent 0 16px, rgba(255,255,255,.08) 16px 17px);
}

.post-art::after {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 150px;
  height: 150px;
  content: "";
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
}

.post-art span {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.85);
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.post-content {
  padding: 23px;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--faint);
  font-size: .61rem;
}

.post-meta span:first-child {
  color: var(--primary-light);
}

.post-card h2,
.post-card h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
  line-height: 1.3;
}

.post-card h2 a,
.post-card h3 a {
  transition: color .2s;
}

.post-card h2 a:hover,
.post-card h3 a:hover {
  color: var(--primary-light);
}

.post-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .76rem;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 11vw, 150px) 0;
  background:
    radial-gradient(circle at 50% 110%, rgba(127,101,255,.3), transparent 47%),
    #0a0d17;
}

.cta-section::before {
  position: absolute;
  top: -170px;
  left: calc(50% - 250px);
  width: 500px;
  height: 500px;
  content: "";
  border: 1px solid rgba(123,104,255,.14);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #fff;
  text-align: center;
}

.cta-content .eyebrow {
  justify-content: center;
}

.cta-content p {
  max-width: 580px;
  margin: 0 auto 34px;
  color: #9da6ba;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 85px 0 28px;
  color: #f4f6ff;
  border-top: 1px solid rgba(255,255,255,.07);
  background: #080b14;
}

.footer-orbit {
  position: absolute;
  right: -150px;
  bottom: -300px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(124,105,255,.09);
  border-radius: 50%;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 54px;
}

.footer-brand {
  max-width: 390px;
}

.footer-brand p {
  margin: 23px 0;
  color: #828ca1;
  font-size: .8rem;
}

.footer-email {
  color: var(--primary-light);
  font-size: .8rem;
  font-weight: 700;
}

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

.footer-phone {
  color: #9aa4b8;
  font-size: .75rem;
}

.footer-phone:hover {
  color: #fff;
}

.footer-grid h3 {
  margin-bottom: 18px;
  font-size: .73rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 9px;
}

.footer-grid li a {
  color: #7f899e;
  font-size: .75rem;
  transition: color .2s;
}

.footer-grid li a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 68px;
  padding-top: 22px;
  color: #555f72;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .65rem;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 550px;
  align-items: center;
  padding: 145px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 45%, rgba(115,92,248,.16), transparent 30%),
    linear-gradient(180deg, #080b14, var(--ink));
}

[data-theme="light"] .page-hero {
  background:
    radial-gradient(circle at 70% 45%, rgba(115,92,248,.13), transparent 30%),
    linear-gradient(180deg, #eceffc, var(--ink));
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .55;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
}

.page-hero p {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.05rem;
}

.page-hero.compact {
  min-height: 490px;
}

.page-hero.article-hero {
  min-height: 620px;
  text-align: center;
}

.page-hero.article-hero .eyebrow {
  justify-content: center;
}

.page-hero.article-hero p {
  margin-inline: auto;
}

.breadcrumb {
  margin-bottom: 40px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
  color: var(--faint);
  font-size: .68rem;
}

.breadcrumb li {
  display: flex;
  gap: 8px;
}

.breadcrumb a:hover {
  color: var(--primary-light);
}

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

.content-card,
.partner-card {
  min-height: 230px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .4s var(--ease), border-color .3s;
}

.content-card:hover,
.partner-card:hover {
  border-color: rgba(122,104,255,.35);
  transform: translateY(-6px);
}

.content-card-icon,
.partner-logo {
  display: grid;
  width: 47px;
  height: 47px;
  margin-bottom: 25px;
  place-items: center;
  color: var(--primary-light);
  border: 1px solid rgba(122,104,255,.25);
  border-radius: 13px;
  background: rgba(122,104,255,.08);
}

.content-card h2,
.partner-card h2 {
  font-size: 1.12rem;
}

.content-card p,
.partner-card p {
  color: var(--muted);
  font-size: .78rem;
}

.content-card > span:last-child,
.partner-card a {
  color: var(--primary-light);
  font-size: .7rem;
  font-weight: 700;
}

.partner-card small {
  color: var(--primary-light);
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.partner-logo {
  width: 62px;
  height: 62px;
  color: #fff;
  background: var(--gradient);
  font-weight: 850;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 70px 24px;
  color: var(--muted);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  text-align: center;
}

.empty-state > span {
  font-size: 2.5rem;
}

.empty-state h2 {
  margin: 14px 0 8px;
  color: var(--text);
  font-size: 1.4rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 70px;
}

.rich-content {
  color: #c5ccdb;
  font-size: 1rem;
}

[data-theme="light"] .rich-content {
  color: var(--text);
}

.rich-content h2 {
  margin: 2.1em 0 .7em;
  color: var(--text);
  font-size: 1.75rem;
}

.rich-content h3 {
  margin: 1.7em 0 .65em;
  color: var(--text);
}

.rich-content p,
.rich-content ul,
.rich-content ol {
  margin-bottom: 1.35em;
}

.rich-content a {
  color: var(--primary-light);
  text-decoration: underline;
}

.rich-content blockquote {
  margin: 2em 0;
  padding: 23px 28px;
  color: var(--text);
  border-inline-start: 3px solid var(--primary);
  background: var(--surface);
}

.article-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.aside-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.aside-card h2 {
  font-size: 1.05rem;
}

.aside-card ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
  color: var(--muted);
  font-size: .76rem;
}

.aside-card.accent {
  color: #fff;
  border: 0;
  background: var(--gradient);
}

.aside-card.accent p {
  color: rgba(255,255,255,.78);
  font-size: .76rem;
}

.aside-card.accent a {
  font-size: .72rem;
  font-weight: 750;
}

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

.faq-section details {
  border-bottom: 1px solid var(--line);
}

.faq-section summary {
  padding: 21px 0;
  cursor: pointer;
  font-weight: 700;
}

.faq-section details div {
  padding: 0 0 22px;
  color: var(--muted);
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  color: var(--faint);
  font-size: .68rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 8px;
}

.tag-list span {
  padding: 6px 10px;
  color: var(--primary-light);
  border: 1px solid rgba(122,104,255,.2);
  border-radius: 99px;
  background: rgba(122,104,255,.07);
  font-size: .65rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  gap: 15px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  align-items: start;
  gap: clamp(50px, 9vw, 120px);
}

.contact-cards {
  display: grid;
  margin-top: 40px;
  gap: 12px;
}

.contact-cards > * {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.contact-cards > * > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--primary-light);
  border-radius: 10px;
  background: rgba(120,103,255,.08);
}

.contact-cards div div,
.contact-cards a div {
  display: grid;
}

.contact-cards small {
  color: var(--faint);
  font-size: .61rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-cards b {
  font-size: .8rem;
}

.contact-form {
  display: grid;
  padding: clamp(26px, 5vw, 45px);
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

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

.contact-form label > span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  background: var(--ink-2);
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(120,103,255,.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .btn {
  justify-self: start;
}

.form-privacy {
  color: var(--faint);
  font-size: .61rem;
}

.form-message {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: .75rem;
}

.form-message.success {
  color: var(--green);
  border: 1px solid rgba(78,230,160,.2);
  background: rgba(78,230,160,.07);
}

.form-message.error {
  color: #ff8790;
  border: 1px solid rgba(255,103,115,.2);
  background: rgba(255,103,115,.07);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.error-page {
  display: flex;
  min-height: 100svh;
  padding: 130px 24px 80px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: radial-gradient(circle at 50% 40%, rgba(124,103,255,.15), transparent 35%), var(--ink);
}

.error-code {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(8rem, 22vw, 15rem);
  font-weight: 900;
  letter-spacing: -.1em;
  line-height: .8;
  opacity: .18;
}

.error-page h1 {
  margin: 16px 0;
  font-size: clamp(2rem, 5vw, 4rem);
}

.error-page p {
  max-width: 520px;
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(17,22,38,.85);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: .3s;
}

.whatsapp-float {
  position: fixed;
  z-index: 890;
  right: 22px;
  bottom: 76px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #07150e;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 14px 32px rgba(78,230,160,.28);
  transition: transform .3s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.cookie-banner {
  position: fixed;
  z-index: 2000;
  right: 24px;
  bottom: 24px;
  width: min(calc(100% - 48px), 410px);
  padding: 20px;
  color: #d0d7e6;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(13,18,32,.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.cookie-banner p {
  margin-bottom: 14px;
  font-size: .76rem;
}

.cookie-banner div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner a {
  color: var(--primary-light);
  font-size: .69rem;
}

[data-aos] {
  opacity: 0;
  transition:
    opacity var(--aos-duration, .8s) var(--aos-easing, var(--ease)) var(--aos-delay, 0s),
    transform var(--aos-duration, .8s) var(--aos-easing, var(--ease)) var(--aos-delay, 0s);
}

[data-aos="fade-up"] {
  transform: translateY(35px);
}

[data-aos="fade-down"] {
  transform: translateY(-30px);
}

[data-aos="slide-left"] {
  transform: translateX(-35px);
}

[data-aos="slide-right"] {
  transform: translateX(35px);
}

[data-aos="zoom-in"] {
  transform: scale(.94);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

@keyframes loader {
  to { transform: scale(.86) rotate(7deg); opacity: .55; }
}

@keyframes drift {
  to { transform: translate(50px, -40px) scale(1.15); }
}

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

@keyframes pulse {
  50% { opacity: .45; transform: scale(.82); }
}

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

@keyframes float {
  50% { transform: translateY(-11px); }
}

@media (max-width: 1120px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  .service-grid .service-card:last-child:nth-child(4n + 1) {
    grid-column: auto;
  }
}

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-title,
  .hero-subtitle {
    margin-inline: auto;
  }

  .hero-cta-group,
  .hero-trust {
    justify-content: center;
  }

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

  .split-layout {
    grid-template-columns: 1fr;
  }

  .approach-visual {
    order: 2;
  }

  .work-grid,
  .post-grid,
  .content-card-grid,
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .article-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    width: calc(100% - 28px);
    height: 67px;
  }

  .brand-word,
  .nav-cta,
  .header-actions > .icon-button:first-child {
    display: none;
  }

  .hero-section {
    padding-top: 105px;
  }

  .hero-title {
    font-size: clamp(2.85rem, 15vw, 4.2rem);
  }

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .code-window {
    transform: none;
  }

  .orbit-one {
    width: 330px;
    height: 330px;
  }

  .orbit-two {
    width: 250px;
    height: 250px;
  }

  .floating-chip {
    display: none;
  }

  .service-grid,
  .work-grid,
  .post-grid,
  .content-card-grid,
  .partner-grid,
  .article-aside {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 35px;
  }

  .stat-card:nth-child(2) {
    border-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 9px;
    flex-direction: column;
  }

  .page-hero {
    min-height: 500px;
  }

  .page-hero.article-hero {
    min-height: 560px;
  }

  .article-meta {
    align-items: center;
    flex-direction: column;
    gap: 5px;
  }

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

  .cursor-glow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  [data-aos] {
    opacity: 1;
    transform: none;
  }
}
