:root {
  --bg: #0b1220;
  --surface: #111c33;
  --surface-2: #162544;
  --text: #e7eefc;
  --muted: #9db0d6;
  --brand-a: #2f80ed;
  --brand-b: #27c1c8;
  --brand-c: #7ed957;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(47, 128, 237, 0.16);
  --gradient: linear-gradient(135deg, #2f80ed, #27c1c8, #7ed957);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

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

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

.section {
  padding: 96px 0;
  position: relative;
}

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

.narrow {
  max-width: 760px;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: margin-top 0.25s ease, min-height 0.25s ease, padding 0.25s ease,
    border-radius 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.header.header-scrolled .nav-wrap {
  min-height: 56px;
  height: 56px;
  margin-top: 10px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(249, 250, 251, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
}

.header.header-scrolled .menu-pill {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

.header.header-scrolled .nav {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.header.header-scrolled .menu-brand {
  gap: 7px;
}

.header.header-scrolled .menu-brand-wordmark {
  max-width: 230px;
  opacity: 1;
  transform: translateX(0);
}

.header.header-scrolled .menu-brand-badge {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.header.header-scrolled .menu-lang {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.menu-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: hidden;
  transition: gap 0.28s ease;
}

.menu-brand-badge {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.menu-brand-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.menu-brand-wordmark {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: none;
  max-width: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition: max-width 0.32s ease, opacity 0.24s ease, transform 0.3s ease;
  pointer-events: none;
}

.menu-brand:hover,
.menu-brand:focus-visible {
  gap: 6px;
}

.menu-brand:hover .menu-brand-wordmark,
.menu-brand:focus-visible .menu-brand-wordmark {
  max-width: 230px;
  opacity: 1;
  transform: translateX(0);
}

.menu-brand.intro-show {
  gap: 6px;
}

.menu-brand.intro-show .menu-brand-wordmark {
  max-width: 230px;
  opacity: 1;
  transform: translateX(0);
}

.menu-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(249, 250, 251, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
}

.logo {
  font-weight: 700;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.logo-image-link {
  gap: 0;
}

.logo-image {
  height: 42px;
  width: auto;
  display: block;
}

.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--gradient);
  box-shadow: 0 0 18px rgba(39, 193, 200, 0.9);
}

.nav {
  display: flex;
  gap: 28px;
  color: #18263d;
  padding: 0 14px;
  min-height: 44px;
  align-items: center;
  border-radius: 999px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nav a:hover {
  color: #0067de;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.nav a:hover {
  background: rgba(10, 21, 38, 0.08);
}

.menu-login {
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.93rem;
  font-weight: 700;
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, #20c062, #46df6a);
  box-shadow: 0 6px 16px rgba(39, 193, 90, 0.28);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.menu-login:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.menu-lang {
  min-width: 52px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: #0c2644;
  font-weight: 700;
  cursor: pointer;
  padding: 0 8px 0 7px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-lang-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  border-radius: 999px;
}

.menu-lang-caret {
  width: 12px;
  height: 12px;
  color: #4c5f7e;
  transition: transform 0.2s ease;
}

.menu-lang:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
}

.lang-switcher {
  position: relative;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 172px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(249, 250, 251, 0.96);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(8px);
  padding: 8px;
  display: block;
  z-index: 30;
}

.lang-dropdown[hidden] {
  display: none !important;
}

.lang-switcher.open .menu-lang-caret {
  transform: rotate(180deg);
}

.lang-dropdown-title {
  margin: 2px 4px 8px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #95a2b7;
}

.lang-item {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 9px;
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #122440;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.lang-item:hover {
  background: rgba(15, 23, 42, 0.08);
}

.lang-item.active {
  background: rgba(34, 197, 94, 0.24);
  box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.35);
  font-weight: 700;
}

.lang-item-flag {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  object-fit: cover;
}

.btn {
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: var(--gradient);
  color: #081120;
  box-shadow: 0 8px 30px rgba(39, 193, 200, 0.35);
}

.btn-secondary {
  border-color: rgba(130, 162, 220, 0.35);
  color: var(--text);
  background: rgba(17, 28, 51, 0.8);
}

.hero {
  padding-top: 170px;
}

.hero-grid > * {
  grid-column: span 6;
}

.hero-grid {
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  color: var(--brand-b);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.hero-title {
  font-size: clamp(2.1rem, 4.7vw, 4rem);
}

h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
}

p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: var(--muted);
}

.lead {
  font-size: 1.08rem;
  color: #d8e4fb;
  white-space: nowrap;
}

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

.hero-visual {
  position: relative;
  min-height: 420px;
}

.app-mockup {
  position: absolute;
  inset: 45px 40px 0 40px;
  background: radial-gradient(circle at 50% 50%, rgba(35, 63, 112, 0.55), #111c33 62%);
  border: 1px solid rgba(130, 162, 220, 0.2);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 2;
}

.eco-grid {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.eco-grid::before {
  content: "";
  position: absolute;
  inset: 14% 16%;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(39, 193, 200, 0.14) 0%,
    rgba(126, 217, 87, 0.08) 32%,
    rgba(47, 128, 237, 0.04) 58%,
    transparent 76%
  );
  filter: blur(8px);
  animation: auraShift 10s ease-in-out infinite alternate;
}

.eco-core {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(39, 193, 200, 0.26), rgba(11, 18, 32, 0.2));
  box-shadow: 0 0 36px rgba(39, 193, 200, 0.9);
  animation: corePulse 3.2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-core-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(126, 217, 87, 0.4));
}

.eco-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(130, 162, 220, 0.22);
}

.eco-ring.e1 {
  width: 160px;
  height: 160px;
  left: calc(50% - 80px);
  top: calc(50% - 80px);
  animation: spin 11s linear infinite;
}

.eco-ring.e2 {
  width: 230px;
  height: 230px;
  left: calc(50% - 115px);
  top: calc(50% - 115px);
  animation: spin-rev 16s linear infinite;
}

.eco-ring.e3 {
  width: 300px;
  height: 300px;
  left: calc(50% - 150px);
  top: calc(50% - 150px);
  border-color: rgba(39, 193, 200, 0.2);
  animation: spin 23s linear infinite;
}

.eco-node {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #a0f2f6;
  box-shadow: 0 0 18px rgba(126, 217, 87, 0.85);
  animation: nodeFloat 4.6s ease-in-out infinite, nodeTwinkle 2.8s ease-in-out infinite;
}

.eco-node.n1 {
  left: 56%;
  top: 24%;
  width: 9px;
  height: 9px;
  filter: blur(0.2px);
  animation-delay: -0.7s;
}
.eco-node.n2 {
  left: 77%;
  top: 49%;
  width: 12px;
  height: 12px;
  animation-delay: -1.4s;
}
.eco-node.n3 {
  left: 62%;
  top: 74%;
  width: 8px;
  height: 8px;
  filter: blur(0.4px);
  animation-delay: -2.2s;
}
.eco-node.n4 {
  left: 31%;
  top: 67%;
  width: 10px;
  height: 10px;
  animation-delay: -0.3s;
}
.eco-node.n5 {
  left: 24%;
  top: 38%;
  width: 13px;
  height: 13px;
  filter: blur(0.1px);
  animation-delay: -1.8s;
}

.eco-link {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, #27c1c8, transparent);
  opacity: 0.85;
  background-size: 200% 100%;
  animation: dataFlow 4.8s linear infinite;
}

.eco-link.l1 {
  width: 170px;
  left: 36%;
  top: 35%;
  transform: rotate(26deg);
  animation-delay: -0.8s;
}
.eco-link.l2 {
  width: 200px;
  left: 42%;
  top: 59%;
  transform: rotate(-20deg);
  animation-delay: -2.1s;
}
.eco-link.l3 {
  width: 120px;
  left: 27%;
  top: 50%;
  transform: rotate(14deg);
  animation-delay: -1.3s;
}
.eco-link.l4 {
  width: 126px;
  left: 52%;
  top: 48%;
  transform: rotate(-56deg);
  animation-delay: -2.8s;
}

.app-mockup:hover .eco-core {
  animation-duration: 2.2s;
}

.app-mockup:hover .eco-ring.e1 {
  animation-duration: 8.5s;
}

.app-mockup:hover .eco-ring.e2 {
  animation-duration: 12s;
}

.app-mockup:hover .eco-ring.e3 {
  animation-duration: 17s;
}

.app-mockup:hover .eco-node {
  box-shadow: 0 0 22px rgba(126, 217, 87, 0.95);
}

.app-mockup:hover .eco-link {
  animation-duration: 3.2s;
  opacity: 1;
}

.orbit-ring,
.network-ring {
  position: absolute;
  border: 1px solid rgba(130, 162, 220, 0.22);
  border-radius: 999px;
}

.orbit-ring-1 {
  width: 370px;
  height: 370px;
  top: 8px;
  right: 20px;
  animation: spin 15s linear infinite;
}

.orbit-ring-2 {
  width: 280px;
  height: 280px;
  top: 54px;
  right: 65px;
  animation: spin-rev 11s linear infinite;
}

.orbit-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand-b);
  box-shadow: 0 0 16px rgba(39, 193, 200, 0.85);
}

.node-1 {
  top: 72px;
  right: 180px;
}

.node-2 {
  top: 190px;
  right: 16px;
}

.node-3 {
  top: 320px;
  right: 210px;
}

.outer-orbit-travel-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #9debf0;
  box-shadow: 0 0 16px rgba(126, 217, 87, 0.85);
  z-index: 1;
  /* Usa a mesma órbita exterior existente (.orbit-ring-1). */
  offset-path: circle(185px at calc(100% - 205px) 193px);
  offset-distance: 0%;
  animation: travelOrbit 8s linear infinite;
}

.two-col > * {
  grid-column: span 6;
}

.orbit-summary-grid {
  align-items: center;
}

.orbit-summary-copy {
  margin-top: 18px;
}

#orbita-vantagens {
  scroll-margin-top: 120px;
}

