:root {
  color-scheme: dark;
  --bg: #060B14;
  --surface: rgba(11, 18, 32, 0.82);
  --surface-strong: #0B1220;
  --text: #EAF2FF;
  --muted: #A9B7D0;
  --line: #14233A;
  --line-soft: rgba(20, 35, 58, 0.6);
  --accent: #0B5FFF;
  --accent-2: #2FD6FF;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  --topbar-bg: rgba(6, 11, 20, 0.82);
  --menu-bg: rgba(11, 18, 32, 0.96);
  --ghost-bg: rgba(255, 255, 255, 0.05);
  --panel-a: rgba(11, 18, 32, 0.92);
  --panel-b: rgba(6, 11, 20, 0.95);
  --input-bg: rgba(6, 11, 20, 0.95);
  --bg-orb-a: rgba(11, 95, 255, 0.15);
  --bg-orb-b: rgba(47, 214, 255, 0.12);
  --bg-orb-c: rgba(255, 255, 255, 0.04);
  --dot-color: rgba(234, 242, 255, 0.05);
  --grain-a: rgba(255, 255, 255, 0.015);
  --grain-b: rgba(255, 255, 255, 0.01);
  --canvas-wave-rgb: 234, 242, 255;
  --canvas-overlay-rgb: 11, 95, 255;
  --hero-title: #EAF2FF;
  --hero-lead: #A9B7D0;
  --hero-chip-text: #EAF2FF;
  --hero-chip-bg: rgba(11, 18, 32, 0.74);
  --hero-chip-border: rgba(20, 35, 58, 0.4);
  --hero-eyebrow-text: #A9B7D0;
  --hero-gradient-start: #1D3A61;
  --hero-gradient-mid: #0B5FFF;
  --hero-gradient-end: #2FD6FF;
  --success: #22C55E;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #0B5FFF;
  --ambient-a: rgba(11, 95, 255, 0.18);
  --ambient-b: rgba(47, 214, 255, 0.14);
  --ambient-line: rgba(47, 214, 255, 0.26);
  --logo-ring: rgba(11, 95, 255, 0.2);
  --logo-glow: 0 0 0 4px rgba(11, 95, 255, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1140px, 92vw);
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #F7FAFF;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #FFFFFF;
  --text: #0E1726;
  --muted: #55627A;
  --line: #E6ECF5;
  --line-soft: rgba(230, 236, 245, 0.8);
  --accent: #0B5FFF;
  --accent-2: #2FD6FF;
  --shadow: 0 24px 60px rgba(14, 23, 38, 0.08);
  --topbar-bg: rgba(247, 250, 255, 0.84);
  --menu-bg: #ffffff;
  --ghost-bg: rgba(255, 255, 255, 0.76);
  --panel-a: rgba(255, 255, 255, 0.78);
  --panel-b: rgba(247, 250, 255, 0.88);
  --input-bg: #ffffff;
  --bg-orb-a: rgba(11, 95, 255, 0.1);
  --bg-orb-b: rgba(47, 214, 255, 0.12);
  --bg-orb-c: rgba(14, 23, 38, 0.04);
  --dot-color: rgba(14, 23, 38, 0.06);
  --grain-a: rgba(0, 0, 0, 0.012);
  --grain-b: rgba(0, 0, 0, 0.01);
  --canvas-wave-rgb: 14, 23, 38;
  --canvas-overlay-rgb: 255, 255, 255;
  --hero-title: #0E1726;
  --hero-lead: #55627A;
  --hero-chip-text: #0E1726;
  --hero-chip-bg: rgba(255, 255, 255, 0.74);
  --hero-chip-border: rgba(14, 23, 38, 0.08);
  --hero-eyebrow-text: #55627A;
  --hero-gradient-start: #2A4A7A;
  --hero-gradient-mid: #0B5FFF;
  --hero-gradient-end: #2FD6FF;
  --success: #22C55E;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #0B5FFF;
  --ambient-a: rgba(11, 95, 255, 0.1);
  --ambient-b: rgba(47, 214, 255, 0.1);
  --ambient-line: rgba(11, 95, 255, 0.16);
  --logo-ring: rgba(14, 23, 38, 0.12);
  --logo-glow: 0 0 0 4px rgba(11, 95, 255, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-lock {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    radial-gradient(840px 360px at 11% 4%, var(--bg-orb-a), transparent 72%),
    radial-gradient(790px 420px at 90% 18%, var(--bg-orb-b), transparent 74%),
    radial-gradient(520px 320px at 50% 95%, var(--bg-orb-c), transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image: radial-gradient(var(--dot-color) 0.7px, transparent 0.7px);
  background-size: 20px 20px;
  opacity: 0.2;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.24;
  background:
    repeating-linear-gradient(0deg, var(--grain-a), var(--grain-a) 1px, transparent 1px, transparent 2px),
    repeating-linear-gradient(90deg, var(--grain-b), var(--grain-b) 1px, transparent 1px, transparent 2px);
}

h1,
h2,
h3,
.brand {
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: "Syne", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.92rem 1.35rem;
  font: 700 0.95rem/1 "Manrope", sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #0B1F3A 0%, #0B5FFF 55%, #2FD6FF 100%);
  box-shadow: 0 12px 28px rgba(11, 95, 255, 0.22);
  cursor: pointer;
  transition: all 0.28s ease;
}

.btn:hover:not(:disabled) {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #0A1A33 0%, #0A56E6 55%, #29C5F2 100%);
  box-shadow: 0 18px 34px rgba(11, 95, 255, 0.28);
}

.btn:active:not(:disabled) {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #071226 0%, #0946BF 55%, #20A9D6 100%);
}

.btn:disabled {
  background: #C7D3E6;
  color: #FFFFFF;
  cursor: not-allowed;
  opacity: 0.8;
  box-shadow: none;
}

.btn--secondary {
  color: #0B1F3A;
  background: #FFFFFF;
  box-shadow: inset 0 0 0 1px var(--line);
}

:root[data-theme="dark"] .btn--secondary {
  color: #0B5FFF;
  background: transparent;
  box-shadow: inset 0 0 0 1px #14233A;
}

.btn--secondary:hover:not(:disabled) {
  background: #F1F6FF;
  box-shadow: inset 0 0 0 1px #CFE0FF;
}

:root[data-theme="dark"] .btn--secondary:hover:not(:disabled) {
  background: #0B1220;
  box-shadow: inset 0 0 0 1px #1C3359;
}

.btn--ghost {
  color: #0B5FFF;
  background: rgba(11, 95, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(11, 95, 255, 0.15);
}

.btn--ghost:hover:not(:disabled) {
  background: rgba(11, 95, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(11, 95, 255, 0.3);
}

:root[data-theme="dark"] .btn--ghost {
  color: #2FD6FF;
  background: rgba(47, 214, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(47, 214, 255, 0.2);
}

:root[data-theme="dark"] .btn--ghost:hover:not(:disabled) {
  background: rgba(47, 214, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(47, 214, 255, 0.4);
}

.topbar {
  position: sticky;
  top: 0.6rem;
  z-index: 80;
  padding-bottom: 0.95rem;
}

.topbar__inner {
  width: min(1180px, 94vw);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--topbar-bg);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.74rem 0.95rem 0.74rem 1.05rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.05rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.brand__mark {
  width: 46px;
  height: 46px;
  display: block;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.brand__name {
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--hero-title);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ghost-bg);
  color: var(--text);
  padding: 0.56rem 0.88rem;
  font: 700 0.78rem/1 "Manrope", sans-serif;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(11, 95, 255, 0.2), rgba(47, 214, 255, 0.14));
}

.topbar nav {
  display: flex;
  gap: 1.05rem;
}

.topbar nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.24s ease;
}

.topbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.34rem;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.24s ease;
}

.topbar nav a:hover {
  color: var(--text);
}

.topbar nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--menu-bg);
  color: var(--text);
  padding: 0.56rem 0.82rem;
  font: 700 0.78rem/1 "Manrope", sans-serif;
  cursor: pointer;
}

main {
  padding-bottom: 1rem;
}

section {
  padding: 5.2rem 0;
  position: relative;
  isolation: isolate;
}

section[id] {
  scroll-margin-top: 5.6rem;
}

@supports (content-visibility: auto) {
  main > section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }
}

