:root {
  /* Palette — deep navy void + IR accents */
  --uc-bg: #06101f;
  --uc-bg-soft: #0a1628;
  --uc-elevated: #0f1d36;
  --uc-raised: #14284b;
  --uc-bg-radial: radial-gradient(
    circle at 75% 20%,
    #14284b 0%,
    #0f1d36 35%,
    #091325 70%,
    #040913 100%
  );
  --uc-accent: #5e87e8;
  --uc-accent-soft: #8fb0ff;
  --uc-emerald: #3ecfa8;
  --uc-text: #e7eaf2;
  --uc-text-muted: #9aa3b5;
  --uc-faint: #5f687e;
  --uc-border: rgba(148, 163, 199, 0.1);
  --uc-border-strong: rgba(148, 163, 199, 0.18);
  --uc-radius-lg: 18px;
  --uc-radius-full: 999px;
  --uc-shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.6);
  /* Shared shell — header + footer aligned */
  --uc-shell-max: 1000px;
  --uc-shell-gutter: 72px;
}

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

html {
  background-color: var(--uc-bg);
  background-image: var(--uc-bg-radial);
  background-attachment: fixed;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: transparent;
  color: var(--uc-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: clip;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

/* ── Continuous cinematic space (document-wide) ── */
.uc-space {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  contain: strict;
}

.uc-space__void {
  position: absolute;
  inset: 0;
  background-color: var(--uc-bg);
  background-image: var(--uc-bg-radial);
}

/* Large nebulae — opacity kept below 5%, more diffuse */
.uc-space__nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.026;
  will-change: transform, opacity;
}

.uc-space__nebula--a {
  width: min(90vw, 920px);
  height: min(70vw, 720px);
  top: -8%;
  right: -12%;
  background: radial-gradient(
    ellipse at 40% 50%,
    rgba(28, 70, 120, 0.55) 0%,
    rgba(18, 48, 90, 0.18) 45%,
    transparent 74%
  );
  animation: uc-space-nebula-a 72s ease-in-out infinite;
}

.uc-space__nebula--b {
  width: min(70vw, 680px);
  height: min(55vw, 520px);
  bottom: 8%;
  left: -18%;
  background: radial-gradient(
    ellipse at 55% 40%,
    rgba(24, 80, 100, 0.4) 0%,
    rgba(16, 55, 95, 0.14) 50%,
    transparent 76%
  );
  opacity: 0.024;
  animation: uc-space-nebula-b 84s ease-in-out infinite;
}

.uc-space__nebula--c {
  width: min(55vw, 520px);
  height: min(45vw, 420px);
  top: 42%;
  left: 38%;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(40, 80, 130, 0.32) 0%,
    transparent 72%
  );
  opacity: 0.018;
  animation: uc-space-nebula-c 96s ease-in-out infinite;
}

@keyframes uc-space-nebula-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-3%, 4%, 0) scale(1.06);
  }
}

@keyframes uc-space-nebula-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(4%, -3%, 0) scale(1.05);
  }
}

@keyframes uc-space-nebula-c {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-2%, -4%, 0) scale(1.08);
  }
}

/* Preserved Hero volumetric atmosphere — Earth glow on the right */
.uc-space__atmosphere {
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(
      circle at 82% 48%,
      rgba(30, 100, 170, 0.16) 0%,
      rgba(36, 130, 175, 0.09) 26%,
      rgba(40, 140, 130, 0.04) 48%,
      transparent 72%
    ),
    radial-gradient(
      ellipse 50% 40% at 18% 22%,
      rgba(4, 10, 22, 0.35) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 45% 35% at 42% 50%,
      rgba(20, 45, 80, 0.1) 0%,
      transparent 68%
    );
  filter: blur(100px);
  opacity: 0.92;
  transform: scale(1.02);
  animation: uc-atmos-breathe 22s ease-in-out infinite;
}

/* Soft volumetric light — slow intensity shift (±2–3%) */
.uc-space__light {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(
      ellipse 55% 45% at 72% 28%,
      rgba(80, 145, 210, 0.06) 0%,
      transparent 64%
    ),
    radial-gradient(
      ellipse 40% 35% at 18% 58%,
      rgba(45, 105, 165, 0.035) 0%,
      transparent 72%
    );
  filter: blur(72px);
  animation: uc-space-light 28s ease-in-out infinite;
}

@keyframes uc-space-light {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 0.88;
  }
}

/* Extremely subtle star field — tiny distant stars only */
.uc-space__stars {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    radial-gradient(1px 1px at 8% 12%, rgba(220, 235, 255, 0.35), transparent),
    radial-gradient(1px 1px at 18% 48%, rgba(200, 220, 245, 0.18), transparent),
    radial-gradient(1px 1px at 27% 22%, rgba(230, 240, 255, 0.24), transparent),
    radial-gradient(1px 1px at 36% 78%, rgba(190, 215, 240, 0.14), transparent),
    radial-gradient(1px 1px at 44% 34%, rgba(210, 230, 250, 0.16), transparent),
    radial-gradient(1px 1px at 52% 62%, rgba(180, 210, 235, 0.1), transparent),
    radial-gradient(1px 1px at 61% 16%, rgba(225, 238, 255, 0.2), transparent),
    radial-gradient(1px 1px at 69% 88%, rgba(170, 205, 230, 0.1), transparent),
    radial-gradient(1px 1px at 76% 42%, rgba(200, 225, 245, 0.14), transparent),
    radial-gradient(1px 1px at 84% 68%, rgba(185, 215, 240, 0.12), transparent),
    radial-gradient(1px 1px at 91% 24%, rgba(220, 235, 255, 0.18), transparent),
    radial-gradient(1px 1px at 14% 86%, rgba(175, 210, 235, 0.08), transparent),
    radial-gradient(1px 1px at 57% 8%, rgba(190, 220, 245, 0.1), transparent),
    radial-gradient(1px 1px at 95% 52%, rgba(210, 230, 250, 0.12), transparent),
    radial-gradient(1px 1px at 41% 91%, rgba(200, 220, 240, 0.08), transparent),
    radial-gradient(1px 1px at 3% 38%, rgba(190, 215, 235, 0.1), transparent);
  animation: uc-space-stars 64s ease-in-out infinite;
}

@keyframes uc-space-stars {
  0%,
  100% {
    opacity: 0.28;
  }
  50% {
    opacity: 0.4;
  }
}

/* Fine space dust — almost invisible */
.uc-space__dust {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    radial-gradient(1px 1px at 12% 30%, rgba(200, 220, 255, 0.5), transparent),
    radial-gradient(1px 1px at 48% 18%, rgba(180, 210, 240, 0.35), transparent),
    radial-gradient(1px 1px at 72% 55%, rgba(190, 225, 255, 0.4), transparent),
    radial-gradient(1px 1px at 88% 22%, rgba(170, 200, 230, 0.3), transparent),
    radial-gradient(1px 1px at 33% 70%, rgba(200, 230, 255, 0.25), transparent),
    radial-gradient(1px 1px at 6% 62%, rgba(180, 210, 240, 0.28), transparent);
  animation: uc-space-dust 90s linear infinite;
  pointer-events: none;
}

@keyframes uc-space-dust {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-1.5%, 1%, 0);
  }
}

/* Sparse floating particles — almost invisible */
.uc-space__particles {
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
}

.uc-space__particles span {
  position: absolute;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: rgba(210, 225, 245, 0.45);
  opacity: 0.08;
  filter: none;
  animation: uc-space-particle 70s linear infinite;
}

.uc-space__particles span:nth-child(1) { left: 14%; top: 24%; animation-duration: 72s; animation-delay: -6s; }
.uc-space__particles span:nth-child(2) { left: 62%; top: 72%; animation-duration: 80s; animation-delay: -18s; }
.uc-space__particles span:nth-child(3) { left: 78%; top: 28%; animation-duration: 68s; animation-delay: -24s; }
.uc-space__particles span:nth-child(4) { left: 36%; top: 58%; animation-duration: 88s; animation-delay: -12s; }
.uc-space__particles span:nth-child(n + 5) {
  display: none;
}

@keyframes uc-space-particle {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0.8%, -1.6%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Cinematic vignette — darker top-left, soft open center-right */
.uc-space__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 75% at 50% 45%, transparent 35%, rgba(4, 9, 19, 0.45) 100%),
    linear-gradient(135deg, rgba(4, 9, 19, 0.35) 0%, transparent 42%, transparent 58%, rgba(6, 16, 31, 0.12) 100%);
  opacity: 0.85;
}

/* Procedural noise — avoids flat color fields */
.uc-space__noise {
  position: absolute;
  inset: 0;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  mix-blend-mode: soft-light;
}

@media (prefers-reduced-motion: reduce) {
  .uc-space__atmosphere,
  .uc-space__light,
  .uc-space__stars,
  .uc-space__nebula,
  .uc-space__particles span,
  .uc-space__twinkles span {
    animation: none;
  }

  .uc-space__twinkles {
    display: none;
  }

  .uc-space__atmosphere {
    opacity: 0.92;
  }

  .uc-space__light {
    opacity: 0.75;
  }

  .uc-space__stars {
    opacity: 0.5;
  }

  .uc-space__dust,
  .uc-space__vignette {
    animation: none;
  }

  .uc-hero-globe__haze {
    animation: none;
  }
}

@media (max-width: 900px) {
  .uc-space__atmosphere {
    background:
      radial-gradient(ellipse 70% 40% at 50% 18%, rgba(30, 139, 255, 0.14), transparent 70%),
      radial-gradient(ellipse 50% 30% at 70% 40%, rgba(71, 201, 113, 0.08), transparent 72%),
      radial-gradient(circle at 78% 55%, rgba(28, 90, 150, 0.12), transparent 65%);
    filter: blur(64px);
  }

  .uc-space__particles span:nth-child(n + 7) {
    display: none;
  }

  .uc-space__nebula {
    filter: blur(90px);
  }
}