.vantagens-grid {
  align-items: center;
}

.vantagens-copy {
  max-width: 540px;
}

.vantagem-detail {
  margin-top: 14px;
  min-height: 98px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.vantagem-detail.animating {
  opacity: 0;
  transform: translateY(6px);
}

.vantagem-detail h3 {
  color: #e8f2ff;
  font-size: 1.22rem;
  margin: 0 0 6px;
}

.vantagem-detail p {
  margin: 0;
}

.vantagem-progress {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.vantagem-progress .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(157, 176, 214, 0.42);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.vantagem-progress .dot.active {
  background: #9debf0;
  box-shadow: 0 0 10px rgba(126, 217, 87, 0.82);
  transform: scale(1.15);
}

.vantagens-orbit-wrap {
  position: relative;
  min-height: 320px;
  border-radius: 18px;
  border: 1px solid rgba(130, 162, 220, 0.2);
  background: radial-gradient(circle at 50% 50%, rgba(39, 193, 200, 0.12), rgba(11, 18, 32, 0.3) 56%),
    linear-gradient(160deg, rgba(18, 32, 56, 0.72), rgba(10, 20, 40, 0.58));
  box-shadow: 0 14px 36px rgba(14, 26, 48, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.vantagens-core {
  position: absolute;
  width: 54px;
  height: 54px;
  left: calc(50% - 27px);
  top: calc(50% - 27px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(39, 193, 200, 0.42), rgba(11, 18, 32, 0.15));
  box-shadow: 0 0 30px rgba(39, 193, 200, 0.68);
  z-index: 3;
  animation: coreBreath 3.6s ease-in-out infinite;
}

.vantagens-core-logo {
  width: 76%;
  height: 76%;
  object-fit: contain;
  display: block;
  margin: 12%;
  filter: drop-shadow(0 0 6px rgba(39, 193, 200, 0.45));
  pointer-events: none;
  user-select: none;
}

.vantagens-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(39, 193, 200, 0.28);
}

.vantagens-ring.ring-1 {
  width: 220px;
  height: 220px;
  left: calc(50% - 110px);
  top: calc(50% - 110px);
  animation: spin 16s linear infinite;
}

.vantagens-ring.ring-2 {
  width: 166px;
  height: 166px;
  left: calc(50% - 83px);
  top: calc(50% - 83px);
  border-color: rgba(47, 128, 237, 0.22);
  animation: spin-rev 12s linear infinite;
}

.vantagens-link {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39, 193, 200, 0.62), transparent);
  opacity: 0.55;
}

.vantagens-link.link-1 {
  width: 160px;
  left: calc(50% - 74px);
  top: calc(50% - 42px);
  transform: rotate(18deg);
}

.vantagens-link.link-2 {
  width: 138px;
  left: calc(50% - 64px);
  top: calc(50% + 24px);
  transform: rotate(-26deg);
}

.vantagens-node {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(157, 176, 214, 0.44);
  cursor: pointer;
  z-index: 4;
  transition: box-shadow 0.22s ease, background-color 0.22s ease;
}

.vantagens-node::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(2px);
  background: rgba(11, 18, 32, 0.94);
  border: 1px solid rgba(130, 162, 220, 0.22);
  color: #d9e7ff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 7px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.vantagens-node.active {
  background: #9debf0;
  box-shadow: 0 0 16px rgba(126, 217, 87, 0.88);
}

