:root {
  --ink: #f8fafc;
  --muted: rgba(248, 250, 252, 0.72);
  --deep: #07111d;
  --panel: rgba(8, 17, 31, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #15d1ff;
  --mint: #46f0a6;
  --yellow: #f7c948;
  --coral: #f45b69;
  --radius: 8px;
  --border-angle: 0deg;
}

@property --border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(21, 209, 255, 0.16), transparent 26rem),
    radial-gradient(circle at 86% 18%, rgba(244, 91, 105, 0.14), transparent 24rem),
    var(--deep);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::selection {
  color: #061019;
  background: var(--mint);
}

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

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: 104px;
  padding: 10px 14px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: #001835;
  backdrop-filter: none;
  transform: translateX(-50%);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  overflow: hidden;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.14);
  background: #001835;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-repeat: repeat;
}

.site-header::before {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(70, 240, 166, 0.76) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(21, 209, 255, 0.72) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(255, 255, 255, 0.74) 0 0.8px, transparent 1.6px),
    radial-gradient(circle, rgba(70, 240, 166, 0.62) 0 0.8px, transparent 1.6px);
  background-position: 18px 18px, 92px 48px, 166px 28px, 42px 68px, 238px 14px;
  background-size: 122px 62px, 148px 72px, 176px 68px, 202px 82px, 236px 74px;
  opacity: 0.38;
  animation: headerStarsTwinkle 3.4s steps(1, end) infinite;
}

.site-header::after {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.88) 0 1.2px, transparent 2px),
    radial-gradient(circle, rgba(70, 240, 166, 0.68) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(21, 209, 255, 0.62) 0 0.9px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 0.8px, transparent 1.6px);
  background-position: 66px 62px, 146px 17px, 282px 57px, 356px 26px;
  background-size: 132px 76px, 184px 66px, 228px 88px, 272px 70px;
  opacity: 0.24;
  filter: drop-shadow(0 0 5px rgba(70, 240, 166, 0.45));
  animation: headerStarsTwinkleAlt 4.2s steps(1, end) infinite;
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand video {
  width: 342px;
  height: 84px;
  object-fit: contain;
  background: #001835;
  image-rendering: auto;
}

.brand-name {
  display: none;
  width: fit-content;
  background: linear-gradient(100deg, #ffffff 0%, var(--mint) 36%, var(--cyan) 72%, #ffffff 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: none;
  text-shadow: 0 0 18px rgba(70, 240, 166, 0.18);
  animation: titleSheen 7s ease-in-out infinite;
}

.nav-links {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.76);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
}

.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 20%, rgba(70, 240, 166, 0.22), transparent 42%),
    linear-gradient(135deg, rgba(21, 209, 255, 0.16), rgba(70, 240, 166, 0.1));
  opacity: 0;
  transition: opacity 180ms ease;
}

.nav-links svg,
.nav-links span {
  position: relative;
  z-index: 1;
}

.nav-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  opacity: 0.8;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-links a,
.header-action,
.primary-action,
.secondary-action,
.contact-actions a {
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: #ffffff;
  border-color: rgba(70, 240, 166, 0.24);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.nav-links a:hover::before,
.nav-links a.is-active::before {
  opacity: 1;
}

.nav-links a:hover svg,
.nav-links a.is-active svg {
  opacity: 1;
  transform: translateY(-1px) scale(1.04);
}

.nav-links a.is-active {
  color: #ffffff;
  border-color: rgba(70, 240, 166, 0.3);
  background: rgba(70, 240, 166, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.18);
}

.header-action,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
}

.header-action,
.scroll-top-action {
  z-index: 1;
}