main {
  position: relative;
  z-index: 1;
  background: transparent;
}

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

button {
  font-family: inherit;
}

.uc-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header — centered shell (logo + nav pull inward, standard SaaS) ── */
.uc-header {
  --header-max-width: var(--uc-shell-max);
  --header-gutter: var(--uc-shell-gutter);
  --header-bar-height: 72px;
  --header-bar-height-scrolled: 72px;

  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  pointer-events: none;
  background: transparent;
  border: 0;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.uc-header .uc-header-shell,
.uc-header-shell {
  width: min(var(--header-max-width), calc(100% - var(--header-gutter) * 2));
  max-width: min(var(--header-max-width), calc(100% - var(--header-gutter) * 2));
  margin-inline: auto;
  pointer-events: auto;
  overflow: visible;
}

.uc-nav-wrap {
  width: 100%;
  min-height: var(--header-bar-height);
  height: var(--header-bar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 12px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
  transition: background-color 0.3s ease;
}

.uc-header.uc-header--scrolled .uc-nav-wrap {
  margin: 0;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 16, 32, 0.42);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
}

.uc-menu-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  min-height: 36px;
}

.uc-header .ho-logo--nav {
  height: 34px;
  width: auto;
  color: #f5f7fa;
}

.uc-header .ho-logo--nav .ho-logo__svg {
  height: 34px !important;
  width: auto !important;
}

.uc-menu-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.uc-nav {
  display: flex;
  gap: 0;
  align-items: center;
  min-height: 40px;
  padding: 0;
  font-size: 0.92rem;
}

.uc-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(245, 247, 252, 0.92);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.uc-nav a::after {
  display: none;
}

.uc-nav a:hover {
  color: #ffffff;
  background: transparent;
}

.uc-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff !important;
  background: linear-gradient(105deg, #1e8bff 0%, #2bc7f7 48%, #47c971 100%);
  box-shadow: 0 6px 18px rgba(30, 139, 255, 0.24);
  transition: filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.uc-nav-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(43, 199, 247, 0.28);
  color: #ffffff !important;
}