section + section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  translate: -50% 0;
  width: min(88vw, 1020px);
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(47, 214, 255, 0.18), transparent);
  opacity: 0.42;
  z-index: 1;
}

.section-scene {
  position: absolute;
  inset: -2.1rem 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(420px 170px at 50% 52%, rgba(11, 95, 255, 0.12), transparent 72%),
    radial-gradient(300px 150px at 20% 78%, rgba(47, 214, 255, 0.1), transparent 74%),
    radial-gradient(280px 140px at 82% 22%, rgba(11, 95, 255, 0.08), transparent 76%);
  background-repeat: no-repeat;
  background-size: 112% 112%, 112% 112%, 112% 112%;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.95) 14%, rgba(0, 0, 0, 0.95) 86%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.95) 14%, rgba(0, 0, 0, 0.95) 86%, transparent 100%);
  animation: sceneFieldFlow 24s ease-in-out infinite;
}

.section-scene::before,
.section-scene::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(190px, 24vw, 330px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle, var(--ambient-a), transparent 66%),
    radial-gradient(circle at 70% 65%, var(--ambient-b), transparent 72%);
  filter: blur(1.1px);
  opacity: 0.3;
}

.section-scene::before {
  left: clamp(-130px, -9vw, -88px);
  transform: translateY(-50%);
  animation: sceneAuraLeft 15s ease-in-out infinite;
}

.section-scene::after {
  right: clamp(-150px, -10vw, -96px);
  transform: translateY(-50%);
  animation: sceneAuraRight 17s ease-in-out infinite;
}

.shape {
  --size: 96px;
  --px: 0px;
  --py: 0px;
  position: absolute;
  display: block;
  width: var(--size);
  height: var(--size);
  translate: var(--px) var(--py);
  pointer-events: none;
  opacity: 0.72;
  will-change: transform, translate;
}

.shape--orb {
  border-radius: 50%;
  background:
    radial-gradient(circle,
      rgba(11, 95, 255, 0.34) 0%,
      rgba(47, 214, 255, 0.18) 42%,
      rgba(47, 214, 255, 0.06) 66%,
      transparent 80%);
  filter: blur(0.5px);
  animation: orb2d 11s ease-in-out infinite;
}

.shape--ring {
  border-radius: 50%;
  border: 1px solid rgba(47, 214, 255, 0.26);
  box-shadow: inset 0 0 0 1px rgba(11, 95, 255, 0.1);
  animation: ring2d 16s linear infinite;
}

.shape--ring::before {
  content: "";
  position: absolute;
  inset: 13%;
  border-radius: 50%;
  border: 1px dashed rgba(11, 95, 255, 0.24);
}

:root[data-theme="light"] section + section::before {
  background: linear-gradient(90deg, transparent, rgba(11, 95, 255, 0.26), transparent);
  opacity: 0.62;
}

:root[data-theme="light"] .section-scene {
  background:
    radial-gradient(430px 175px at 50% 52%, rgba(11, 95, 255, 0.19), transparent 72%),
    radial-gradient(310px 155px at 20% 78%, rgba(47, 214, 255, 0.16), transparent 74%),
    radial-gradient(290px 145px at 82% 22%, rgba(11, 95, 255, 0.13), transparent 76%);
}

:root[data-theme="light"] .section-scene::before,
:root[data-theme="light"] .section-scene::after {
  opacity: 0.42;
  filter: blur(0.7px);
}

:root[data-theme="light"] .shape {
  opacity: 0.9;
}

:root[data-theme="light"] .shape--orb {
  background:
    radial-gradient(circle,
      rgba(11, 95, 255, 0.46) 0%,
      rgba(47, 214, 255, 0.26) 42%,
      rgba(47, 214, 255, 0.1) 66%,
      transparent 80%);
}

:root[data-theme="light"] .shape--ring {
  border-color: rgba(11, 95, 255, 0.4);
  box-shadow: inset 0 0 0 1px rgba(11, 95, 255, 0.18);
}

:root[data-theme="light"] .shape--ring::before {
  border-color: rgba(11, 95, 255, 0.32);
}

.metrics .container,
.services .container,
.portfolio .container,
.process .container,
.contact .container {
  position: relative;
  z-index: 2;
}