.vantagens-node:hover::after,
.vantagens-node:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.vantagens-connector {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 1px;
  width: 116px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(39, 193, 200, 0.66), rgba(39, 193, 200, 0.08));
  box-shadow: 0 0 12px rgba(39, 193, 200, 0.32);
  opacity: 0.55;
  z-index: 2;
  transition: opacity 0.2s ease;
}

@media (max-width: 1024px) {
  .vantagens-grid > * {
    grid-column: span 12;
  }

  .vantagens-orbit-wrap {
    order: -1;
    min-height: 260px;
  }

  .vantagens-ring.ring-2,
  .vantagens-link {
    display: none;
  }

  .vantagens-connector {
    opacity: 0.4;
  }
}

.orbit-network {
  position: relative;
  min-height: 340px;
  background: rgba(17, 28, 51, 0.5);
  border-radius: var(--radius);
  border: 1px solid rgba(130, 162, 220, 0.18);
  overflow: hidden;
}

.network-core {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--gradient);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 30px rgba(39, 193, 200, 0.9);
}

.ring-a {
  width: 220px;
  height: 220px;
  inset: 60px auto auto 90px;
  animation: spin 13s linear infinite;
}

.ring-b {
  width: 280px;
  height: 280px;
  inset: 30px auto auto 60px;
  animation: spin-rev 17s linear infinite;
}