.header-action svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.scroll-top-action {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(70, 240, 166, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  opacity: 0;
  transform: translateY(4px) scale(0.94);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.scroll-top-action svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.scroll-top-action.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-top-action:hover {
  border-color: rgba(70, 240, 166, 0.54);
  background: rgba(70, 240, 166, 0.16);
}

.primary-action svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
  transition: transform 180ms ease;
}

.primary-action:hover svg {
  transform: translateY(-1px) scale(1.06);
}

.header-action,
.primary-action {
  color: #05111c;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  box-shadow: 0 12px 34px rgba(21, 209, 255, 0.22);
}

.header-action {
  position: relative;
  isolation: isolate;
  border: 0;
  background:
    linear-gradient(135deg, var(--cyan), var(--mint)) padding-box,
    conic-gradient(from var(--border-angle), var(--cyan), var(--mint), #ffffff, var(--mint), var(--cyan)) border-box;
  border: 2px solid transparent;
  color: #04130a;
  box-shadow: 0 10px 28px rgba(18, 183, 90, 0.18);
  animation: whatsappBorderSpin 2.6s linear infinite, whatsappBorderBreath 1.8s ease-in-out infinite;
}

.header-action::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(37, 211, 102, 0.22);
  filter: blur(12px);
  opacity: 0.38;
  animation: whatsappAura 1.8s ease-in-out infinite;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.header-action:hover,
.primary-action:hover,
.secondary-action:hover,
.contact-actions a:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: 130px max(24px, calc((100vw - 1120px) / 2)) 46px;
}

.hero-canvas,
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-canvas {
  width: 100%;
  height: 100%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 17, 29, 0.92), rgba(7, 17, 29, 0.32) 58%, rgba(7, 17, 29, 0.88)),
    linear-gradient(0deg, rgba(7, 17, 29, 0.96), rgba(7, 17, 29, 0.08) 36%, rgba(7, 17, 29, 0.5));
}

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

.hero-grid span {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  animation: gridPulse 4s ease-in-out infinite;
  animation-delay: calc(var(--i, 1) * 120ms);
}

.hero-content {
  max-width: 850px;
  padding-bottom: clamp(34px, 7vh, 88px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(3.4rem, 11vw, 9rem);
  line-height: 0.9;
  font-weight: 900;
  text-wrap: balance;
  letter-spacing: 0;
}

.hero-title {
  display: grid;
  gap: 0.04em;
}

.hero-title span {
  display: block;
}

.hero-title span:first-child {
  width: fit-content;
  background: linear-gradient(100deg, #ffffff 0%, var(--mint) 36%, var(--cyan) 72%, #ffffff 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 44px rgba(21, 209, 255, 0.18);
  animation: titleSheen 7s ease-in-out infinite;
}

.hero-title span:last-child {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.46em;
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.36);
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.product-orbit {
  align-self: center;
  display: grid;
  gap: 14px;
  width: min(360px, 100%);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(5, 13, 24, 0.58);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}

.orbit-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.06);
  overflow: hidden;
  animation: orbitFloat 4.8s ease-in-out infinite;
}

.orbit-card:nth-child(2) {
  animation-delay: -1.2s;
}

.orbit-card:nth-child(3) {
  animation-delay: -2.4s;
}

.orbit-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -52% 30%;
  height: 80%;
  background: rgba(21, 209, 255, 0.26);
  filter: blur(34px);
}

.orbit-card-coral::after {
  background: rgba(244, 91, 105, 0.26);
}

.orbit-card-mint::after {
  background: rgba(70, 240, 166, 0.24);
}

.orbit-card img {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  object-fit: contain;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.34));
}

.orbit-card span {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 900;
}

.signal-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) minmax(360px, 1.5fr) minmax(180px, 0.85fr);
  gap: 12px;
  width: 100%;
  max-width: 980px;
  border-radius: var(--radius);
}

.signal-panel div {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  column-gap: 14px;
  min-height: 122px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 20%, rgba(70, 240, 166, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(4, 10, 18, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 58px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.signal-panel div::after {
  content: "";
  position: absolute;
  inset: auto -24% -46% 26%;
  height: 72%;
  background: rgba(21, 209, 255, 0.16);
  filter: blur(34px);
}

.signal-panel div:hover {
  border-color: rgba(70, 240, 166, 0.34);
  transform: translateY(-4px);
}

.signal-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0;
  color: var(--mint);
}

.signal-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.signal-panel strong {
  display: block;
  position: relative;
  z-index: 1;
  font-size: clamp(1.48rem, 3vw, 2.5rem);
  line-height: 1;
}

.signal-panel span {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.signal-panel .signal-icon {
  margin-top: 0;
}

.apps-section,
.team-section,
.contact-section {
  padding: clamp(76px, 10vw, 132px) max(24px, calc((100vw - 1120px) / 2));
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 0.7fr;
  gap: 28px;
  padding: 54px max(24px, calc((100vw - 1120px) / 2)) 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(7, 17, 29, 0.98), #03070d),
    radial-gradient(circle at 18% 8%, rgba(21, 209, 255, 0.18), transparent 30%),
    radial-gradient(circle at 84% 20%, rgba(247, 201, 72, 0.16), transparent 28%);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, black, transparent);
  opacity: 0.36;
}

.site-footer > * {
  position: relative;
}

.footer-brand img {
  width: 270px;
  max-height: 86px;
  object-fit: contain;
  border-radius: var(--radius);
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  align-self: start;
  gap: 10px;
  min-height: 44px;
  width: fit-content;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-social:hover {
  color: white;
  border-color: rgba(70, 240, 166, 0.36);
  background: rgba(70, 240, 166, 0.1);
  transform: translateY(-2px);
}

.footer-rights {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
  font-weight: 700;
}

.apps-section {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, #07111d, #0f1c18 44%, #140c16 76%, #07111d),
    radial-gradient(circle at 20% 20%, rgba(21, 209, 255, 0.2), transparent 34%),
    radial-gradient(circle at 78% 58%, rgba(247, 201, 72, 0.14), transparent 32%);
}

.apps-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 78%, transparent);
  opacity: 0.32;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 5.4rem);
  line-height: 0.98;
  text-wrap: balance;
}