.hero {
  min-height: calc(100svh - 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 0 1.8rem;
}

.hero-banner {
  width: min(1420px, 97vw);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: clamp(640px, 84vh, 920px);
  border-radius: 40px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--panel-a), var(--panel-b));
  box-shadow: var(--shadow);
  isolation: isolate;
  z-index: 2;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.42) 42%, transparent 65%);
  transform: translateX(-120%);
  animation: heroSweep 8.5s ease-in-out infinite;
  z-index: 1;
}

.hero-banner::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -130px;
  top: -120px;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(47, 214, 255, 0.22);
  background:
    radial-gradient(circle at 35% 35%, rgba(47, 214, 255, 0.24), transparent 65%),
    radial-gradient(circle at 70% 65%, rgba(11, 95, 255, 0.16), transparent 72%);
  opacity: 0.8;
  animation: heroOrbit 16s linear infinite;
  z-index: 1;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(30px);
  opacity: 0.54;
  transition: transform 0.24s ease-out;
}

.hero-glow--one {
  top: -70px;
  left: -55px;
  background: radial-gradient(circle, rgba(11, 95, 255, 0.45), transparent 70%);
}

.hero-glow--two {
  right: -60px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(47, 214, 255, 0.4), transparent 70%);
}

:root[data-theme="light"] .hero-glow {
  opacity: 0.66;
}

:root[data-theme="light"] .hero-glow--one {
  background: radial-gradient(circle, rgba(11, 95, 255, 0.56), transparent 70%);
}

:root[data-theme="light"] .hero-glow--two {
  background: radial-gradient(circle, rgba(47, 214, 255, 0.5), transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 50%, transparent 100%);
  opacity: 0.32;
  z-index: 1;
  animation: gridShift 20s linear infinite;
}

.hero-banner__content {
  position: relative;
  z-index: 3;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.2rem) clamp(1.1rem, 3vw, 2.2rem);
  display: grid;
  gap: 1.24rem;
  text-align: center;
}

.hero-logo-lockup {
  display: flex;
  justify-content: center;
  margin-bottom: 0.2rem;
}

.hero-logo-lockup__img {
  width: clamp(130px, 18vw, 220px);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
  opacity: 0.97;
}

.hero__eyebrow {
  width: fit-content;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.38rem 0.76rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hero-eyebrow-text);
}

.hero h1 {
  font-size: clamp(2.2rem, 5.8vw, 4.8rem);
  color: var(--hero-title);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.hero h1 span {
  display: block;
  margin-top: 0.3rem;
  background: linear-gradient(125deg, var(--hero-gradient-start) 8%, var(--hero-gradient-mid) 55%, var(--hero-gradient-end) 95%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lead {
  margin: 0 auto;
  max-width: 62ch;
  color: var(--hero-lead);
  font-size: clamp(0.98rem, 1.5vw, 1.14rem);
}

.hero__actions {
  width: min(760px, 100%);
  margin: 0.25rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 0.8rem;
}

.hero__actions .btn {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-signals {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.hero-signals span {
  border: 1px solid var(--hero-chip-border);
  border-radius: 999px;
  padding: 0.38rem 0.68rem;
  background: var(--hero-chip-bg);
  color: var(--hero-chip-text);
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-floating {
  position: absolute;
  inset: auto 1.8rem 1.2rem 1.8rem;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  z-index: 4;
  pointer-events: none;
}

.floating-badge {
  border: 1px solid var(--hero-chip-border);
  border-radius: 999px;
  background: var(--hero-chip-bg);
  color: var(--hero-chip-text);
  padding: 0.5rem 0.78rem;
  font-size: 0.77rem;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.26);
}

.floating-badge--a {
  animation: floatA 6.8s ease-in-out infinite;
}

.floating-badge--b {
  animation: floatB 7.2s ease-in-out infinite;
}

.floating-badge--c {
  animation: floatC 7.6s ease-in-out infinite;
}

.metrics {
  padding-top: 3.2rem;
  padding-bottom: 1.5rem;
}

.metrics,
.services,
.portfolio,
.process,
.contact {
  z-index: 1;
}

.metrics__grid {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.metrics__grid::before,
.metrics__grid::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.metrics__grid::before {
  top: -110px;
  right: -50px;
  background: radial-gradient(circle, rgba(11, 95, 255, 0.18), transparent 72%);
  animation: orbDrift 9s ease-in-out infinite;
}

.metrics__grid::after {
  bottom: -120px;
  left: -60px;
  background: radial-gradient(circle, rgba(47, 214, 255, 0.16), transparent 72%);
  animation: orbDriftReverse 11s ease-in-out infinite;
}

.metric {
  position: relative;
  z-index: 1;
  padding: 1.2rem 1.15rem;
  transform-style: preserve-3d;
  transition: transform 0.28s ease;
  animation: breathe 7.5s ease-in-out infinite;
}

.metric:hover {
  transform: perspective(900px) rotateX(5deg) rotateY(-4deg);
}

.metric:nth-child(2) {
  animation-delay: -1.2s;
}

.metric:nth-child(3) {
  animation-delay: -2.4s;
}

.metric:nth-child(4) {
  animation-delay: -3.6s;
}

.metric:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 0;
  width: 1px;
  height: 64%;
  background: var(--line);
}

.metric h3 {
  font-size: clamp(1.6rem, 2.7vw, 2.4rem);
  margin-bottom: 0.34rem;
}

.metric p {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.shape--metrics-a {
  --size: 88px;
  top: 16%;
  left: 2%;
}

.shape--metrics-b {
  --size: 170px;
  bottom: -38px;
  right: 1.5%;
}

.section-head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.section-kicker {
  width: fit-content;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.3rem 0.68rem;
  font-size: 0.73rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: kickerPulse 5.8s ease-in-out infinite;
}

.section-head h2 {
  position: relative;
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 18ch;
  padding-bottom: 0.5rem;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(230px, 78%);
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      rgba(11, 95, 255, 0),
      rgba(11, 95, 255, 0.95) 30%,
      rgba(47, 214, 255, 0.95) 62%,
      rgba(47, 214, 255, 0));
  background-size: 200% 100%;
  animation: headingLineFlow 7.4s linear infinite;
}

.services {
  padding-top: 4.2rem;
}

.shape--services-a {
  --size: 230px;
  top: -52px;
  right: -32px;
}

.shape--services-b {
  --size: 92px;
  bottom: 15%;
  left: 4%;
}

.shape--services-c {
  --size: 150px;
  top: 18%;
  left: -45px;
}

.services__layout {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--surface), var(--surface-strong));
  padding: clamp(1.1rem, 2.5vw, 1.8rem);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  align-items: start;
  column-gap: 1rem;
  gap: 0.9rem;
}

.services__layout .section-head {
  grid-column: 1;
  margin-bottom: 0.95rem;
}

.services__layout .section-head h2 {
  max-width: 19ch;
}

.services__description {
  grid-column: 1;
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 50ch;
}

.services__image-placeholder {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 120% at 18% 14%, rgba(11, 95, 255, 0.12), transparent 58%),
    radial-gradient(120% 120% at 85% 84%, rgba(47, 214, 255, 0.12), transparent 60%),
    repeating-linear-gradient(-45deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.03) 12px,
      rgba(255, 255, 255, 0.01) 12px,
      rgba(255, 255, 255, 0.01) 24px),
    linear-gradient(150deg, var(--surface-strong), var(--surface));
  min-height: 320px;
  display: grid;
  place-items: center;
  justify-items: center;
  padding: 1.1rem;
}

.services__image-placeholder::before {
  content: "";
  position: absolute;
  inset: 14% 10%;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  animation: panelBreath 6.8s ease-in-out infinite;
  z-index: 0;
}

.services__image-placeholder::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 95, 255, 0.18), rgba(11, 95, 255, 0));
  animation: logoHaloDrift 8.4s ease-in-out infinite;
  z-index: 0;
}