.uc-mobile-nav-inner a.uc-nav-cta {
  justify-content: center;
  color: #ffffff !important;
  background: linear-gradient(105deg, #1e8bff 0%, #2bc7f7 48%, #47c971 100%);
  border-radius: 999px;
  margin-top: 0.35rem;
}

.uc-mobile-nav-inner a.uc-nav-cta:hover,
.uc-mobile-nav-inner a.uc-nav-cta:focus-visible {
  color: #ffffff !important;
  background: linear-gradient(105deg, #1e8bff 0%, #2bc7f7 48%, #47c971 100%);
  filter: brightness(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .uc-header,
  .uc-nav-wrap {
    transition: none;
  }
}

.ho-logo {
  display: inline-flex;
  line-height: 0;
  flex-shrink: 0;
  color: #f5f7fa;
}

.ho-logo--on-light {
  color: #0b0f1a;
}

.ho-logo__svg {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  flex-shrink: 0;
  overflow: visible;
  aspect-ratio: auto;
}

/* Small sizes: quieter glow, cleaner silhouette */
.ho-logo--nav .ho-logo__halo,
.ho-logo--project .ho-logo__halo {
  opacity: 0.08;
}

.ho-logo--nav .ho-logo__core,
.ho-logo--project .ho-logo__core {
  opacity: 0.78;
}

@media (max-width: 640px) {
  .ho-logo--hero .ho-logo__halo {
    opacity: 0.1;
  }
}

@media print {
  .ho-logo {
    color: #0b0f1a;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .ho-logo__halo,
  .ho-logo__flare {
    filter: none !important;
  }

  .ho-logo__core {
    filter: none !important;
    opacity: 0.85;
  }
}

.ho-logo--nav {
  height: 34px;
  width: auto;
}

.ho-logo--nav .ho-logo__svg {
  height: 34px;
  width: auto;
}

.ho-logo--hero {
  height: 92px;
  width: auto;
  max-width: min(500px, 90vw);
}

.ho-logo--hero .ho-logo__svg {
  height: 92px;
  width: auto;
  max-width: min(500px, 90vw);
}

.ho-logo--project {
  height: 48px;
  width: auto;
  max-width: 240px;
  margin: 0 auto;
}

.ho-logo--project .ho-logo__svg {
  height: 48px;
  width: auto;
  max-width: 240px;
}

.uc-menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--uc-text-muted);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.uc-menu-toggle:hover {
  color: var(--uc-text);
  background: rgba(255, 255, 255, 0.05);
}

.uc-menu-toggle-bars {
  position: relative;
  display: block;
  width: 16px;
  height: 12px;
}

.uc-menu-toggle-bars span {
  position: absolute;
  left: 0;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.uc-menu-toggle-bars span:nth-child(1) { top: 0; }
.uc-menu-toggle-bars span:nth-child(2) { top: 5.5px; }
.uc-menu-toggle-bars span:nth-child(3) { top: 11px; }

.uc-header.uc-header--menu-open .uc-menu-toggle-bars span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.uc-header.uc-header--menu-open .uc-menu-toggle-bars span:nth-child(2) {
  opacity: 0;
}
.uc-header.uc-header--menu-open .uc-menu-toggle-bars span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.uc-mobile-nav {
  pointer-events: auto;
  width: min(var(--header-max-width), calc(100% - var(--header-gutter) * 2));
  margin: 8px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(11, 18, 32, 0.94);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  max-height: min(70vh, 420px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.uc-mobile-nav[hidden] {
  display: none;
}

.uc-mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0.85rem 1rem 1.1rem;
  width: 100%;
  max-width: none;
}

.uc-mobile-nav-inner a {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-radius: 12px;
  padding: 0.75rem 0.95rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--uc-text-muted);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.uc-mobile-nav-inner a:hover,
.uc-mobile-nav-inner a:focus-visible {
  color: var(--uc-text);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.uc-logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.uc-logo-glow {
  position: relative;
  display: inline-flex;
}

.uc-logo-glow::after {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    circle,
    rgba(94, 135, 232, 0.22),
    transparent 70%
  );
  filter: blur(14px);
  opacity: 0.35;
  animation: uc-logo-glow-pulse 6s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes uc-logo-glow-pulse {
  0% {
    opacity: 0.26;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.42;
    transform: scale(1.02);
  }
  100% {
    opacity: 0.26;
    transform: scale(0.98);
  }
}

@media (max-width: 1024px) {
  .uc-nav,
  .uc-menu-pill > .uc-nav-cta {
    display: none;
  }

  .uc-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  :root {
    --uc-shell-gutter: 16px;
  }

  .uc-header {
    --header-bar-height: 64px;
    --header-bar-height-scrolled: 64px;
    --header-gutter: var(--uc-shell-gutter);
  }

  .uc-menu-brand {
    min-height: 32px;
  }

  .uc-header .ho-logo--nav {
    height: 30px;
  }

  .uc-header .ho-logo--nav .ho-logo__svg {
    height: 30px !important;
  }
}

.uc-button {
  border-radius: var(--uc-radius-full);
  border: 1px solid transparent;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease,
    border-color 0.35s ease,
    color 0.3s ease,
    filter 0.35s ease;
  background: none;
  color: var(--uc-text);
  will-change: transform;
}

.uc-button-primary {
  background: linear-gradient(135deg, #5e87e8, #3ecfa8);
  color: #0b0f1a;
  box-shadow: 0 10px 28px rgba(94, 135, 232, 0.28);
}

.uc-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(94, 135, 232, 0.38);
  filter: brightness(1.04);
}

.uc-button-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 22px rgba(94, 135, 232, 0.3);
  filter: brightness(0.98);
  transition-duration: 0.12s;
}

.uc-button-outline {
  border-color: var(--uc-border-strong);
  background: rgba(18, 24, 42, 0.8);
}

.uc-button-outline:hover {
  border-color: rgba(148, 163, 199, 0.4);
  background: rgba(26, 34, 56, 0.96);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.uc-button-outline:active {
  transform: translateY(0);
  transition-duration: 0.12s;
}

.uc-button-ghost {
  color: var(--uc-text-muted);
  background: rgba(18, 24, 42, 0.7);
  border-color: var(--uc-border);
}

.uc-button-ghost:hover {
  color: var(--uc-text);
  background: rgba(26, 34, 56, 0.98);
  transform: translateY(-1px);
}

.uc-button-full {
  width: 100%;
}

.uc-hero {
  --hero-dark: var(--uc-bg);
  --hero-cyan: #2bc7f7;
  --hero-blue: #1e8bff;
  --hero-green: #47c971;
  /* Exact viewport height — one screen on laptop */
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  max-height: 100vh;
  max-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  overflow: visible;
  background: transparent;
  z-index: 5;
}

/* Legacy hero atmosphere hooks — space moved to .uc-space */
.uc-hero-atmosphere,
.uc-hero-depth {
  display: none !important;
}

@keyframes uc-atmos-breathe {
  0%,
  100% {
    opacity: 0.87;
    transform: scale(1.008);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.02);
  }
}

.uc-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  height: 100%;
  /* Tighter under nav — content lifted ~100–140px */
  padding: calc(var(--header-bar-height, 72px) + 0.35rem) 0 2.5rem;
  box-sizing: border-box;
  overflow: visible;
}

.uc-hero-content.uc-container {
  max-width: 1180px;
  overflow: visible;
  padding-left: clamp(1.75rem, 5.5vw, 4.5rem);
  padding-right: 1.5rem;
}

.uc-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  overflow: visible;
  transform: none;
}

.uc-hero-copy {
  position: relative;
  text-align: left;
  max-width: 40rem;
  margin-left: clamp(0.5rem, 4.5vw, 4.25rem);
  margin-top: 0;
  align-self: center;
  z-index: 2;
}

.uc-hero-split > * {
  min-width: 0;
  overflow: visible;
}

.uc-hero-brand,
.uc-hero-title,
.uc-hero-subtitle,
.uc-hero-actions,
.uc-hero-mobile__brand,
.uc-hero-mobile__mesh,
.uc-hero-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Globe visual always visible — not gated by hero entrance fade */
.uc-hero-visual {
  opacity: 1;
  transform: none;
}

.uc-hero.is-ready .uc-hero-brand {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.uc-hero.is-ready .uc-hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.uc-hero.is-ready .uc-hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.uc-hero.is-ready .uc-hero-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.uc-hero.is-ready .uc-hero-mobile__brand {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.uc-hero.is-ready .uc-hero-mobile__mesh {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}

.uc-hero.is-ready .uc-hero-scroll {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}

.uc-hero-brand {
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin: 0 0 1.75rem;
}

.uc-hero-brand::before {
  content: "";
  position: absolute;
  inset: -28% -8% -20% -6%;
  background: radial-gradient(
    ellipse at 40% 50%,
    rgba(30, 139, 255, 0.28) 0%,
    rgba(43, 199, 247, 0.1) 45%,
    transparent 72%
  );
  filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

.uc-hero.is-ready .uc-hero-brand::before {
  opacity: 0.55;
}

.uc-hero-logo {
  height: 52px;
  width: auto;
  max-width: min(280px, 70vw);
  object-fit: contain;
}

.uc-hero--split .ho-logo--hero {
  height: 48px !important;
  width: auto;
  max-width: min(260px, 68vw);
}

.uc-hero--split .ho-logo--hero .ho-logo__svg {
  height: 48px !important;
  width: auto !important;
  max-width: none !important;
}

.ho-logo--hero .ho-logo__core {
  opacity: 0.58;
}

.ho-logo--hero .ho-logo__core-dot {
  opacity: 0.7;
}

.uc-hero-title {
  margin: 0 0 clamp(2.75rem, 4.8vh, 3.5rem);
  font-family: Sora, Manrope, Outfit, system-ui, sans-serif;
  font-size: clamp(3.35rem, 7.2vw, 5.55rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.048em;
  color: #ffffff;
}

.uc-hero-title__line,
.uc-hero-title__accent {
  display: block;
}

.uc-hero-title__accent {
  color: #5ad8ff;
  background: linear-gradient(180deg, #b8f4ff 0%, #2bc7f7 55%, #1e8bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uc-hero-subtitle {
  margin: 0 0 clamp(3.25rem, 5.8vh, 4.25rem);
  max-width: 420px;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.65;
  color: rgba(236, 240, 248, 0.78);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.uc-hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.uc-hero .uc-hero-cta.uc-button-primary {
  min-width: 178px;
  min-height: 56px;
  padding: 0.95rem 2.05rem;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  background: linear-gradient(105deg, #1e8bff 0%, #2bc7f7 48%, #47c971 100%);
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(30, 139, 255, 0.26);
  border: 0;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.3s ease,
    box-shadow 0.3s ease;
}

.uc-hero .uc-hero-cta.uc-button-primary:hover {
  filter: brightness(1.07);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(43, 199, 247, 0.3);
  background: linear-gradient(105deg, #1e8bff 0%, #2bc7f7 48%, #47c971 100%);
  color: #ffffff;
}

.uc-hero-visual {
  position: relative;
  display: block;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  max-height: none;
  margin-right: 0;
  padding-right: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 6;
  background: transparent;
}

/* Hero Earth — natural hero pose; .is-pinned locks that pose for scroll journey */
.uc-hero-globe {
  --earth-x: 0px;
  --earth-y: 0px;
  --earth-scale: 1;
  --earth-opacity: 1;
  --earth-parallax-x: 0px;
  --earth-parallax-y: 0px;
  position: absolute !important;
  top: 84% !important;
  right: -38vw !important;
  left: auto !important;
  bottom: auto !important;
  width: 135svh !important;
  height: 135svh !important;
  max-width: none !important;
  max-height: none !important;
  min-width: 135svh !important;
  min-height: 135svh !important;
  aspect-ratio: 1 / 1 !important;
  display: block !important;
  transform: translateY(-50%) !important;
  opacity: 1;
  filter: none !important;
  isolation: auto;
  overflow: visible !important;
  z-index: 6 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none;
  perspective: 1400px;
  will-change: transform, opacity;
  transform-origin: 50% 50%;
}

.uc-hero-globe.is-pinned {
  position: fixed !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate3d(
      calc(var(--earth-x) + var(--earth-parallax-x)),
      calc(var(--earth-y) + var(--earth-parallax-y)),
      0
    )
    scale(var(--earth-scale)) !important;
  opacity: var(--earth-opacity);
}

.uc-hero-globe__stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.uc-hero-globe__spin {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
  will-change: transform;
}

.uc-hero-globe--alive .uc-hero-globe__spin {
  animation: uc-globe-spin 1380s linear infinite; /* ~23 min / revolution */
}

@keyframes uc-globe-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.uc-hero-globe::before,
.uc-hero-globe::after {
  content: none;
  display: none;
}

.uc-hero-globe__img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  background: transparent !important;
  border: 0;
  box-shadow: none;
  display: block !important;
  -webkit-mask-image: radial-gradient(
    circle at 50% 50%,
    #000 52%,
    rgba(0, 0, 0, 0.85) 68%,
    rgba(0, 0, 0, 0.35) 78%,
    transparent 88%
  );
  mask-image: radial-gradient(
    circle at 50% 50%,
    #000 52%,
    rgba(0, 0, 0, 0.85) 68%,
    rgba(0, 0, 0, 0.35) 78%,
    transparent 88%
  );
}

/* Soft atmospheric breathe — opacity + tiny scale only */
.uc-hero-globe__atmosphere {
  position: absolute;
  inset: 4%;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 50%,
    transparent 58%,
    rgba(40, 130, 200, 0.07) 72%,
    rgba(50, 160, 220, 0.11) 82%,
    transparent 92%
  );
  opacity: 0.96;
  mix-blend-mode: screen;
}

.uc-hero-globe--alive .uc-hero-globe__atmosphere {
  animation: uc-globe-breathe 10s ease-in-out infinite;
}

@keyframes uc-globe-breathe {
  0%,
  100% {
    opacity: 0.96;
    transform: scale(1);
  }
  25% {
    opacity: 1;
    transform: scale(1.008);
  }
  50% {
    opacity: 0.98;
    transform: scale(1.002);
  }
  75% {
    opacity: 1;
    transform: scale(1.012);
  }
}

/* Soft sunlight sweep — opacity + translate only */
.uc-hero-globe__sweep {
  position: absolute;
  inset: 8%;
  z-index: 3;
  border-radius: 50%;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 62%, transparent 78%);
  mask-image: radial-gradient(circle at 50% 50%, #000 62%, transparent 78%);
  opacity: 0;
}

.uc-hero-globe__sweep::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -40%;
  width: 45%;
  height: 140%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(180, 220, 255, 0.045) 45%,
    rgba(220, 240, 255, 0.07) 50%,
    rgba(180, 220, 255, 0.04) 55%,
    transparent 100%
  );
  transform: translate3d(-120%, 0, 0) rotate(12deg);
}

.uc-hero-globe--alive .uc-hero-globe__sweep {
  animation: uc-globe-sweep-fade 24s ease-in-out infinite;
}

.uc-hero-globe--alive .uc-hero-globe__sweep::before {
  animation: uc-globe-sweep 24s ease-in-out infinite;
}

@keyframes uc-globe-sweep-fade {
  0%,
  12%,
  88%,
  100% {
    opacity: 0;
  }
  30%,
  70% {
    opacity: 1;
  }
}

@keyframes uc-globe-sweep {
  0%,
  8% {
    transform: translate3d(-130%, 0, 0) rotate(12deg);
  }
  92%,
  100% {
    transform: translate3d(280%, 0, 0) rotate(12deg);
  }
}

.uc-hero-globe__pulses,
.uc-hero-globe__dust {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.uc-hero-globe__pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--plen, 22%);
  height: 1px;
  margin-left: 8%;
  transform-origin: left center;
  transform: rotate(var(--pang, 0deg)) scaleX(0);
  opacity: 0;
  background: linear-gradient(
    90deg,
    rgba(120, 210, 255, 0) 0%,
    rgba(160, 230, 255, 0.55) 50%,
    rgba(120, 210, 255, 0) 100%
  );
  border-radius: 1px;
  will-change: transform, opacity;
}

.uc-hero-globe__pulse.is-run {
  animation: uc-globe-pulse 3.8s ease-in-out forwards;
}

@keyframes uc-globe-pulse {
  0% {
    opacity: 0;
    transform: rotate(var(--pang, 0deg)) scaleX(0.15);
  }
  18% {
    opacity: 0.7;
  }
  55% {
    opacity: 0.45;
  }
  100% {
    opacity: 0;
    transform: rotate(var(--pang, 0deg)) scaleX(1);
  }
}

.uc-hero-globe__dust-bit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--sz, 1.5px);
  height: var(--sz, 1.5px);
  margin: calc(var(--sz, 1.5px) / -2) 0 0 calc(var(--sz, 1.5px) / -2);
  border-radius: 50%;
  background: rgba(210, 230, 255, 0.9);
  opacity: var(--op, 0.2);
  transform: rotate(calc(var(--a) * 1rad)) translate(var(--r)) rotate(calc(var(--a) * -1rad));
  will-change: transform, opacity;
}

.uc-hero-globe--alive .uc-hero-globe__dust-bit {
  animation: uc-globe-dust var(--dur, 60s) linear infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes uc-globe-dust {
  from {
    transform: rotate(calc(var(--a) * 1rad)) translate(var(--r)) rotate(calc(var(--a) * -1rad));
  }
  to {
    transform: rotate(calc(var(--a) * 1rad + 360deg)) translate(var(--r))
      rotate(calc(var(--a) * -1rad - 360deg));
  }
}

.uc-hero-globe--paused .uc-hero-globe__spin,
.uc-hero-globe--paused .uc-hero-globe__atmosphere,
.uc-hero-globe--paused .uc-hero-globe__sweep,
.uc-hero-globe--paused .uc-hero-globe__sweep::before,
.uc-hero-globe--paused .uc-hero-globe__dust-bit,
.uc-hero-globe--paused .uc-hero-globe__pulse {
  animation-play-state: paused !important;
}

.uc-hq-stage,
.uc-hq-canvas,
.uc-hq-fallback,
.uc-earth-stage,
.uc-hero-globe__canvas {
  display: none !important;
}

/* Star twinkles — brightness only, ≤15 */
.uc-space__twinkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.uc-space__twinkles span {
  position: absolute;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: rgba(220, 235, 255, 0.55);
  opacity: 0.25;
  animation: uc-star-twinkle 7s ease-in-out infinite;
}

.uc-space__twinkles span:nth-child(1) { left: 7%; top: 14%; animation-duration: 6.2s; animation-delay: -1s; }
.uc-space__twinkles span:nth-child(2) { left: 16%; top: 42%; animation-duration: 8.1s; animation-delay: -2.4s; }
.uc-space__twinkles span:nth-child(3) { left: 24%; top: 9%; animation-duration: 7.4s; animation-delay: -0.6s; }
.uc-space__twinkles span:nth-child(4) { left: 33%; top: 71%; animation-duration: 9s; animation-delay: -3.1s; }
.uc-space__twinkles span:nth-child(5) { left: 41%; top: 28%; animation-duration: 6.8s; animation-delay: -4.2s; }
.uc-space__twinkles span:nth-child(6) { left: 52%; top: 56%; animation-duration: 8.6s; animation-delay: -1.8s; }
.uc-space__twinkles span:nth-child(7) { left: 61%; top: 12%; animation-duration: 7.1s; animation-delay: -5s; }
.uc-space__twinkles span:nth-child(8) { left: 69%; top: 81%; animation-duration: 9.4s; animation-delay: -2.2s; }
.uc-space__twinkles span:nth-child(9) { left: 77%; top: 37%; animation-duration: 6.5s; animation-delay: -3.7s; }
.uc-space__twinkles span:nth-child(10) { left: 84%; top: 64%; animation-duration: 8.3s; animation-delay: -0.9s; }
.uc-space__twinkles span:nth-child(11) { left: 91%; top: 19%; animation-duration: 7.7s; animation-delay: -4.5s; }
.uc-space__twinkles span:nth-child(12) { left: 12%; top: 88%; animation-duration: 9.1s; animation-delay: -1.5s; }
.uc-space__twinkles span:nth-child(13) { left: 48%; top: 6%; animation-duration: 6.9s; animation-delay: -2.8s; }
.uc-space__twinkles span:nth-child(14) { left: 93%; top: 48%; animation-duration: 8.8s; animation-delay: -3.4s; }
.uc-space__twinkles span:nth-child(15) { left: 38%; top: 93%; animation-duration: 7.3s; animation-delay: -5.2s; }

@keyframes uc-star-twinkle {
  0%,
  100% {
    opacity: 0.18;
  }
  50% {
    opacity: 0.55;
  }
}

.uc-space--paused .uc-space__twinkles span {
  animation-play-state: paused !important;
}

@media (prefers-reduced-motion: reduce) {
  .uc-hero-globe--alive .uc-hero-globe__spin,
  .uc-hero-globe--alive .uc-hero-globe__atmosphere,
  .uc-hero-globe--alive .uc-hero-globe__sweep,
  .uc-hero-globe--alive .uc-hero-globe__sweep::before,
  .uc-hero-globe--alive .uc-hero-globe__dust-bit,
  .uc-space__twinkles span {
    animation: none !important;
  }

  .uc-space__twinkles {
    display: none;
  }
}

@media (max-width: 900px), (max-width: 1100px) and (orientation: portrait) {
  .uc-hero-globe {
    display: none !important;
  }

  .uc-space__twinkles {
    display: none;
  }
}

/* Mobile splash — hidden on desktop */
.uc-hero-mobile {
  display: none;
}

.uc-hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 22px;
  height: 36px;
  margin-left: -11px;
  border: 1px solid rgba(148, 163, 199, 0.28);
  border-radius: 999px;
  text-decoration: none;
}

.uc-hero-scroll-line {
  display: block;
  width: 1px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(231, 234, 242, 0.72);
  animation: uc-hero-scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes uc-hero-scroll-pulse {
  0% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(6px);
  }
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .uc-hero-scroll-line {
    animation: none;
  }
}

/* Short laptop screens — keep hero within one viewport */
@media (min-width: 901px) and (max-height: 820px) {
  .uc-hero-title {
    font-size: clamp(2.65rem, 5.4vw, 3.85rem);
    margin-bottom: 2.25rem;
  }

  .uc-hero-subtitle {
    margin-bottom: 2.75rem;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .uc-hero-globe {
    width: 125svh !important;
    height: 125svh !important;
    min-width: 125svh !important;
    min-height: 125svh !important;
    right: -34vw !important;
  }

  .uc-hero-content {
    padding: calc(var(--header-bar-height, 72px) + 0.25rem) 0 1.5rem;
  }

  .uc-hero-split {
    transform: none;
  }
}

/* Laptop / small desktop — split layout, scaled to fit */
@media (min-width: 901px) and (max-width: 1280px) {
  .uc-hero-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(0.75rem, 2vw, 1.75rem);
    transform: none;
  }

  .uc-hero-title {
    font-size: clamp(2.9rem, 5.6vw, 4.25rem);
  }

  .uc-hero-subtitle {
    font-size: clamp(0.95rem, 1.4vw, 1.08rem);
    margin-bottom: 1.75rem;
  }

  .uc-hero-globe {
    width: 122svh !important;
    height: 122svh !important;
    min-width: 122svh !important;
    min-height: 122svh !important;
    right: -32vw !important;
  }

  .uc-hero-visual {
    margin-right: 0;
    padding-right: 0;
  }
}

/* Large desktop — roomier globe */
@media (min-width: 1440px) {
  .uc-hero-globe {
    width: 145svh !important;
    height: 145svh !important;
    min-width: 145svh !important;
    min-height: 145svh !important;
    right: -40vw !important;
  }
}

/* Tablet portrait + phone: splash branding (no WebGL globe) */
@media (max-width: 900px), (max-width: 1100px) and (orientation: portrait) {
  .uc-hero {
    height: auto;
    min-height: 100svh;
    max-height: none;
    overflow: hidden;
  }

  .uc-hero-split {
    transform: none;
  }

  .uc-hero-desktop {
    display: none;
  }

  .uc-hero-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: calc(100svh - 5rem);
    max-height: calc(100svh - 4.5rem);
    padding: 1.5rem 0 0;
    text-align: center;
    box-sizing: border-box;
  }

  .uc-hero-mobile__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    margin-top: clamp(1.5rem, 10vh, 4.5rem);
    z-index: 2;
    flex-shrink: 0;
  }

  .uc-hero-mobile__mark {
    width: clamp(88px, 22vw, 120px);
    height: auto;
    filter: drop-shadow(0 0 28px rgba(43, 199, 247, 0.35));
  }

  .uc-hero-mobile__wordmark {
    margin: 0;
    font-family: Outfit, Sora, Manrope, system-ui, sans-serif;
    font-size: clamp(1.55rem, 5.5vw, 2.05rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #f5f7fa;
  }

  .uc-hero-mobile__tag {
    margin: 0.15rem 0 0;
    font-family: Sora, Manrope, system-ui, sans-serif;
    font-size: clamp(0.68rem, 2.4vw, 0.82rem);
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    background: linear-gradient(100deg, #1e8bff 0%, #2bc7f7 45%, #47c971 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .uc-hero-mobile__subtitle {
    margin: 0.85rem 0 0;
    max-width: 16rem;
    font-family: Manrope, Inter, system-ui, sans-serif;
    font-size: clamp(0.82rem, 2.8vw, 0.95rem);
    line-height: 1.45;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: rgba(236, 240, 248, 0.72);
    text-align: center;
  }

  .uc-hero-mobile__mesh {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: auto;
    line-height: 0;
    overflow: hidden;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: flex-end;
  }

  .uc-hero-mesh__svg {
    width: 100%;
    height: auto;
    max-height: min(48svh, 420px);
    min-height: 28svh;
    object-fit: cover;
    object-position: center bottom;
    display: block;
  }

  .uc-hero-content {
    padding: calc(var(--header-bar-height, 64px) + 0.5rem) 0 0;
    align-items: stretch;
    height: auto;
    min-height: calc(100svh - var(--header-bar-height, 64px));
  }
}

@media (max-width: 640px) {
  .uc-hero-mobile {
    min-height: calc(100svh - 4.5rem);
    max-height: none;
  }

  .uc-hero-mobile__mark {
    width: clamp(84px, 26vw, 112px);
  }

  .uc-hero-mesh__svg {
    max-height: min(44svh, 360px);
  }
}

/* Landscape phones / short tablets — compact splash */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .uc-hero-mobile {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0 0;
    min-height: calc(100svh - 3.5rem);
    max-height: calc(100svh - 3.25rem);
  }

  .uc-hero-mobile__brand {
    margin-top: 0;
    flex: 0 1 42%;
  }

  .uc-hero-mobile__mark {
    width: clamp(56px, 12vw, 72px);
  }

  .uc-hero-mobile__mesh {
    width: 55%;
    margin-left: 0;
    flex: 1 1 55%;
  }

  .uc-hero-mesh__svg {
    min-height: 70svh;
    max-height: 85svh;
  }
}

.uc-section {
  position: relative;
  z-index: 5;
  padding: 6.5rem 0 6.8rem;
  scroll-margin-top: 96px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.uc-animate-section {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1), transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

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

#tecnologia {
  scroll-margin-top: 5rem;
  padding-top: 3.6rem;
}

.uc-seo-section {
  padding-top: 2.75rem;
  padding-bottom: 4rem;
}

.uc-seo-section__inner {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.uc-seo-section__inner > h2.uc-animate-title {
  margin: 0 0 1.35rem;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

.uc-seo-section__text {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--uc-text-muted);
  text-align: center;
}

.uc-seo-section__text:has(+ .uc-seo-section__cta) {
  margin-bottom: 0;
}

.uc-seo-section__cta {
  margin: 1.6rem 0 0;
  display: flex;
  justify-content: center;
}

a.uc-btn-primary {
  border-radius: var(--uc-radius-full);
  border: 1px solid transparent;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s ease;
  background: linear-gradient(135deg, #5e87e8, #3ecfa8);
  color: #0b0f1a;
  box-shadow: 0 12px 30px rgba(94, 135, 232, 0.35);
}

a.uc-btn-primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 18px 42px rgba(94, 135, 232, 0.5);
}

a.uc-btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 10px 26px rgba(94, 135, 232, 0.4);
}

.uc-section-services {
  background: transparent;
}

.uc-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.uc-section-header h2 {
  margin: 0 0 0.6rem;
  font-size: 1.9rem;
}

.uc-section-header p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--uc-text-muted);
}

.uc-section-header--capabilities {
  margin-bottom: 3.4rem;
}

.uc-section-header--capabilities h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  letter-spacing: -0.03em;
}