.network-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, #27c1c8, transparent);
}

.l1 {
  width: 240px;
  top: 138px;
  left: 72px;
}

.l2 {
  width: 190px;
  top: 220px;
  left: 110px;
  transform: rotate(28deg);
}

.l3 {
  width: 180px;
  top: 102px;
  left: 130px;
  transform: rotate(-22deg);
}

.network-point {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #9debf0;
  box-shadow: 0 0 16px rgba(126, 217, 87, 0.8);
}

.p1 {
  top: 92px;
  left: 140px;
}
.p2 {
  top: 230px;
  left: 96px;
}
.p3 {
  top: 126px;
  left: 304px;
}
.p4 {
  top: 286px;
  left: 254px;
}

.cell-network .network-core {
  box-shadow: 0 0 20px rgba(39, 193, 200, 0.6);
  animation: corePulse 4.2s ease-in-out infinite;
  z-index: 3;
}

.cell-network {
  overflow: visible;
}

.cell-network::before {
  content: "";
  position: absolute;
  width: 372px;
  height: 372px;
  left: calc(50% - 186px);
  top: calc(50% - 186px);
  border-radius: 999px;
  border: 1px solid rgba(47, 128, 237, 0.32);
  box-shadow: 0 0 26px rgba(39, 193, 200, 0.2);
  z-index: 0;
  pointer-events: none;
}