.logo-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.logo-orbit--outer {
  width: min(320px, 90%);
  aspect-ratio: 1 / 1;
  border: 1px solid var(--ambient-line);
  animation: orbitSpin 16s linear infinite;
}

.logo-orbit--outer::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  top: -4px;
  left: 50%;
  translate: -50% 0;
  background: rgba(47, 214, 255, 0.82);
  box-shadow: 0 0 12px rgba(47, 214, 255, 0.45);
}

.logo-orbit--inner {
  width: min(250px, 72%);
  aspect-ratio: 1 / 1;
  border: 1px dashed var(--ambient-line);
  animation: orbitSpinReverse 11s linear infinite;
}

.logo-orbit--inner::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  bottom: -3px;
  left: 22%;
  background: rgba(11, 95, 255, 0.78);
  box-shadow: 0 0 10px rgba(11, 95, 255, 0.4);
}

:root[data-theme="light"] .logo-orbit--outer {
  border-color: rgba(11, 95, 255, 0.34);
}

:root[data-theme="light"] .logo-orbit--inner {
  border-color: rgba(11, 95, 255, 0.3);
}

.logo-particle {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(234, 242, 255, 0.95), rgba(47, 214, 255, 0.2) 56%, rgba(47, 214, 255, 0));
  animation: logoParticleFloat 8.5s ease-in-out infinite;
}

.logo-particle--one {
  top: 20%;
  left: 22%;
  animation-delay: -1.2s;
}

.logo-particle--two {
  top: 31%;
  right: 19%;
  animation-delay: -3.4s;
}

.logo-particle--three {
  bottom: 19%;
  left: 31%;
  animation-delay: -5.8s;
}

.services__image-placeholder img {
  position: relative;
  z-index: 1;
  width: min(320px, 82%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.34));
  transition: transform 0.28s ease, filter 0.28s ease;
  animation: logoFloat 6s ease-in-out infinite;
}

.services__image-placeholder:hover img {
  transform: translateY(-4px) scale(1.01);
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.38));
}

.impact-banner {
  padding-top: 2.8rem;
  padding-bottom: 2.7rem;
}

.impact-banner__inner {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: linear-gradient(130deg, rgba(11, 95, 255, 0.26), var(--surface-strong) 42%, rgba(47, 214, 255, 0.24));
  background-size: 190% 190%;
  padding: clamp(1rem, 2.3vw, 1.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  isolation: isolate;
  overflow: visible;
  animation: bannerFlow 10s ease-in-out infinite;
}

.impact-banner__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(112deg, transparent 36%, rgba(255, 255, 255, 0.52) 50%, transparent 64%);
  background-size: 220% 100%;
  background-repeat: no-repeat;
  background-position: 130% 50%;
  animation: beam 6.2s linear infinite;
}

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

.impact-banner__inner p {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  max-width: 26ch;
  letter-spacing: -0.01em;
}

.portfolio {
  padding-top: 4.3rem;
}

.shape--portfolio-a {
  --size: 96px;
  top: 7%;
  right: 6%;
}

.shape--portfolio-b {
  --size: 210px;
  bottom: -88px;
  left: -70px;
}

.shape--portfolio-c {
  --size: 72px;
  top: 42%;
  right: -20px;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.project-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  isolation: isolate;
  transform: perspective(1200px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transition: transform 0.2s ease-out, box-shadow 0.24s ease, border-color 0.24s ease;
  border-radius: 26px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface-strong);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
  animation: cardGlow 7.2s ease-in-out infinite;
}

.project-card::before {
  content: "";
  position: absolute;
  top: -35%;
  left: -55%;
  width: 52%;
  height: 180%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(47, 214, 255, 0.2), transparent);
  transform: rotate(16deg) translateX(-180%);
  animation: cardSweep 9.8s ease-in-out infinite;
  z-index: 1;
}

.project-card:hover {
  border-color: rgba(17, 17, 17, 0.25);
  box-shadow: 0 20px 36px rgba(17, 17, 17, 0.14);
}

.project-card:nth-child(2) {
  animation-delay: -2.1s;
}

.project-card:nth-child(2)::before {
  animation-delay: -3.2s;
}

.project-card:nth-child(3) {
  animation-delay: -4.2s;
}

.project-card:nth-child(3)::before {
  animation-delay: -6.4s;
}

.project-card__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.5rem;
  padding: 1rem 1rem 1.2rem;
}

.project-card__tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.project-card h3 {
  font-size: 1.34rem;
}

.project-card p {
  color: var(--muted);
}

.project-media {
  position: relative;
  z-index: 2;
  margin: 0;
  border-bottom: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface));
}