.uc-section-header--capabilities p {
  max-width: 40rem;
  margin-inline: auto;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.65;
  color: rgba(154, 163, 181, 0.92);
}

.uc-capability-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.uc-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  max-width: 1080px;
  margin: 0 auto;
}

/* Outer shell: entrance only — never tied to hover */
.uc-capability-card {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform-origin: center center;
}

.uc-capability-card.uc-animate-card {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}

.uc-capabilities-grid .uc-capability-card:nth-child(1) { transition-delay: 0.05s; }
.uc-capabilities-grid .uc-capability-card:nth-child(2) { transition-delay: 0.12s; }
.uc-capabilities-grid .uc-capability-card:nth-child(3) { transition-delay: 0.19s; }
.uc-capabilities-grid .uc-capability-card:nth-child(4) { transition-delay: 0.26s; }
.uc-capabilities-grid .uc-capability-card:nth-child(5) { transition-delay: 0.33s; }
.uc-capabilities-grid .uc-capability-card:nth-child(6) { transition-delay: 0.4s; }

.uc-capability-card.uc-animate-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger entrance only (hover lives on __surface — unaffected) */
.uc-capabilities-grid .uc-capability-card.is-visible:nth-child(1) { transition-delay: 0.05s; }
.uc-capabilities-grid .uc-capability-card.is-visible:nth-child(2) { transition-delay: 0.12s; }
.uc-capabilities-grid .uc-capability-card.is-visible:nth-child(3) { transition-delay: 0.19s; }
.uc-capabilities-grid .uc-capability-card.is-visible:nth-child(4) { transition-delay: 0.26s; }
.uc-capabilities-grid .uc-capability-card.is-visible:nth-child(5) { transition-delay: 0.33s; }
.uc-capabilities-grid .uc-capability-card.is-visible:nth-child(6) { transition-delay: 0.4s; }