.app-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.app-card,
.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.app-card {
  position: relative;
  min-height: 470px;
  padding: 24px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.app-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 30%), rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(21, 209, 255, 0.14), transparent 36%),
    linear-gradient(315deg, rgba(244, 91, 105, 0.14), transparent 34%);
  opacity: 0.72;
  transition: opacity 240ms ease;
}

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

.app-card:hover {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

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

.app-glow {
  position: absolute;
  inset: auto -32% -34% 20%;
  height: 56%;
  background: rgba(21, 209, 255, 0.22);
  filter: blur(44px);
  transform: translateZ(0);
}

.app-card-coral .app-glow {
  background: rgba(244, 91, 105, 0.25);
}

.app-card-mint .app-glow {
  background: rgba(70, 240, 166, 0.22);
}

.app-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  font-weight: 800;
}

.app-card h3 {
  margin: 28px 0 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.app-logo-wrap {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 164px;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(4, 10, 18, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateZ(36px);
}

.app-logo-wrap img {
  width: min(220px, 72%);
  max-height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.34));
}

.app-logo-wrap span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.app-card p {
  color: var(--muted);
  line-height: 1.66;
}

.app-card .app-tagline {
  margin-top: 20px;
  color: white;
  font-weight: 800;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.feature-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
}

.motion-band {
  display: flex;
  gap: 24px;
  overflow: hidden;
  padding: 22px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(90deg, #25d366, var(--mint), #11b75a);
  color: #04130a;
  font-size: clamp(1.45rem, 4vw, 3.6rem);
  font-weight: 900;
  text-transform: uppercase;
}

.marquee-track {
  display: flex;
  flex: 0 0 auto;
  gap: 24px;
  min-width: 100%;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
}

.team-section {
  background:
    linear-gradient(180deg, #07111d, #0a131f),
    radial-gradient(circle at 12% 10%, rgba(247, 201, 72, 0.16), transparent 28%);
}

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

.team-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: end;
  min-height: 260px;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease;
}

.team-card:hover {
  border-color: rgba(247, 201, 72, 0.42);
  transform: translateY(-6px);
}

.team-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.05);
}

.team-card-larissa img {
  object-position: 32% center;
}

.team-card div {
  padding: 28px;
}

.team-card h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1;
}

.team-card p {
  margin: 12px 0 0;
  color: var(--yellow);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 68vh;
  background:
    linear-gradient(180deg, #07111d, rgba(244, 91, 105, 0.18)),
    radial-gradient(circle at 20% 80%, rgba(70, 240, 166, 0.22), transparent 26%),
    linear-gradient(120deg, rgba(21, 209, 255, 0.12), transparent 42%);
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.7;
}

.contact-actions {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(4, 10, 18, 0.52);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.contact-actions::before {
  content: "";
  position: absolute;
  inset: -35% -20% auto 35%;
  height: 72%;
  background: rgba(70, 240, 166, 0.18);
  filter: blur(42px);
}

.contact-card,
.contact-note {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  color: white;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-card:hover {
  border-color: rgba(70, 240, 166, 0.34);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-3px);
}

.contact-card-primary {
  background:
    linear-gradient(135deg, rgba(21, 209, 255, 0.18), rgba(70, 240, 166, 0.16)),
    rgba(255, 255, 255, 0.08);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  color: #04130a;
}

.contact-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.contact-card small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(0.98rem, 1.6vw, 1.18rem);
  line-height: 1.25;
}

.contact-note {
  grid-template-columns: 1fr;
  min-height: auto;
}

.contact-note strong {
  color: var(--mint);
  font-size: 1rem;
}

.contact-note span {
  color: var(--muted);
  line-height: 1.55;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.85, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 24px));
  }
}