.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(17, 17, 17, 0.36));
}

.project-media__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-media__img {
  transform: scale(1.05);
}

.project-media__badge {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  z-index: 2;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(17, 17, 17, 0.76);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.32rem 0.56rem;
}

.browser {
  position: relative;
  border-bottom: 1px solid var(--line);
  min-height: 236px;
  padding: 0.72rem;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface));
  overflow: hidden;
}

.browser__scan {
  position: absolute;
  inset: -20% auto auto -30%;
  width: 60%;
  height: 170%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  transform: rotate(12deg);
  animation: scan 5.4s linear infinite;
}

.browser__bar {
  display: flex;
  gap: 0.35rem;
}

.browser__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-soft);
}

.browser__hero {
  margin-top: 0.66rem;
  border-radius: 14px;
  height: 82px;
}

.browser__line {
  margin-top: 0.52rem;
  height: 8px;
  border-radius: 999px;
  background: var(--line-soft);
}

.browser__line.short {
  width: 62%;
}

.browser__cards {
  margin-top: 0.74rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.browser__cards i {
  display: block;
  height: 62px;
  border-radius: 10px;
  background: var(--line-soft);
}

.browser--institutional .browser__hero {
  background: linear-gradient(130deg, #E6F0FF, #FFFFFF 45%, #D6F8FF);
}

.browser--sales .browser__hero {
  background: linear-gradient(140deg, #CFE2FF, #EAF2FF 45%, #0B5FFF 130%);
}

.browser--expert .browser__hero {
  background: linear-gradient(145deg, #0B1F3A, #0B5FFF 45%, #2FD6FF);
}

.offer-box {
  margin-top: 0.74rem;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(11, 95, 255, 0.2), rgba(11, 95, 255, 0.05));
}

.cta-box {
  margin-top: 0.58rem;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.76), rgba(17, 17, 17, 0.95));
}

.expert-grid {
  margin-top: 0.66rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.42rem;
}

.expert-grid i {
  display: block;
  height: 54px;
  border-radius: 11px;
  background: linear-gradient(160deg, #EAF2FF, #CFE2FF);
}

.process {
  padding-top: 4.2rem;
}

.shape--process-a {
  --size: 86px;
  top: 9%;
  left: 2%;
}

.shape--process-b {
  --size: 180px;
  right: -52px;
  bottom: -56px;
}

.process__grid {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.process__grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.38) 50%, transparent 78%);
  transform: translateX(-130%);
  animation: processSweep 9s linear infinite;
}

.process-step {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  border: 1px dashed rgba(17, 17, 17, 0.16);
  border-radius: 18px;
  background: var(--surface);
  padding: 0.95rem;
  display: grid;
  gap: 0.52rem;
  position: relative;
  overflow: hidden;
  transform: perspective(1100px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transition: transform 0.2s ease-out, border-color 0.26s ease, box-shadow 0.26s ease;
}

.process-step:hover {
  border-color: rgba(17, 17, 17, 0.3);
  box-shadow: 0 14px 24px rgba(17, 17, 17, 0.1);
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(11, 95, 255, 0.45);
  animation: ping 2.8s ease-out infinite;
}

.process-step p {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
}

.process-step h3 {
  font-size: 1.03rem;
}

.process-step span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact {
  padding-top: 4.4rem;
}

.shape--contact-a {
  --size: 190px;
  top: -68px;
  right: -26px;
}

.shape--contact-b {
  --size: 80px;
  left: 3%;
  bottom: 18%;
}

.shape--contact-c {
  --size: 130px;
  left: -42px;
  top: 20%;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.contact__content {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 120% at 6% 0%, rgba(11, 95, 255, 0.16), transparent 55%),
    linear-gradient(162deg, var(--surface), var(--surface-strong));
  padding: 1.3rem;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  transform: perspective(1100px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transition: transform 0.2s ease-out, box-shadow 0.24s ease, border-color 0.24s ease;
}

.contact__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(132deg, rgba(47, 214, 255, 0.08), transparent 45%),
    linear-gradient(300deg, rgba(11, 95, 255, 0.06), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.contact__content::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -88px;
  bottom: -98px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 214, 255, 0.26), rgba(47, 214, 255, 0));
  animation: contactOrbFlow 9.4s ease-in-out infinite;
  z-index: 0;
}

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

.contact__content:hover {
  border-color: rgba(17, 17, 17, 0.28);
  box-shadow: 0 16px 26px rgba(17, 17, 17, 0.09);
}

.contact__content h2 {
  font-size: clamp(1.65rem, 3.6vw, 2.8rem);
}

.contact__content p {
  color: var(--muted);
}

.contact__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.contact__highlights span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(140deg, var(--surface-strong), rgba(11, 95, 255, 0.1));
  padding: 0.35rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(11, 95, 255, 0.08);
  animation: highlightBlink 6s ease-in-out infinite;
}

.contact__highlights span:nth-child(2) {
  animation-delay: -1.5s;
}

.contact__highlights span:nth-child(3) {
  animation-delay: -3s;
}

.contact-channels {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(130% 120% at 14% 2%, rgba(11, 95, 255, 0.15), transparent 60%),
    linear-gradient(162deg, var(--surface), var(--surface-strong));
  padding: 1.2rem;
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.contact-channels::before {
  content: "";
  position: absolute;
  top: -42%;
  left: -10%;
  width: 48%;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: rotate(14deg) translateX(-180%);
  animation: contactCardSweep 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

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

.contact-channel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(11, 18, 32, 0.95), rgba(11, 18, 32, 0.78));
  padding: 1rem;
  display: grid;
  gap: 0.3rem;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.contact-channel::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 214, 255, 0.22), rgba(47, 214, 255, 0));
  pointer-events: none;
  z-index: 0;
}

.contact-channel::after {
  content: "";
  position: absolute;
  top: -46%;
  left: -12%;
  width: 36%;
  height: 190%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: rotate(13deg) translateX(-220%);
  animation: contactCardSweep 9.5s ease-in-out infinite;
  z-index: 0;
}

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

.contact-channel:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(11, 95, 255, 0.55);
  box-shadow: 0 16px 28px rgba(17, 17, 17, 0.2);
}