.cell-external-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #9debf0;
  box-shadow: 0 0 16px rgba(126, 217, 87, 0.8);
  z-index: 5;
  offset-path: circle(186px at 50% 50%);
  offset-rotate: auto;
  offset-distance: 0%;
  animation: cellOrbitFlow 8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.cell-external-node::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 4px;
  left: -10px;
  top: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(126, 217, 87, 0), rgba(126, 217, 87, 0.45));
  filter: blur(0.5px);
}

.cell-network .ring-a {
  animation-duration: 14s;
  opacity: 0.35;
}

.cell-network .ring-b {
  animation-duration: 20s;
  opacity: 0.18;
}

.cell-network .network-line {
  background: linear-gradient(90deg, transparent, rgba(39, 193, 200, 0.4), transparent);
  animation: none;
  opacity: 0.18;
  z-index: 1;
}

.cell-network .l2,
.cell-network .l3 {
  opacity: 0.1;
}

.cell-network .network-point {
  animation: none;
  opacity: 0.22;
}

.cell-network .p3,
.cell-network .p4 {
  display: none;
}

.cell-phone {
  position: absolute;
  width: 132px;
  height: 250px;
  left: calc(50% - 66px);
  top: calc(50% - 125px);
  border-radius: 24px;
  border: 1px solid rgba(126, 220, 255, 0.62);
  background: linear-gradient(170deg, rgba(15, 32, 62, 0.62), rgba(10, 22, 42, 0.26));
  box-shadow: 0 0 34px rgba(47, 128, 237, 0.2), inset 0 0 26px rgba(39, 193, 200, 0.14),
    inset 0 0 46px rgba(126, 217, 87, 0.04);
  backdrop-filter: blur(2px);
  z-index: 2;
}

.cell-phone-notch {
  position: absolute;
  width: 52px;
  height: 6px;
  left: calc(50% - 26px);
  top: 10px;
  border-radius: 999px;
  background: rgba(125, 160, 220, 0.5);
}