/* Inner surface: all hover visuals — independent from entrance opacity */
.uc-capability-card__surface {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  height: 100%;
  padding: 1.7rem 1.55rem 1.75rem;
  border-radius: 22px;
  border: 1px solid rgba(94, 135, 232, 0.18);
  background-color: rgba(10, 20, 38, 0.28);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  text-align: left;
  overflow: visible;
  transform: translateY(0) scale(1);
  transform-origin: center center;
  pointer-events: auto;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease-out,
    border-color 0.28s ease-out,
    background-color 0.28s ease-out;
}

.uc-capability-card__surface::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    ellipse 80% 70% at 50% 0%,
    rgba(94, 135, 232, 0.14),
    transparent 70%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease-out;
  z-index: 0;
}

.uc-capability-card__icon,
.uc-capability-card__surface h3,
.uc-capability-card__surface p {
  position: relative;
  z-index: 1;
}

.uc-capability-card__icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  background-color: rgba(94, 135, 232, 0.08);
  border: 1px solid rgba(94, 135, 232, 0.14);
  transition:
    box-shadow 0.28s ease-out,
    background-color 0.28s ease-out,
    border-color 0.28s ease-out,
    transform 0.28s ease-out;
}

.uc-capability-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.uc-capability-card__surface h3 {
  margin: 0.15rem 0 0;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--uc-text);
}

.uc-capability-card__surface p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--uc-text-muted);
}

.uc-capability-card__surface:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(94, 200, 220, 0.42);
  background-color: rgba(28, 38, 62, 0.9);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.36),
    0 0 28px rgba(94, 135, 232, 0.14),
    0 0 0 1px rgba(62, 207, 168, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.uc-capability-card__surface:hover::after {
  opacity: 1;
}

.uc-capability-card__surface:hover .uc-capability-card__icon {
  background-color: rgba(94, 135, 232, 0.16);
  border-color: rgba(62, 207, 168, 0.32);
  box-shadow: 0 0 20px rgba(94, 135, 232, 0.32);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .uc-capability-card.uc-animate-card,
  .uc-capability-card.uc-animate-card.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .uc-capability-card__surface,
  .uc-capability-card__icon,
  .uc-capability-card__surface::after {
    transition: none;
  }

  .uc-capability-card__surface:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .uc-capabilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .uc-capabilities-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.1rem;
  }
}

.uc-animate-title,
.uc-animate-subtitle {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(6px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 0.8s ease-out;
}

.uc-animate-subtitle {
  transition-delay: 0.15s;
}

.uc-animate-title.is-visible,
.uc-animate-subtitle.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.uc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  max-width: 980px;
  margin: 0 auto;
}

.uc-service-card {
  /* posição padrão do brilho (centro) caso não haja mouse */
  --mouse-x: 50%;
  --mouse-y: 0%;

  background: radial-gradient(
      circle at var(--mouse-x) var(--mouse-y),
      rgba(94, 135, 232, 0.14),
      transparent 65%
    ),
    radial-gradient(circle at top, var(--uc-elevated), var(--uc-bg));
  border-radius: 28px;
  padding: 2.4rem 2.2rem;
  border: 1px solid var(--uc-border);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  text-align: center;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.uc-animate-card {
  opacity: 0;
  transform: translateY(24px);
}

.uc-animate-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.uc-service-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.12rem;
}

.uc-service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--uc-text-muted);
}

.uc-service-card:hover {
  border-color: rgba(94, 135, 232, 0.28);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(94, 135, 232, 0.22);
  background: radial-gradient(
      circle at var(--mouse-x) var(--mouse-y),
      rgba(94, 135, 232, 0.12),
      transparent 30%,
      rgba(62, 207, 168, 0.05) 78%
    ),
    radial-gradient(circle at top, var(--uc-raised), var(--uc-bg-soft));
  transform: translateY(-6px);
}

.uc-section-scroll-indicator {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  text-decoration: none;
}

.uc-section-scroll-indicator span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-top-width: 0;
  background: transparent;
  transform: rotate(0deg);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: uc-scroll-bounce 1.6s infinite;
}

.uc-section-scroll-indicator span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  width: 8px;
  height: 8px;
  border-left: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes uc-scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.uc-section-processo {
  padding: 4.8rem 0 3.5rem;
  background: transparent;
}

.uc-section-header--process {
  margin-bottom: 3.4rem;
}

.uc-section-header--process h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  letter-spacing: -0.03em;
}

.uc-section-header--process p {
  max-width: 40rem;
  margin-inline: auto;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.65;
  color: rgba(154, 163, 181, 0.92);
}

.uc-process-track {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

.uc-process-track__line {
  position: absolute;
  top: 3.35rem;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(94, 135, 232, 0.35) 15%,
    rgba(62, 207, 168, 0.4) 50%,
    rgba(94, 135, 232, 0.35) 85%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.uc-process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}

.uc-process-card {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  height: 100%;
  display: flex;
}

.uc-process-card.uc-animate-card {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}

.uc-process-grid .uc-process-card.is-visible:nth-child(1) { transition-delay: 0.06s; }
.uc-process-grid .uc-process-card.is-visible:nth-child(2) { transition-delay: 0.16s; }
.uc-process-grid .uc-process-card.is-visible:nth-child(3) { transition-delay: 0.26s; }

.uc-process-card.uc-animate-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.uc-process-card__surface {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 1.55rem 1.45rem 1.55rem;
  border-radius: 22px;
  border: 1px solid rgba(94, 135, 232, 0.18);
  background-color: rgba(10, 20, 38, 0.28);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  text-align: left;
  transform: translateY(0) scale(1);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease-out,
    border-color 0.28s ease-out,
    background-color 0.28s ease-out;
}

.uc-process-card__surface::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    ellipse 80% 70% at 50% 0%,
    rgba(94, 135, 232, 0.12),
    transparent 70%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease-out;
}

.uc-process-card__meta,
.uc-process-card__title,
.uc-process-card__text {
  position: relative;
  z-index: 1;
}

.uc-process-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1.35rem;
}

.uc-process-card__num {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: rgba(110, 168, 255, 0.8);
}