.contact-channel:focus-visible {
  outline: none;
  border-color: rgba(47, 214, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(47, 214, 255, 0.32), 0 16px 28px rgba(17, 17, 17, 0.18);
}

.contact-channel__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
}

.contact-channel__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
  animation: contactIconPulse 3.2s ease-in-out infinite;
}

.contact-channel__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-channel__icon-image {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.contact-channel__dot {
  fill: currentColor;
  stroke: none;
}

.contact-channel__pill {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.22rem 0.56rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-channel__label {
  margin-top: 0.12rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-channel__value {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.2rem, 2.3vw, 1.7rem);
  letter-spacing: -0.01em;
}

.contact-channel__meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-channel__cta {
  margin-top: 0.32rem;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(11, 95, 255, 0.45);
  background: rgba(11, 95, 255, 0.12);
  padding: 0.34rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #9fc3ff;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.contact-channel:hover .contact-channel__cta {
  transform: translateX(3px);
  border-color: rgba(47, 214, 255, 0.8);
  background: rgba(47, 214, 255, 0.18);
}

.contact-channel--whatsapp {
  border-color: rgba(34, 197, 94, 0.5);
  background: linear-gradient(150deg, rgba(34, 197, 94, 0.18), rgba(11, 18, 32, 0.88) 45%, rgba(47, 214, 255, 0.18));
}

.contact-channel--whatsapp .contact-channel__icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 8px 16px rgba(22, 163, 74, 0.28);
}

.contact-channel--whatsapp .contact-channel__icon-image {
  width: 23px;
  height: 23px;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.35));
}

.contact-channel--whatsapp .contact-channel__pill {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.15);
  color: #b8f9d0;
}

.contact-channel--whatsapp .contact-channel__cta {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.18);
  color: #b8f9d0;
}

.contact-channel--instagram {
  border-color: rgba(251, 113, 133, 0.35);
  background: linear-gradient(150deg, rgba(249, 115, 22, 0.18), rgba(11, 18, 32, 0.9) 45%, rgba(56, 189, 248, 0.18));
}

.contact-channel--instagram .contact-channel__icon {
  background: linear-gradient(135deg, #f97316 0%, #fb7185 58%, #38bdf8 100%);
}

.contact-channel--instagram .contact-channel__pill {
  border-color: rgba(251, 113, 133, 0.4);
  background: rgba(249, 115, 22, 0.12);
  color: #ffd3dc;
}

.contact-channel--instagram .contact-channel__cta {
  border-color: rgba(251, 113, 133, 0.45);
  background: rgba(249, 115, 22, 0.16);
  color: #ffd3dc;
}

.contact-channels__note {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

:root[data-theme="light"] .contact-channel {
  background: linear-gradient(155deg, #ffffff, #f0f5ff);
}

:root[data-theme="light"] .contact-channel__pill {
  background: rgba(255, 255, 255, 0.82);
}

:root[data-theme="light"] .contact-channel__cta {
  color: #0b4bc9;
  background: rgba(11, 95, 255, 0.14);
}

:root[data-theme="light"] .contact-channel--whatsapp {
  background: linear-gradient(150deg, rgba(34, 197, 94, 0.18), #ffffff 48%, rgba(47, 214, 255, 0.14));
}

:root[data-theme="light"] .contact-channel--whatsapp .contact-channel__cta {
  color: #15803d;
}

:root[data-theme="light"] .contact-channel--instagram {
  background: linear-gradient(150deg, rgba(249, 115, 22, 0.18), #ffffff 48%, rgba(56, 189, 248, 0.14));
}

:root[data-theme="light"] .contact-channel--instagram .contact-channel__cta {
  color: #be185d;
}

.footer {
  padding: 1.5rem 0 2rem;
}

.footer__inner {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__logo {
  width: clamp(90px, 10vw, 130px);
  height: auto;
  display: block;
}

.footer__inner a {
  font-weight: 700;
}

.reveal {
  opacity: 0;
  translate: 0 26px;
  transition: opacity 0.7s ease, translate 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

@keyframes heroSweep {

  0%,
  25% {
    transform: translateX(-120%);
  }

  55% {
    transform: translateX(150%);
  }

  100% {
    transform: translateX(150%);
  }
}

@keyframes gridShift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 230px 0, 0 230px;
  }
}

@keyframes heroOrbit {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.08);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes headingLineFlow {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 200% 0;
  }
}

@keyframes orb2d {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.45;
  }

  50% {
    transform: translateY(-9px) scale(1.04);
    opacity: 0.68;
  }
}

@keyframes ring2d {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes floatA {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(-3px);
  }

  50% {
    transform: translateY(6px);
  }
}

@keyframes floatC {

  0%,
  100% {
    transform: translateY(2px);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes breathe {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -3px;
  }
}

@keyframes orbDrift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-26px, 20px) scale(1.05);
  }
}

@keyframes orbDriftReverse {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(26px, -20px) scale(1.06);
  }
}

@keyframes sceneFieldFlow {
  0%,
  100% {
    background-position: 50% 52%, 20% 78%, 82% 22%;
  }

  50% {
    background-position: 52% 50%, 22% 75%, 80% 25%;
  }
}

@keyframes sceneAuraLeft {
  0%,
  100% {
    transform: translateY(-50%) translateX(0) scale(0.95);
    opacity: 0.2;
  }

  50% {
    transform: translateY(-50%) translateX(8px) scale(1.05);
    opacity: 0.38;
  }
}

@keyframes sceneAuraRight {
  0%,
  100% {
    transform: translateY(-50%) translateX(0) scale(1);
    opacity: 0.2;
  }

  50% {
    transform: translateY(-50%) translateX(-9px) scale(1.06);
    opacity: 0.36;
  }
}

@keyframes panelBreath {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.03);
  }
}

@keyframes logoHaloDrift {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.32;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.16);
    opacity: 0.62;
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }

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

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

  to {
    transform: rotate(0deg);
  }
}

@keyframes logoParticleFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(0.9);
    opacity: 0.3;
  }

  50% {
    transform: translate(0, -9px) scale(1.08);
    opacity: 0.75;
  }
}

@keyframes kickerPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(11, 95, 255, 0);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(11, 95, 255, 0.09);
  }
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(11, 95, 255, 0.44);
  }

  70% {
    box-shadow: 0 0 0 13px rgba(11, 95, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(11, 95, 255, 0);
  }
}