@keyframes gridPulse {
  0%,
  100% {
    background: rgba(255, 255, 255, 0.01);
  }
  50% {
    background: rgba(21, 209, 255, 0.055);
  }
}

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

@keyframes whatsappBorderSpin {
  to {
    --border-angle: 360deg;
  }
}

@keyframes whatsappBorderBreath {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(18, 183, 90, 0.18);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 14px 38px rgba(18, 183, 90, 0.34);
    transform: translateY(-1px);
  }
}

@keyframes whatsappAura {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

@keyframes titleSheen {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes headerStarsTwinkle {
  0% {
    opacity: 0.18;
    filter: brightness(0.75);
  }
  18% {
    opacity: 0.5;
    filter: brightness(1.55);
  }
  37% {
    opacity: 0.28;
    filter: brightness(0.95);
  }
  58% {
    opacity: 0.56;
    filter: brightness(1.75);
  }
  82% {
    opacity: 0.36;
    filter: brightness(1.05);
  }
  100% {
    opacity: 0.18;
    filter: brightness(0.75);
  }
}

@keyframes headerStarsTwinkleAlt {
  0% {
    opacity: 0.34;
    filter: brightness(1.15);
  }
  21% {
    opacity: 0.12;
    filter: brightness(0.7);
  }
  46% {
    opacity: 0.42;
    filter: brightness(1.55);
  }
  69% {
    opacity: 0.2;
    filter: brightness(0.9);
  }
  100% {
    opacity: 0.34;
    filter: brightness(1.15);
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .nav-links {
    display: none;
  }

  .brand video {
    width: 196px;
    height: 62px;
    transition: width 220ms ease, height 220ms ease;
  }

  .brand-name {
    display: block;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateX(-8px);
    transition: max-width 240ms ease, opacity 180ms ease, transform 240ms ease;
    white-space: nowrap;
  }

  .site-header.is-scrolled .brand video {
    width: 72px;
    height: 52px;
  }

  .site-header.is-scrolled .brand-name {
    max-width: 172px;
    opacity: 1;
    transform: translateX(0);
  }

  .scroll-top-action {
    display: grid;
    pointer-events: none;
  }

  .scroll-top-action.is-visible {
    pointer-events: auto;
  }

  .hero {
    min-height: 96vh;
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 5.7rem);
  }

  .signal-panel,
  .app-showcase,
  .team-grid,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .signal-panel {
    grid-column: auto;
    max-width: none;
  }

  .product-orbit {
    order: 3;
    width: 100%;
  }

  .signal-panel div {
    min-height: 86px;
  }

  .signal-panel span {
    white-space: normal;
  }

  .app-card {
    min-height: 390px;
  }

  .team-card {
    grid-template-columns: 130px 1fr;
  }

  .team-card-larissa img {
    object-position: center center;
  }

  .team-card-bruno img {
    object-position: center top;
  }

  .site-footer {
    text-align: center;
    justify-items: center;
  }

  .footer-brand,
  .footer-links {
    justify-items: center;
    text-align: center;
  }

  .footer-brand img {
    margin-inline: auto;
  }

  .footer-brand p {
    margin-inline: auto;
  }

  .footer-links a {
    justify-content: center;
  }

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

  .footer-social {
    justify-self: center;
  }

  .footer-rights {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 8px;
  }

  .brand {
    gap: 9px;
  }

  .brand video {
    width: 178px;
    height: 58px;
  }

  .site-header.is-scrolled .brand video {
    width: 56px;
    height: 46px;
  }

  .site-header.is-scrolled .brand-name {
    max-width: 126px;
    font-size: 0.72rem;
    white-space: normal;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .hero-actions {
    display: grid;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-card img {
    height: 340px;
  }

  .team-card-bruno img {
    height: 390px;
    object-position: center 12%;
  }

  .team-card-larissa img {
    height: 430px;
    object-position: center top;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