.uc-process-card__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  border: 1px solid rgba(94, 135, 232, 0.18);
  background-color: rgba(94, 135, 232, 0.08);
  transition:
    box-shadow 0.28s ease-out,
    background-color 0.28s ease-out,
    border-color 0.28s ease-out;
}

.uc-process-card__icon svg {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
}

.uc-process-card__title {
  margin: 0 0 0.95rem;
  font-size: clamp(1.14rem, 2vw, 1.28rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.28;
  color: var(--uc-text);
}

.uc-process-card__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--uc-text-muted);
}

.uc-process-card--featured .uc-process-card__surface {
  border-color: rgba(94, 135, 232, 0.36);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.32),
    0 0 32px rgba(94, 135, 232, 0.12),
    0 0 0 1px rgba(62, 207, 168, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.uc-process-card__surface:hover {
  transform: translateY(-5px) scale(1.012);
  border-color: rgba(94, 200, 220, 0.4);
  background-color: rgba(28, 38, 62, 0.9);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(94, 135, 232, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.uc-process-card__surface:hover::after {
  opacity: 1;
}

.uc-process-card__surface:hover .uc-process-card__icon {
  background-color: rgba(94, 135, 232, 0.14);
  border-color: rgba(62, 207, 168, 0.28);
  box-shadow: 0 0 18px rgba(94, 135, 232, 0.28);
}

.uc-process-card--featured .uc-process-card__surface:hover {
  border-color: rgba(110, 168, 255, 0.55);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.38),
    0 0 40px rgba(94, 135, 232, 0.22),
    0 0 0 1px rgba(62, 207, 168, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ——— Produtos e Plataformas ——— */
.uc-section-ecosystem {
  padding-top: 4.2rem;
  background: transparent;
}

.uc-section-header--ecosystem {
  margin-bottom: 3.4rem;
}

.uc-section-header--ecosystem h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  letter-spacing: -0.03em;
}

.uc-section-header--ecosystem p {
  max-width: 42rem;
  margin-inline: auto;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.65;
  color: rgba(154, 163, 181, 0.92);
}

.uc-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  max-width: 1080px;
  margin: 0 auto 2.8rem;
  align-items: stretch;
}

.uc-eco-card {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
  height: 100%;
  display: flex;
}

.uc-eco-card.uc-animate-card {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}

.uc-ecosystem-grid .uc-eco-card.is-visible:nth-child(1) { transition-delay: 0.05s; }
.uc-ecosystem-grid .uc-eco-card.is-visible:nth-child(2) { transition-delay: 0.12s; }
.uc-ecosystem-grid .uc-eco-card.is-visible:nth-child(3) { transition-delay: 0.19s; }

.uc-eco-card.uc-animate-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.uc-eco-card__surface {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 2rem 1.75rem 1.85rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
  background:
    linear-gradient(165deg, rgba(14, 28, 52, 0.38) 0%, rgba(6, 16, 31, 0.48) 100%);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(28px) saturate(1.25);
  -webkit-backdrop-filter: blur(28px) saturate(1.25);
  transform: translateY(0) scale(1);
  transform-origin: center center;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}

.uc-eco-card--featured .uc-eco-card__surface {
  border-color: rgba(94, 135, 232, 0.38);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.32),
    0 0 36px rgba(94, 135, 232, 0.14),
    0 0 0 1px rgba(62, 207, 168, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.uc-eco-card__surface::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    ellipse 80% 70% at 50% 0%,
    rgba(94, 135, 232, 0.14),
    transparent 70%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease-out;
}

.uc-eco-card__badge,
.uc-eco-card__logo,
.uc-eco-card__desc,
.uc-eco-card__more {
  position: relative;
  z-index: 1;
}

.uc-eco-card__badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1.15rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(94, 135, 232, 0.22);
  background-color: rgba(94, 135, 232, 0.08);
  color: rgba(196, 214, 255, 0.92);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.uc-eco-card__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 3.5rem;
  margin: 0 0 1.55rem;
  width: 100%;
  overflow: visible;
}

.uc-eco-card__logo img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(100%, 220px);
  max-height: none;
  object-fit: contain;
  object-position: left center;
  overflow: visible;
}

.uc-eco-card__desc {
  margin: 0 0 1.45rem;
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--uc-text-muted);
}

.uc-eco-card__more {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(143, 176, 255, 0.92);
  text-decoration: none;
  transition: color 0.25s ease-out, transform 0.25s ease-out;
}

.uc-eco-card__more:hover {
  color: #b8d0ff;
  transform: translateX(2px);
}

.uc-eco-card__surface:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.22),
    0 0 32px rgba(40, 120, 190, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.uc-eco-card--featured .uc-eco-card__surface:hover {
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.38),
    0 0 40px rgba(94, 135, 232, 0.2),
    0 0 0 1px rgba(62, 207, 168, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.uc-eco-card__surface:hover::after {
  opacity: 1;
}

/* ——— Sobre a HorizonOne ——— */
.uc-section-about {
  padding: 4.5rem 0 3.8rem;
  background: transparent;
}

.uc-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem 3.5rem;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.uc-section-header--about {
  text-align: left;
  margin-bottom: 1.75rem;
}

.uc-section-header--about h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  letter-spacing: -0.03em;
}

.uc-section-header--about .uc-animate-subtitle,
.uc-section-header--about p {
  margin-inline: 0;
  max-width: 32rem;
  text-align: left;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.6;
  color: rgba(196, 214, 255, 0.88);
}

.uc-about-body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.uc-about-body p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--uc-text-muted);
}

.uc-about-body__closing {
  margin-top: 0.35rem !important;
  font-family: "Outfit", "Inter", system-ui, sans-serif;
  font-size: 1.08rem !important;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--uc-text) !important;
}

.ho-motto {
  display: block;
}

.ho-motto__word {
  font-weight: 650;
  letter-spacing: -0.02em;
}

/* Logo arc: blue → cyan → green — highlight words only */
.ho-motto__word--evolve {
  color: #1e8bff;
}

.ho-motto__word--connect {
  color: #2bc7f7;
}

.ho-motto__word--grow {
  color: #47c971;
}

.uc-about-visual {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.uc-about-visual__glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(110, 168, 255, 0.28), transparent 55%),
    radial-gradient(circle at 65% 70%, rgba(62, 207, 168, 0.2), transparent 58%);
  filter: blur(8px);
  animation: uc-about-glow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.uc-about-visual__svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.uc-about-orbit--a {
  transform-origin: 240px 240px;
  animation: uc-about-spin 48s linear infinite;
}

.uc-about-orbit--b {
  transform-origin: 240px 240px;
  animation: uc-about-spin-rev 36s linear infinite;
}

.uc-about-orbit--c {
  transform-origin: 240px 240px;
  animation: uc-about-spin 28s linear infinite;
}

.uc-about-node {
  transform-box: fill-box;
  transform-origin: center;
  animation: uc-about-pulse 3.6s ease-in-out infinite;
}

.uc-about-node:nth-of-type(2n) {
  animation-delay: 0.6s;
}

.uc-about-node:nth-of-type(3n) {
  animation-delay: 1.2s;
}

.uc-about-particles circle {
  animation: uc-about-twinkle 4s ease-in-out infinite;
}

.uc-about-particles circle:nth-child(odd) {
  animation-delay: 1.1s;
}

@keyframes uc-about-glow {
  0% {
    opacity: 0.7;
    transform: scale(0.96);
  }
  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes uc-about-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes uc-about-spin-rev {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes uc-about-pulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

@keyframes uc-about-twinkle {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.7;
  }
}

/* ——— Contacto ——— */
/* ——— RGPD & Privacidade (UE) ——— */
.uc-section-privacy {
  padding: 6rem 0 5.5rem;
  background: transparent;
}

.uc-section-header--privacy {
  text-align: left;
  max-width: 40rem;
  margin: 0 0 2.75rem;
}

.uc-section-header--privacy h2 {
  font-size: clamp(1.95rem, 3.4vw, 2.55rem);
  letter-spacing: -0.03em;
  margin: 0.35rem 0 1rem;
}

.uc-section-header--privacy .uc-animate-subtitle {
  margin-inline: 0;
  max-width: 38rem;
  text-align: left;
}

.uc-privacy-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(110, 168, 255, 0.85);
}

.uc-privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1.25rem;
  max-width: 1080px;
  margin: 0 0 2.25rem;
}

.uc-privacy-card {
  padding: 1.55rem 1.45rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(
    165deg,
    rgba(14, 28, 52, 0.32) 0%,
    rgba(6, 16, 31, 0.4) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
}

.uc-privacy-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--uc-text);
}

.uc-privacy-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--uc-text-muted);
}

.uc-privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0.85rem;
  align-items: center;
}

.uc-privacy-actions .uc-button {
  min-height: 42px;
  padding: 0 1.15rem;
  font-size: 0.88rem;
}

@media (max-width: 800px) {
  .uc-privacy-grid {
    grid-template-columns: 1fr;
  }

  .uc-section-header--privacy {
    margin-bottom: 1.75rem;
  }
}

.uc-section-contact {
  padding: 2.5rem 0 5.5rem;
  background: transparent;
}

.uc-contact-cta {
  position: relative;
  scroll-margin-top: 5rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 2.8rem 2.4rem 2.9rem;
  border-radius: 24px;
  border: 1px solid rgba(94, 135, 232, 0.14);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(12, 22, 42, 0.45), rgba(6, 16, 31, 0.55));
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  transition:
    border-color 0.3s ease-out,
    box-shadow 0.3s ease-out;
}

.uc-contact-cta__glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse 45% 40% at 18% 30%, rgba(110, 168, 255, 0.32), transparent 62%),
    radial-gradient(ellipse 50% 45% at 82% 70%, rgba(62, 207, 168, 0.22), transparent 64%);
  animation: uc-contact-cta-shift 10s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes uc-contact-cta-shift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
    opacity: 0.85;
  }
  100% {
    transform: translate3d(3%, 2%, 0) scale(1.06);
    opacity: 1;
  }
}