@keyframes beam {
  from {
    background-position: 130% 50%;
  }

  to {
    background-position: -130% 50%;
  }
}

@keyframes scan {
  from {
    transform: rotate(12deg) translateX(-230%);
  }

  to {
    transform: rotate(12deg) translateX(330%);
  }
}

@keyframes bannerFlow {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes cardGlow {

  0%,
  100% {
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
  }

  50% {
    box-shadow: 0 18px 32px rgba(17, 17, 17, 0.14);
  }
}

@keyframes cardSweep {
  0%,
  48%,
  100% {
    transform: rotate(16deg) translateX(-180%);
  }

  74% {
    transform: rotate(16deg) translateX(280%);
  }
}

@keyframes processSweep {
  from {
    transform: translateX(-130%);
  }

  to {
    transform: translateX(140%);
  }
}

@keyframes highlightBlink {

  0%,
  100% {
    background: var(--surface-strong);
  }

  50% {
    background: rgba(11, 95, 255, 0.12);
  }
}

@keyframes contactOrbFlow {
  0%,
  100% {
    transform: translate(0, 0) scale(0.88);
    opacity: 0.35;
  }

  50% {
    transform: translate(-14px, -18px) scale(1.12);
    opacity: 0.7;
  }
}

@keyframes contactCardSweep {
  0%,
  38%,
  100% {
    transform: rotate(13deg) translateX(-220%);
  }

  66% {
    transform: rotate(13deg) translateX(320%);
  }
}

@keyframes contactIconPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-scene,
  .section-scene::before,
  .section-scene::after,
  .shape,
  .hero-banner::after,
  .section-head h2::after,
  .services__image-placeholder img,
  .services__image-placeholder::before,
  .services__image-placeholder::after,
  .logo-orbit,
  .logo-particle,
  .project-card::before,
  .contact__content::after,
  .contact-channels::before,
  .contact-channel::after,
  .contact-channel__icon {
    animation: none !important;
  }
}