.cell-phone-core {
  position: absolute;
  width: 18px;
  height: 18px;
  left: calc(50% - 9px);
  top: calc(50% - 9px);
  border-radius: 999px;
  background: radial-gradient(circle, #7ed957 0%, #27c1c8 55%, #2f80ed 100%);
  box-shadow: 0 0 24px rgba(39, 193, 200, 0.9);
  animation: corePulse 2.8s ease-in-out infinite;
}

.section-head {
  margin-bottom: 28px;
}

.pricing-head {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.pricing-wrap {
  display: flex;
  justify-content: center;
}

.pricing-card {
  width: min(420px, 100%);
  background: linear-gradient(170deg, #132243, #0f1c35);
  box-shadow: 0 14px 40px rgba(39, 193, 200, 0.18);
}

.pricing-name {
  color: #d7e6ff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.pricing-price {
  font-size: clamp(2.2rem, 5.2vw, 3.2rem);
  font-weight: 900;
  color: #f2f7ff;
  line-height: 1.1;
  margin-bottom: 8px;
  text-align: center;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.pricing-price small {
  font-size: 0.85rem;
  color: #9db0d6;
  font-weight: 600;
  margin-right: 6px;
}

.pricing-price-note {
  font-size: 0.9rem;
  color: #9db0d6;
  margin-bottom: 16px;
  text-align: center;
}

.pricing-included-title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: #8fb5ff;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.pricing-features li {
  color: #d5e4ff;
  position: relative;
  padding-left: 18px;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #27c1c8, #7ed957);
  box-shadow: 0 0 10px rgba(39, 193, 200, 0.7);
}

.pricing-caption {
  color: #e6f1ff;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.pricing-note {
  font-size: 0.92rem;
  margin-bottom: 24px;
  text-align: center;
}

.pricing-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.prime-highlight {
  color: #eaffd9;
  font-weight: 700;
}

.cards-grid .card {
  grid-column: span 4;
}

.card,
.step,
.chip,
.stat-card {
  background: var(--surface);
  border: 1px solid rgba(130, 162, 220, 0.2);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.35s ease,
    border-color 0.25s ease;
}

.card:hover,
.step:hover,
.chip:hover,
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(39, 193, 200, 0.7);
  box-shadow: 0 10px 40px rgba(39, 193, 200, 0.2);
}

.financial .stats {
  display: grid;
  gap: 14px;
}

.financial .grid {
  align-items: center;
}

.financial .reveal:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-card strong {
  font-size: 1.45rem;
  color: var(--brand-c);
}

.orbit-gamification {
  background: rgba(17, 28, 51, 0.65);
  border: 1px solid rgba(130, 162, 220, 0.18);
  border-radius: var(--radius);
  padding: 20px;
}

.orbit-gamification-visual {
  position: relative;
  min-height: 248px;
  border-radius: 12px;
  background: radial-gradient(circle at 50% 52%, rgba(39, 193, 200, 0.12), rgba(11, 18, 32, 0.2) 55%, transparent 72%);
}

.orbit-core {
  position: absolute;
  width: 52px;
  height: 52px;
  left: calc(50% - 26px);
  top: calc(50% - 26px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(39, 193, 200, 0.22), rgba(11, 18, 32, 0.1));
  box-shadow: 0 0 24px rgba(39, 193, 200, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: corePulse 3.4s ease-in-out infinite, coreProximity 7s linear infinite;
}

.orbit-core img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  animation: spinSlow 16s linear infinite;
}

.orbit-track {
  position: absolute;
  width: 228px;
  height: 228px;
  left: calc(50% - 114px);
  top: calc(50% - 114px);
  border-radius: 999px;
  background: conic-gradient(
    rgba(39, 193, 200, 0.95) 0deg,
    rgba(47, 128, 237, 0.88) 216deg,
    rgba(39, 193, 200, 0.18) 216deg,
    rgba(39, 193, 200, 0.14) 360deg
  );
  -webkit-mask: radial-gradient(circle at center, transparent 109px, #000 110px);
  mask: radial-gradient(circle at center, transparent 109px, #000 110px);
  box-shadow: 0 0 24px rgba(39, 193, 200, 0.22);
  opacity: 0.95;
  animation: revealOrbit 1.2s ease-out both;
}

.orbit-runner {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #9debf0;
  box-shadow: 0 0 20px rgba(126, 217, 87, 0.95);
  offset-path: circle(114px at 50% 50%);
  animation: revealNode 0.8s ease-out 0.6s both, orbitProgress 7s linear infinite 1.2s;
}

.orbit-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0;
  animation: revealNode 0.8s ease-out forwards;
}

.orbit-node.active {
  background: #9debf0;
  box-shadow: 0 0 14px rgba(126, 217, 87, 0.8);
}

.orbit-node.inactive {
  background: rgba(157, 176, 214, 0.5);
  opacity: 0.42;
}

.orbit-node.bright {
  width: 12px;
  height: 12px;
  box-shadow: 0 0 22px rgba(126, 217, 87, 1);
}

.orbit-node.dim {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 10px rgba(126, 217, 87, 0.55);
}

.orbit-node.n1 {
  left: calc(50% + 4px);
  top: calc(50% - 116px);
  animation-delay: 0.2s;
}
.orbit-node.n2 {
  left: calc(50% + 98px);
  top: calc(50% + 14px);
  animation-delay: 0.35s;
}
.orbit-node.n3 {
  left: calc(50% + 20px);
  top: calc(50% + 102px);
  animation-delay: 0.5s;
}
.orbit-node.n4 {
  left: calc(50% - 112px);
  top: calc(50% + 8px);
  animation-delay: 0.65s;
}
.orbit-node.n5 {
  left: calc(50% - 84px);
  top: calc(50% - 70px);
  animation-delay: 0.8s;
}

.orbit-node::after {
  content: attr(data-benefit);
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.72rem;
  color: #d9e7ff;
  background: rgba(11, 18, 32, 0.92);
  border: 1px solid rgba(130, 162, 220, 0.25);
  border-radius: 8px;
  padding: 6px 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.orbit-node:hover::after {
  opacity: 1;
}

.orbit-progress {
  margin-top: 8px;
}

.orbit-dots {
  margin: 0 0 6px;
  color: #d7e7ff;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.orbit-level {
  margin: 0 0 4px;
  color: #e6f1ff;
  font-weight: 600;
}

.orbit-remaining {
  margin: 0;
}

.orbit-dynamic-text {
  margin-top: 10px;
}

.orbit-dynamic-text p:first-child {
  margin-bottom: 2px;
  color: #dfeaff;
  font-weight: 600;
}

.orbit-next {
  margin-top: 6px;
  margin-bottom: 4px;
  color: #dfeaff;
  font-weight: 600;
}

.orbit-next-benefits {
  margin: 0;
  color: #cde2ff;
}

.orbit-gamification.level-1 .orbit-node.n3,
.orbit-gamification.level-1 .orbit-node.n4,
.orbit-gamification.level-1 .orbit-node.n5 {
  opacity: 0.28;
  box-shadow: none;
}

.orbit-gamification.level-2 .orbit-node.n4,
.orbit-gamification.level-2 .orbit-node.n5 {
  opacity: 0.38;
  box-shadow: none;
}

.orbit-gamification.level-3 .orbit-track {
  border-color: rgba(39, 193, 200, 0.52);
  box-shadow: 0 0 30px rgba(39, 193, 200, 0.28);
}

.orbit-gamification.level-3 .orbit-node.active {
  box-shadow: 0 0 18px rgba(126, 217, 87, 0.95);
}

@keyframes revealNode {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes revealOrbit {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 0.95;
    transform: scale(1);
  }
}

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

@keyframes coreProximity {
  0%,
  38%,
  100% {
    box-shadow: 0 0 24px rgba(39, 193, 200, 0.55);
  }
  50% {
    box-shadow: 0 0 34px rgba(126, 217, 87, 0.82);
  }
}

.steps-grid .step {
  grid-column: span 4;
}

.step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(47, 128, 237, 0.22);
  color: #d4e4ff;
  margin-bottom: 12px;
}

.app-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.screen {
  min-height: 220px;
  border-radius: 12px;
  border: 1px solid rgba(130, 162, 220, 0.18);
  background: linear-gradient(170deg, #1d2f54, #0f1d36);
  box-shadow: var(--shadow);
}

.s2 {
  transform: translateY(28px);
}

.infra-grid .chip {
  grid-column: span 3;
}

.security,
.final-cta {
  text-align: center;
}

.security-head {
  max-width: 760px;
  margin: 0 auto 24px;
}

.security-cards .card {
  grid-column: span 6;
  text-align: left;
}

.security-note {
  margin-top: 18px;
  color: #dce9ff;
  font-weight: 600;
}

.final-cta .btn {
  margin-top: 68px;
}

.final-cta p {
  margin-bottom: 16px;
}

.footer {
  padding: 26px 0 30px;
}

.footer-wrap {
  background: linear-gradient(145deg, rgba(18, 100, 118, 0.96), rgba(11, 76, 97, 0.94));
  border: 1px solid rgba(93, 214, 220, 0.3);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(4, 31, 40, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 30px 34px 18px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(420px, 1.2fr);
  gap: 34px;
  align-items: start;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand {
  padding: 4px;
}

.footer-brand .menu-brand-badge {
  width: 36px;
  height: 36px;
}

.footer-brand .menu-brand-icon {
  width: 30px;
  height: 30px;
}

.footer-brand .menu-brand-wordmark {
  height: 24px;
  width: auto;
}

.footer-logo-full .logo-image {
  height: 44px;
  width: auto;
}

.footer-tagline {
  margin: 0;
  max-width: 320px;
  color: rgba(227, 239, 255, 0.9);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social a {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(244, 250, 255, 0.95);
  border: 1px solid rgba(198, 220, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.46);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 24px 28px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.footer-column a {
  color: rgba(240, 248, 255, 0.92);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(198, 220, 255, 0.24);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: rgba(229, 242, 255, 0.92);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bg-glow {
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  filter: blur(55px);
  pointer-events: none;
}

.bg-glow-1 {
  width: 420px;
  height: 420px;
  left: -140px;
  top: 180px;
  background: rgba(47, 128, 237, 0.28);
}

.bg-glow-2 {
  width: 360px;
  height: 360px;
  right: -100px;
  top: 520px;
  background: rgba(39, 193, 200, 0.24);
}

main,
header,
footer {
  position: relative;
  z-index: 2;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.24s;
}
.delay-3 {
  transition-delay: 0.36s;
}

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

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

@keyframes orbitProgress {
  from {
    offset-distance: 0%;
  }
  to {
    offset-distance: 100%;
  }
}

@keyframes corePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 24px rgba(39, 193, 200, 0.75);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.14);
    box-shadow: 0 0 38px rgba(126, 217, 87, 0.88);
  }
}

@keyframes coreBreath {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 26px rgba(39, 193, 200, 0.64);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 34px rgba(126, 217, 87, 0.72);
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -3px, 0);
  }
}

@keyframes nodeTwinkle {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

@keyframes dataFlow {
  from {
    background-position: 180% 0;
  }
  to {
    background-position: -20% 0;
  }
}

@keyframes auraShift {
  from {
    transform: scale(0.98);
    opacity: 0.65;
  }
  to {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes signalPulse {
  0% {
    transform: scale(0.96);
    opacity: 0.75;
  }
  70% {
    transform: scale(1.02);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.05);
    opacity: 0;
  }
}

@keyframes streamParticle {
  from {
    left: 6%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  to {
    left: 92%;
    opacity: 0;
  }
}

@keyframes phoneDotPulse {
  0%,
  100% {
    transform: scale(1) translateY(0);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.18) translateY(-1px);
    opacity: 1;
  }
}

@keyframes travelOrbit {
  from {
    offset-distance: 0%;
  }
  to {
    offset-distance: 100%;
  }
}

@keyframes cellOrbitFlow {
  0% {
    offset-distance: 0%;
  }
  50% {
    offset-distance: 50%;
  }
  100% {
    offset-distance: 100%;
  }
}

@media (max-width: 1024px) {
  .hero-grid > *,
  .two-col > *,
  .cards-grid .card,
  .security-cards .card,
  .steps-grid .step,
  .infra-grid .chip {
    grid-column: span 12;
  }

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

  .app-mockup {
    inset: 30px 10px 0;
  }

  .nav {
    display: none;
  }

  .menu-pill {
    padding: 4px;
    gap: 6px;
  }

  .header.header-scrolled .nav-wrap {
    min-height: 52px;
    height: 52px;
    margin-top: 8px;
    padding: 0 10px;
  }

  .menu-brand {
    min-height: 40px;
    padding: 0;
  }

  .menu-brand-wordmark {
    height: 32px;
  }

  .menu-brand:hover .menu-brand-wordmark,
  .menu-brand:focus-visible .menu-brand-wordmark {
    max-width: 190px;
  }

  .menu-brand-icon {
    width: 62px;
    height: 62px;
  }

  .menu-login {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .menu-lang {
    min-width: 46px;
    height: 36px;
    font-size: 0.75rem;
    padding: 0 6px;
    gap: 5px;
  }

  .menu-lang-icon {
    width: 20px;
    height: 20px;
  }

  .menu-lang-caret {
    width: 10px;
    height: 10px;
  }

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

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

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

@media (max-width: 640px) {
  .container {
    width: min(1200px, calc(100% - 28px));
  }

  .menu-brand-wordmark {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .app-gallery {
    grid-template-columns: 1fr;
  }

  .s2 {
    transform: translateY(0);
  }

  .footer-wrap {
    padding: 24px 20px 16px;
    border-radius: 18px;
  }

  .footer-logo-full .logo-image {
    height: 36px;
  }

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