.uc-contact-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.65rem;
  text-align: left;
}

.uc-contact-cta__title {
  margin: 0 0 0.65rem;
  font-family: "Outfit", "Inter", system-ui, sans-serif;
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.22;
  color: var(--uc-text);
}

.uc-contact-cta__text {
  margin: 0;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--uc-text-muted);
}

.uc-contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.uc-contact-cta__btn {
  white-space: nowrap;
  transition:
    transform 0.28s ease-out,
    box-shadow 0.28s ease-out,
    background-color 0.28s ease-out,
    border-color 0.28s ease-out;
}

.uc-contact-cta__btn.uc-button-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 34px rgba(94, 135, 232, 0.4),
    0 0 28px rgba(62, 207, 168, 0.18);
}

.uc-contact-cta__btn.uc-button-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(94, 200, 220, 0.45);
  background-color: rgba(94, 135, 232, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .uc-process-card.uc-animate-card,
  .uc-process-card.uc-animate-card.is-visible,
  .uc-eco-card.uc-animate-card,
  .uc-eco-card.uc-animate-card.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .uc-process-card__surface:hover,
  .uc-eco-card__surface:hover {
    transform: none;
  }

  .uc-contact-cta__glow,
  .uc-about-visual__glow,
  .uc-about-orbit--a,
  .uc-about-orbit--b,
  .uc-about-orbit--c,
  .uc-about-node,
  .uc-about-particles circle {
    animation: none;
  }
}

@media (max-width: 900px) {
  .uc-process-track__line {
    display: none;
  }

  .uc-process-grid,
  .uc-ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .uc-about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .uc-section-header--about,
  .uc-section-header--about .uc-animate-subtitle,
  .uc-section-header--about p {
    text-align: center;
    margin-inline: auto;
  }

  .uc-about-visual {
    max-width: 340px;
    order: -1;
  }

  .uc-contact-cta__actions {
    width: 100%;
  }

  .uc-contact-cta__btn {
    flex: 1 1 auto;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .uc-contact-cta {
    padding: 1.7rem 1.4rem;
    border-radius: 20px;
  }

  .uc-contact-cta__actions {
    flex-direction: column;
  }

  .uc-contact-cta__btn {
    width: 100%;
  }

  .uc-eco-card__logo {
    min-height: 3.25rem;
    margin-bottom: 1.25rem;
    overflow: visible;
  }

  .uc-eco-card__logo img {
    height: 44px;
    max-width: min(100%, 200px);
    max-height: none;
  }

  .uc-eco-card__surface {
    padding: 1.35rem 1.25rem 1.3rem;
    border-radius: 18px;
  }

  .uc-section {
    padding-block: clamp(3.5rem, 10vw, 5rem);
  }

  .uc-menu-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  /* Prefer tap over hover lift on touch devices */
  .uc-eco-card__surface:hover,
  .uc-capability-card__surface:hover,
  .uc-process-card__surface:hover {
    transform: none;
  }
}

.uc-section-projetos {
  padding-top: 4.2rem;
  background: transparent;
}

.uc-projects-grid {
  margin-bottom: 2.8rem;
}

.uc-project-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.uc-project-card {
  text-align: center;
  height: 100%;
}

.uc-project-logo {
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--uc-text);
}

.uc-project-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--uc-text-muted);
}

.uc-project-logo-image {
  display: block;
  max-height: 64px;
  width: auto;
  margin: 0 auto;
}

/* ── Institutional — Shaping Tomorrow ── */
.uc-institutional {
  position: relative;
  z-index: 1;
  padding: 7.5rem 0 8.25rem;
  scroll-margin-top: 96px;
  background: transparent;
}

.uc-institutional__inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: left;
}

.uc-institutional__title {
  margin: 0 0 3.75rem;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--uc-text);
}

.uc-institutional__title.uc-animate-title {
  transition-delay: 0s;
}

.uc-institutional__statements {
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
}

.uc-institutional__line {
  margin: 0;
  font-size: clamp(1.12rem, 2.3vw, 1.38rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: rgba(154, 163, 181, 0.82);
}

.uc-institutional__line--lead {
  font-size: clamp(1.28rem, 2.7vw, 1.62rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: rgba(231, 234, 242, 0.96);
}

.uc-institutional__line--sublead {
  margin-top: -0.35rem;
  font-size: clamp(1.16rem, 2.4vw, 1.42rem);
  font-weight: 400;
  letter-spacing: -0.018em;
  color: rgba(231, 234, 242, 0.78);
}

.uc-institutional__line--closing {
  position: relative;
  margin-top: 1.65rem;
  padding-top: 2.15rem;
  border-top: 0;
  color: var(--uc-text);
  font-size: clamp(1.38rem, 3vw, 1.78rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.005em;
  max-width: 25.5rem;
}

.uc-institutional__line--closing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48%;
  max-width: 11.5rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(94, 135, 232, 0.55) 0%,
    rgba(62, 207, 168, 0.35) 42%,
    rgba(148, 163, 199, 0.12) 100%
  );
}

.uc-institutional__line--closing::after {
  content: "";
  position: absolute;
  top: -1.5px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff4dc 0%, #5e87e8 55%, transparent 75%);
  box-shadow: 0 0 8px rgba(94, 135, 232, 0.45);
  opacity: 0.85;
}

.uc-institutional-animate {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.75s ease-out,
    transform 0.75s ease-out;
}

.uc-institutional-animate.is-visible {
  opacity: 0.92;
  transform: translateY(0);
}

.uc-institutional__line--lead.uc-institutional-animate.is-visible {
  opacity: 1;
}

.uc-institutional__line--sublead.uc-institutional-animate.is-visible {
  opacity: 0.88;
}

.uc-institutional__line--closing.uc-institutional-animate {
  transition-duration: 0.9s;
}

.uc-institutional__line--closing.uc-institutional-animate.is-visible {
  opacity: 1;
}

/* Title first (0), intro (0.12 / 0.22), body +100ms, closing last */
.uc-institutional-animate:nth-child(1) { transition-delay: 0.12s; }
.uc-institutional-animate:nth-child(2) { transition-delay: 0.22s; }
.uc-institutional-animate:nth-child(3) { transition-delay: 0.32s; }
.uc-institutional-animate:nth-child(4) { transition-delay: 0.42s; }
.uc-institutional-animate:nth-child(5) { transition-delay: 0.52s; }
.uc-institutional-animate:nth-child(6) { transition-delay: 0.62s; }
.uc-institutional-animate:nth-child(7) { transition-delay: 0.82s; }

@media (prefers-reduced-motion: reduce) {
  .uc-institutional-animate {
    opacity: 0.92;
    transform: none;
    transition: none;
  }

  .uc-institutional__line--lead.uc-institutional-animate,
  .uc-institutional__line--closing.uc-institutional-animate {
    opacity: 1;
  }

  .uc-institutional__line--sublead.uc-institutional-animate {
    opacity: 0.88;
  }
}

@media (max-width: 700px) {
  .uc-institutional {
    padding: 5rem 0 5.75rem;
  }

  .uc-institutional__title {
    margin-bottom: 2.75rem;
  }

  .uc-institutional__statements {
    gap: 1.45rem;
  }

  .uc-institutional__line--sublead {
    margin-top: -0.2rem;
  }

  .uc-institutional__line--closing {
    margin-top: 1.35rem;
    padding-top: 1.9rem;
    max-width: 100%;
  }

  .uc-institutional__line--closing::before {
    width: 42%;
  }

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

.uc-card {
  width: 100%;
  max-width: 380px;
  background: radial-gradient(circle at top, var(--uc-elevated), var(--uc-bg));
  border-radius: 26px;
  padding: 1.7rem 1.8rem 1.8rem;
  border: 1px solid var(--uc-border);
  box-shadow: var(--uc-shadow-soft);
  position: relative;
  overflow: hidden;
}

.uc-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0% 0%, rgba(94, 135, 232, 0.22), transparent 55%);
  opacity: 0.5;
  pointer-events: none;
}

.uc-card > * {
  position: relative;
}

.uc-card-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--uc-text-muted);
  margin-bottom: 0.35rem;
}

.uc-card-title {
  font-size: 1.3rem;
  margin: 0 0 0.85rem;
}

.uc-card-text {
  font-size: 0.9rem;
  color: var(--uc-text-muted);
  margin: 0 0 1.1rem;
}

.uc-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--uc-text-muted);
}

.uc-checklist li::before {
  content: "✓";
  display: inline-block;
  margin-right: 0.45rem;
  font-size: 0.8rem;
  color: var(--uc-emerald);
}

.uc-footer {
  position: relative;
  z-index: 6;
  padding: 28px 0 34px;
  background: transparent;
  border: 0;
}

/* Same shell width as header (logo + menu) */
.uc-footer .uc-container {
  width: min(var(--uc-shell-max), calc(100% - var(--uc-shell-gutter) * 2));
  max-width: min(var(--uc-shell-max), calc(100% - var(--uc-shell-gutter) * 2));
  padding-left: 0;
  padding-right: 0;
}

.uc-footer--enterprise .uc-footer-wrap {
  background: linear-gradient(
    165deg,
    rgba(12, 22, 42, 0.4) 0%,
    rgba(6, 16, 31, 0.5) 100%
  );
  border: 1px solid rgba(130, 162, 220, 0.08);
  border-radius: 20px;
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  padding: 40px 36px 24px;
  animation: uc-footer-fade-in 0.7s ease backwards;
}

.uc-footer-main {
  display: grid;
  align-items: start;
}

.uc-footer-grid-four {
  grid-template-columns: minmax(260px, 1.55fr) repeat(4, minmax(88px, 1fr));
  gap: 28px 36px;
}