@media (max-width: 1040px) {
  .section-scene::before,
  .section-scene::after {
    opacity: 0.24;
  }

  :root[data-theme="light"] .section-scene::before,
  :root[data-theme="light"] .section-scene::after {
    opacity: 0.32;
  }

  .metrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric:nth-child(2)::after {
    display: none;
  }

  .services__image-placeholder {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

  .services__layout {
    grid-template-columns: 1fr;
    min-height: 280px;
  }

  .impact-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
  }

  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .topbar__inner {
    position: relative;
  }

  .menu-toggle {
    display: inline-block;
  }

  .topbar nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0.6rem;
    right: 0.6rem;
    display: grid;
    gap: 0.35rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--menu-bg);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, padding 0.25s ease, opacity 0.25s ease;
  }

  .topbar.nav-open nav {
    max-height: 260px;
    padding: 0.65rem;
    opacity: 1;
  }

  .topbar nav a {
    padding: 0.5rem 0.3rem;
  }

  .topbar__actions {
    margin-left: auto;
  }

  .brand {
    padding: 0;
    gap: 0.34rem;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__name {
    font-size: 0.98rem;
  }

  .theme-toggle {
    padding: 0.52rem 0.72rem;
    font-size: 0.74rem;
  }

  .hero {
    min-height: auto;
    padding-top: 3.8rem;
    padding-bottom: 2rem;
  }

  .hero-banner {
    width: 98vw;
    min-height: 600px;
  }

  .hero-floating {
    position: relative;
    inset: auto;
    margin: 0 auto 1rem;
    padding: 0 0.9rem;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
  }

  .floating-badge {
    animation: none;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .section-scene::before,
  .section-scene::after {
    opacity: 0.16;
    width: clamp(135px, 38vw, 210px);
  }

  :root[data-theme="light"] .section-scene::before,
  :root[data-theme="light"] .section-scene::after {
    opacity: 0.24;
  }

  section {
    padding: 4.4rem 0;
  }

  .hero h1 {
    font-size: clamp(1.76rem, 9.4vw, 2.5rem);
  }

  .brand {
    padding: 0;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .brand__name {
    font-size: 0.9rem;
  }

  .hero-banner {
    width: 98vw;
    min-height: 560px;
  }

  .hero__actions {
    grid-template-columns: 1fr;
  }

  .section-scene .shape--ring {
    display: none;
  }

  .metrics__grid {
    grid-template-columns: 1fr;
  }

  .metric::after {
    display: none;
  }

  .services__image-placeholder {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
    padding: 0.95rem;
  }

  .logo-orbit--outer {
    width: min(250px, 95%);
  }

  .logo-orbit--inner {
    width: min(200px, 78%);
  }

  .logo-particle {
    display: none;
  }

  .contact-channel {
    padding: 0.92rem;
  }

  .contact-channel__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-channel__icon {
    width: 42px;
    height: 42px;
  }

  .contact-channel__value {
    font-size: 1.18rem;
  }

  .process__grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

:root.mobile-optimized body::before {
  opacity: 0.72;
}

:root.mobile-optimized body::after,
:root.mobile-optimized .grain {
  opacity: 0.08;
}

:root.mobile-optimized .topbar__inner {
  backdrop-filter: none;
}

:root.mobile-optimized main > section:not(.hero) {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

:root.mobile-optimized #hero-canvas,
:root.mobile-optimized .hero-glow,
:root.mobile-optimized .hero-floating,
:root.mobile-optimized .section-scene,
:root.mobile-optimized .section-scene::before,
:root.mobile-optimized .section-scene::after,
:root.mobile-optimized .shape {
  display: none;
}

:root.mobile-optimized .hero-grid,
:root.mobile-optimized .hero-banner::before,
:root.mobile-optimized .hero-banner::after,
:root.mobile-optimized .metrics__grid::before,
:root.mobile-optimized .metrics__grid::after,
:root.mobile-optimized .metric,
:root.mobile-optimized .section-kicker,
:root.mobile-optimized .section-head h2::after,
:root.mobile-optimized .services__image-placeholder::before,
:root.mobile-optimized .services__image-placeholder::after,
:root.mobile-optimized .services__image-placeholder img,
:root.mobile-optimized .logo-orbit,
:root.mobile-optimized .impact-banner__inner,
:root.mobile-optimized .impact-banner__inner::before,
:root.mobile-optimized .project-card::before,
:root.mobile-optimized .process__grid::before,
:root.mobile-optimized .process-step::before,
:root.mobile-optimized .contact__content::after,
:root.mobile-optimized .contact__highlights span,
:root.mobile-optimized .contact-channels::before,
:root.mobile-optimized .contact-channel::after,
:root.mobile-optimized .contact-channel__icon {
  animation: none !important;
}

:root.mobile-optimized .hero-banner {
  min-height: auto;
}

:root.mobile-optimized .reveal {
  opacity: 1;
  translate: 0 0;
  transition: none;
}

:root.mobile-optimized .project-card,
:root.mobile-optimized .process-step,
:root.mobile-optimized .contact__content {
  transition: none;
  transform: none !important;
}

@media (hover: none) {
  .btn:hover:not(:disabled) {
    transform: none;
    box-shadow: 0 12px 28px rgba(11, 95, 255, 0.22);
  }

  .topbar nav a:hover::after {
    width: 0;
  }

  .project-card:hover,
  .contact-channel:hover {
    transform: none;
  }

  .project-card:hover .project-media__img {
    transform: none;
  }

  .contact-channel:hover .contact-channel__cta {
    transform: none;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(680px, 94vw);
  }

  section {
    padding: 3.8rem 0;
  }

  .topbar {
    top: 0.4rem;
    padding-bottom: 0.65rem;
  }

  .topbar__inner {
    width: min(96vw, 680px);
    border-radius: 18px;
    padding: 0.56rem 0.62rem 0.56rem 0.72rem;
    gap: 0.5rem;
  }

  .topbar nav {
    top: calc(100% + 0.4rem);
    left: 0;
    right: 0;
    border-radius: 14px;
  }

  .topbar nav a {
    font-size: 0.94rem;
    padding: 0.65rem 0.5rem;
  }

  .theme-toggle,
  .menu-toggle {
    min-height: 40px;
  }

  .hero {
    min-height: auto;
    padding: 0.7rem 0 1.4rem;
  }

  .hero-banner {
    width: min(96vw, 680px);
    min-height: auto;
    border-radius: 26px;
  }

  .hero-banner__content {
    max-width: 100%;
    padding: 1.5rem 1rem 1.2rem;
    gap: 0.95rem;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 8vw, 2.8rem);
    text-shadow: none;
  }

  .hero h1 span {
    margin-top: 0.22rem;
  }

  .hero__lead {
    max-width: 100%;
    font-size: 0.96rem;
  }

  .hero__actions {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0.62rem;
  }

  .hero__actions .btn {
    min-height: 50px;
    font-size: 0.9rem;
  }

  .hero-signals {
    justify-content: flex-start;
    gap: 0.4rem;
  }

  .hero-signals span {
    padding: 0.34rem 0.56rem;
    font-size: 0.68rem;
  }

  .hero-floating {
    display: none;
  }

  .section-head h2 {
    font-size: clamp(1.5rem, 6.4vw, 2.2rem);
    max-width: 100%;
  }

  .services__layout {
    padding: 1rem;
    gap: 0.74rem;
  }

  .services__description {
    font-size: 0.93rem;
  }

  .services__image-placeholder {
    min-height: 210px;
    padding: 0.85rem;
  }

  .impact-banner {
    padding-top: 1.9rem;
    padding-bottom: 2.1rem;
  }

  .impact-banner__inner {
    border-radius: 20px;
    gap: 0.65rem;
    padding: 0.95rem;
  }

  .impact-banner__inner p {
    max-width: 100%;
    font-size: clamp(1.02rem, 5vw, 1.4rem);
  }

  .portfolio__grid {
    gap: 0.72rem;
  }

  .project-card {
    border-radius: 20px;
  }

  .project-card__content {
    padding: 0.9rem 0.9rem 1rem;
  }

  .project-card h3 {
    font-size: 1.16rem;
  }

  .project-card p {
    font-size: 0.9rem;
  }

  .process__grid {
    grid-template-columns: 1fr;
    padding: 0.82rem;
    gap: 0.58rem;
  }

  .process-step {
    padding: 0.85rem;
  }

  .contact__grid {
    gap: 0.72rem;
  }

  .contact__content,
  .contact-channels {
    border-radius: 20px;
    padding: 1rem;
  }

  .contact__content h2 {
    font-size: clamp(1.35rem, 6.2vw, 2rem);
  }

  .contact-channel {
    border-radius: 15px;
    padding: 0.86rem;
  }

  .contact-channel__pill {
    font-size: 0.64rem;
  }

  .contact-channel__value {
    font-size: clamp(1.05rem, 5.2vw, 1.32rem);
  }

  .footer {
    padding: 1.2rem 0 1.6rem;
  }

  .footer__inner {
    gap: 0.75rem;
    font-size: 0.84rem;
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(560px, 94vw);
  }

  section {
    padding: 3.2rem 0;
  }

  .topbar__inner {
    padding: 0.5rem 0.55rem 0.5rem 0.62rem;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
  }

  .theme-toggle {
    padding: 0.48rem 0.6rem;
    font-size: 0.7rem;
  }

  .menu-toggle {
    padding: 0.5rem 0.68rem;
    font-size: 0.72rem;
  }

  .hero-banner {
    border-radius: 20px;
  }

  .hero-banner__content {
    padding: 1.25rem 0.88rem 1rem;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 9.4vw, 2.2rem);
  }

  .hero__lead {
    font-size: 0.91rem;
  }

  .section-head h2 {
    font-size: clamp(1.35rem, 8vw, 1.95rem);
  }

  .services__image-placeholder {
    min-height: 180px;
  }

  .project-media {
    aspect-ratio: 4 / 3;
  }

  .project-media__badge {
    font-size: 0.66rem;
  }

  .contact-channel__top {
    flex-direction: row;
    align-items: center;
  }

  .contact-channel__icon {
    width: 40px;
    height: 40px;
  }

  .contact-channel__meta {
    font-size: 0.8rem;
  }
}

@media (max-width: 420px) {
  .contact-channel__top {
    flex-direction: column;
    align-items: flex-start;
  }
}