.uc-footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: min(22.5rem, 100%);
  padding-right: clamp(12px, 2.5vw, 28px);
  animation: uc-footer-fade-in 0.7s ease backwards;
}

.uc-footer-logo-full {
  display: inline-flex;
  margin-bottom: 2px;
  opacity: 0.95;
  transition: opacity 0.28s ease-out;
}

.uc-footer-logo-full:hover {
  opacity: 1;
}

.uc-footer-brand-desc {
  margin: 0;
  max-width: 22rem;
  font-size: 0.86rem;
  line-height: 1.68;
  color: rgba(164, 182, 212, 0.62);
}

.uc-footer-origin-line {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(130, 162, 210, 0.42);
}

.uc-footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  animation: uc-footer-fade-in 0.7s ease backwards;
}

.uc-footer-column:nth-child(2) { animation-delay: 0.05s; }
.uc-footer-column:nth-child(3) { animation-delay: 0.1s; }
.uc-footer-column:nth-child(4) { animation-delay: 0.15s; }
.uc-footer-column:nth-child(5) { animation-delay: 0.2s; }

.uc-footer-title {
  margin: 0 0 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(223, 239, 255, 0.84);
}

.uc-footer-column a {
  position: relative;
  display: inline-block;
  width: fit-content;
  font-size: 0.88rem;
  color: rgba(186, 202, 228, 0.78);
  text-decoration: none;
  transition:
    color 0.35s ease,
    text-shadow 0.35s ease;
}

.uc-footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(62, 207, 168, 0.85), rgba(94, 135, 232, 0.55));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.uc-footer-column a:hover,
.uc-footer-column a:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(62, 207, 168, 0.28);
}

.uc-footer-column a:hover::after,
.uc-footer-column a:focus-visible::after {
  transform: scaleX(1);
}

.uc-footer-link-external {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.uc-footer-external-icon {
  font-size: 0.82em;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.uc-footer-link-external:hover .uc-footer-external-icon,
.uc-footer-link-external:focus-visible .uc-footer-external-icon {
  opacity: 0.85;
  transform: translate(1px, -1px);
}

.uc-footer-link-static {
  display: inline-block;
  width: fit-content;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(186, 202, 228, 0.52);
  cursor: default;
  user-select: none;
}

.uc-footer-enterprise-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(130, 162, 220, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  animation: uc-footer-fade-in 0.7s ease 0.25s backwards;
}

.uc-footer-copyright {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(164, 180, 208, 0.58);
  letter-spacing: 0.01em;
}

@keyframes uc-footer-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .uc-footer-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
  }

  .uc-footer-brand-block {
    grid-column: 1 / -1;
    max-width: min(28rem, 100%);
    padding-right: 0;
  }

  .uc-footer-enterprise-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .uc-footer--enterprise .uc-footer-wrap {
    padding: 24px 20px 16px;
    border-radius: 18px;
  }

  .uc-footer-grid-four {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .uc-footer-brand-block {
    grid-column: auto;
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .uc-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .uc-hero-panel {
    justify-content: flex-start;
  }

  .uc-card {
    max-width: 100%;
  }

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

@media (max-width: 640px) {
  .uc-container {
    padding-inline: 1.25rem;
  }

  .uc-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

/* ——— Brand Reveal ——— */
html.brand-reveal-pending,
html.brand-reveal-active,
html.brand-reveal-pending body,
html.brand-reveal-active body {
  background: var(--uc-bg);
}

html.brand-reveal-preview body > *:not(#brand-reveal):not(.uc-space) {
  visibility: hidden !important;
  pointer-events: none !important;
}

html.brand-reveal-preview,
html.brand-reveal-preview body {
  overflow: hidden;
  background: var(--uc-bg);
}

html.brand-reveal-active,
body.brand-reveal-active {
  overflow: hidden;
}

.brand-reveal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  pointer-events: auto;
  isolation: isolate;
  visibility: visible !important;
}

.brand-reveal__veil {
  position: absolute;
  inset: 0;
  background: var(--uc-bg);
}

.brand-reveal__stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(920px, 92vw);
  transform: translateZ(0);
}

.brand-reveal__energy {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 3;
}

.brand-reveal__dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    #fff8e8 0%,
    #ffd28a 35%,
    #c88840 70%,
    transparent 100%
  );
  box-shadow:
    0 0 12px rgba(255, 210, 138, 0.55),
    0 0 28px rgba(200, 136, 64, 0.25);
  will-change: transform, opacity;
}

.brand-reveal__wave {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  border-radius: 50%;
  border: 1px solid rgba(232, 168, 88, 0.35);
  box-shadow: 0 0 24px rgba(200, 136, 64, 0.08);
  will-change: transform, opacity;
}

.brand-reveal__wave--late {
  width: 90px;
  height: 90px;
  margin: -45px 0 0 -45px;
  border-color: rgba(255, 228, 184, 0.22);
}

.brand-reveal__logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  will-change: opacity, filter;
}

.brand-reveal__logo-wrap .ho-logo--reveal {
  display: block;
  width: min(420px, 86vw);
  height: auto;
  line-height: 0;
}

.brand-reveal__logo-wrap .ho-logo--reveal .ho-logo__svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  will-change: transform;
}

.brand-reveal__travel {
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 36px);
  width: 72px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(232, 168, 88, 0.12) 16%,
    rgba(255, 240, 210, 0.7) 50%,
    rgba(232, 168, 88, 0.12) 84%,
    transparent 100%
  );
  box-shadow:
    0 0 8px rgba(255, 210, 138, 0.2),
    0 0 18px rgba(200, 136, 64, 0.1);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
  z-index: 4;
  will-change: transform, opacity;
}

@media (max-width: 640px) {
  .brand-reveal__travel {
    width: 56px;
    left: calc(50% - 28px);
  }
}

.brand-reveal__particles {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  z-index: 3;
  pointer-events: none;
}

.brand-reveal__particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(94, 200, 180, 0.85);
  box-shadow: 0 0 6px rgba(62, 207, 168, 0.45);
  transform: rotate(calc(var(--a) * 1rad)) translateX(var(--r)) rotate(calc(var(--a) * -1rad));
  opacity: 0;
  will-change: transform, opacity;
}

.brand-reveal__particle:nth-child(odd) {
  background: rgba(94, 135, 232, 0.8);
  box-shadow: 0 0 6px rgba(94, 135, 232, 0.4);
  width: 1.5px;
  height: 1.5px;
}

.brand-reveal__tagline {
  margin: 0.7rem 0 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(143, 176, 255, 0.72);
  text-align: center;
  will-change: opacity, transform, letter-spacing;
}

@media (max-width: 640px) {
  .brand-reveal__logo-wrap .ho-logo--reveal {
    width: min(340px, 90vw);
  }

  .brand-reveal__tagline {
    margin-top: 0.55rem;
    font-size: 0.62rem;
    letter-spacing: 0.32em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-reveal {
    display: none !important;
  }

  .uc-button,
  .uc-button-primary,
  .uc-button-outline,
  .uc-button-ghost {
    transition: none;
  }

  .uc-button-primary:hover,
  .uc-button-outline:hover,
  .uc-button-ghost:hover {
    transform: none;
  }

  .uc-header {
    transition: none;
  }
}

/* === IA v3 — structure helpers (no visual redesign) === */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.uc-lang {
  display: inline-flex;
  align-items: center;
  margin: 0 2px 0 4px;
}

.uc-lang__select {
  appearance: none;
  -webkit-appearance: none;
  min-height: 36px;
  padding: 0 1.6rem 0 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 199, 0.22);
  background:
    linear-gradient(45deg, transparent 50%, rgba(236, 240, 248, 0.72) 50%) calc(100% - 12px) / 5px 5px no-repeat,
    linear-gradient(135deg, transparent 50%, rgba(236, 240, 248, 0.72) 50%) calc(100% - 8px) / 5px 5px no-repeat,
    rgba(10, 20, 38, 0.35);
  color: rgba(245, 247, 252, 0.9);
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.uc-lang__select:focus-visible {
  outline: 2px solid rgba(94, 135, 232, 0.55);
  outline-offset: 2px;
}

.uc-lang__select option {
  color: #0b1220;
  background: #f5f7fa;
}

.uc-hero .uc-hero-cta--secondary {
  min-width: 178px;
  min-height: 56px;
  padding: 0.95rem 1.7rem;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
}

.uc-capability-card__cta {
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(143, 176, 255, 0.95);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.uc-capability-card__cta:hover {
  color: #3ecfa8;
}

.uc-solutions-group {
  margin-top: 2rem;
}

.uc-solutions-group:first-of-type {
  margin-top: 0.35rem;
}

.uc-solutions-group__title {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(196, 214, 255, 0.72);
}

.uc-process-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.uc-process-grid--five .uc-process-card.is-visible:nth-child(4) { transition-delay: 0.32s; }
.uc-process-grid--five .uc-process-card.is-visible:nth-child(5) { transition-delay: 0.38s; }

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

@media (max-width: 1100px) {
  .uc-process-grid--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .uc-privacy-grid--compact {
    grid-template-columns: 1fr;
  }

  .uc-capabilities-grid--audience {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .uc-process-grid--five {
    grid-template-columns: 1fr;
  }

  .uc-menu-pill > .uc-lang {
    display: none;
  }

  .uc-mobile-nav-inner .uc-lang {
    display: inline-flex;
    margin: 0.5rem 0 0;
  }

  .uc-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .uc-hero .uc-hero-cta,
  .uc-hero .uc-hero-cta--secondary {
    width: 100%;
    justify-content: center;
  }

  .uc-contact-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .uc-contact-cta__btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

@media (max-width: 1024px) {
  .uc-mobile-nav-inner .uc-lang {
    display: inline-flex;
    margin: 0.5rem 0 0;
  }
}
