:root {
  --bg: #020b18;
  --bg-2: #03142b;
  --panel: rgba(2, 20, 43, .72);
  --panel-2: rgba(4, 30, 63, .68);
  --line: rgba(0, 224, 184, .32);
  --line-soft: rgba(98, 181, 255, .18);
  --green: #00c853;
  --green-2: #00e0b8;
  --blue: #1479ff;
  --cyan: #00b8ff;
  --white: #ffffff;
  --muted: #cdd6e3;
  --muted-2: #8da1bc;
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1440px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 74% 10%, rgba(0, 184, 255, .16), transparent 28rem),
    radial-gradient(circle at 16% 22%, rgba(0, 200, 83, .11), transparent 30rem),
    linear-gradient(135deg, #020814 0%, #04162f 44%, #010814 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    linear-gradient(rgba(0, 224, 184, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 184, 255, .035) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: radial-gradient(circle at 55% 42%, black 0%, transparent 72%);
}

body::after {
  background:
    radial-gradient(circle at 50% 105%, rgba(0, 200, 83, .13), transparent 26rem),
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .24) 100%);
  z-index: -1;
}

img,
svg { display: block; }

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

.site-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 18px auto 28px;
  position: relative;
  border: 1px solid rgba(143, 192, 255, .16);
  border-radius: 30px;
  padding: 22px 28px 24px;
  background:
    linear-gradient(180deg, rgba(4, 18, 39, .78), rgba(1, 8, 20, .92)),
    radial-gradient(circle at 55% 0%, rgba(0, 184, 255, .09), transparent 36rem);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, .02);
  overflow: hidden;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 224, 184, .55), rgba(20, 121, 255, .5), transparent);
  opacity: .55;
}

.header {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(143, 192, 255, .12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 235px;
}

.brand__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  filter: drop-shadow(0 0 16px rgba(0, 224, 184, .28));
}

.brand__copy {
  line-height: 1.1;
}

.brand__copy strong {
  display: block;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  letter-spacing: .02em;
  font-weight: 700;
}

.brand__copy small {
  display: block;
  margin-top: 5px;
  color: var(--green-2);
  letter-spacing: .08em;
  font-size: clamp(.65rem, .9vw, .76rem);
  font-weight: 700;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: .98rem;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
  isolation: isolate;
  white-space: nowrap;
}

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

.btn--small {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 13px;
  font-size: .93rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 200, 83, .24), inset 0 1px 0 rgba(255, 255, 255, .35);
  border: 1px solid rgba(146, 255, 193, .55);
}

.btn--primary:hover {
  box-shadow: 0 18px 40px rgba(0, 200, 83, .34), inset 0 1px 0 rgba(255, 255, 255, .4);
}

.btn--ghost {
  background: rgba(4, 15, 33, .58);
  border: 1px solid rgba(255, 255, 255, .5);
  color: var(--white);
  box-shadow: inset 0 0 18px rgba(0, 184, 255, .03);
}

.btn--ghost:hover {
  border-color: rgba(0, 224, 184, .64);
  background: rgba(0, 224, 184, .07);
}

.btn__icon,
.social a,
.whatsapp-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn--primary .btn__icon svg { fill: none; }

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(218, 230, 255, .48);
  color: var(--white);
  background: rgba(2, 12, 26, .4);
  transition: transform .22s ease, border-color .22s ease, color .22s ease, background .22s ease;
}

.social a:hover {
  transform: translateY(-2px);
  color: var(--green-2);
  border-color: rgba(0, 224, 184, .75);
  background: rgba(0, 224, 184, .06);
}

.social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social a:nth-child(2) svg,
.social a:nth-child(4) svg { fill: currentColor; stroke: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(430px, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(22px, 3vw, 54px);
  padding: 26px 6px 10px;
}

.hero__content { z-index: 2; }

.eyebrow {
  margin: 0 0 4px;
  color: var(--green-2);
  letter-spacing: .55em;
  font-size: clamp(.92rem, 1.5vw, 1.35rem);
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -.045em;
}

.hero h1 span {
  display: block;
  font-size: clamp(4rem, 8.5vw, 8rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 14px 36px rgba(255, 255, 255, .08);
}

.hero h1 strong {
  display: block;
  margin-top: 7px;
  font-size: clamp(2.0rem, 4.5vw, 4.5rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-2) 42%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 20px 46px rgba(0, 184, 255, .15);
}

.line-accent {
  width: min(260px, 55vw);
  height: 3px;
  margin: 22px 0 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--green-2), transparent);
  position: relative;
  box-shadow: 0 0 18px rgba(0, 224, 184, .35);
}

.line-accent::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 18px var(--green-2);
}

.hero__lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.65;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.launch-card {
  width: min(530px, 100%);
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 22px;
  padding: 18px 22px;
  border: 1px solid rgba(0, 224, 184, .46);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(3, 25, 53, .8), rgba(2, 12, 28, .56));
  box-shadow: inset 0 0 24px rgba(0, 184, 255, .04), 0 16px 38px rgba(0,0,0,.18);
}

.launch-card__icon {
  width: 62px;
  min-width: 62px;
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, .24);
  color: var(--green-2);
}

.launch-card__icon svg {
  width: 52px;
  height: 52px;
  fill: rgba(255, 255, 255, .95);
  stroke: var(--green-2);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(0, 224, 184, .36));
}

.launch-card p {
  margin: 0;
  color: var(--white);
  line-height: 1.5;
}

.launch-card strong {
  display: block;
  color: var(--green-2);
  margin-top: 3px;
  font-size: 1.06rem;
}

.hero__visual {
  min-height: 570px;
  position: relative;
}

.tech-scene {
  position: relative;
  width: 100%;
  height: 610px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.tech-scene::before {
  content: "";
  position: absolute;
  inset: 29% 0 1% 2%;
  background:
    linear-gradient(90deg, rgba(20, 121, 255, .25) 1px, transparent 1px),
    linear-gradient(rgba(0, 224, 184, .2) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: rotateX(66deg) rotateZ(-9deg);
  transform-origin: center;
  opacity: .55;
  filter: drop-shadow(0 0 20px rgba(20, 121, 255, .22));
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.tech-scene::after {
  content: "";
  position: absolute;
  inset: 8% 2% 9% 0;
  background: radial-gradient(ellipse at 54% 52%, rgba(20, 121, 255, .25), transparent 45%);
  opacity: .9;
}

.circuit {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--green-2), transparent);
  opacity: .5;
}

.circuit::before,
.circuit::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 18px var(--green-2);
}

.circuit::before { left: 20%; }
.circuit::after { right: 18%; }
.circuit--one { width: 260px; left: 10%; bottom: 22%; transform: rotate(-12deg); }
.circuit--two { width: 210px; right: 7%; bottom: 40%; transform: rotate(16deg); }

.cloud-upload {
  position: absolute;
  left: 13%;
  top: 7%;
  width: 138px;
  color: var(--cyan);
  filter: drop-shadow(0 0 16px rgba(20, 121, 255, .65));
  animation: floaty 4.5s ease-in-out infinite;
  z-index: 5;
}

.cloud-upload svg {
  fill: rgba(20, 121, 255, .2);
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.server-stack {
  position: absolute;
  left: 7%;
  top: 24%;
  width: 132px;
  z-index: 4;
  transform: skewY(-7deg);
}

.server-stack span {
  display: block;
  height: 46px;
  margin-bottom: 10px;
  border: 1px solid rgba(20, 121, 255, .56);
  border-radius: 9px;
  background: linear-gradient(135deg, #0a2a56, #020b18 65%);
  box-shadow: inset 0 0 18px rgba(0, 184, 255, .12), 0 18px 32px rgba(0,0,0,.25);
  position: relative;
}

.server-stack span::before,
.server-stack span::after {
  content: "";
  position: absolute;
  top: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 12px var(--green-2);
}

.server-stack span::before { left: 18px; }
.server-stack span::after { left: 36px; background: var(--blue); box-shadow: 0 0 12px var(--blue); }

.monitor {
  position: absolute;
  right: 12%;
  top: 8%;
  width: min(480px, 61%);
  z-index: 3;
  transform: rotateY(-12deg) rotateX(2deg);
}

.monitor::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(102, 181, 255, .7), rgba(0, 224, 184, .25));
  z-index: -1;
  filter: blur(.4px);
}

.monitor__screen {
  height: 295px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  border: 10px solid #8fb6e6;
  border-bottom-width: 16px;
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 224, 184, .13), transparent 18rem),
    linear-gradient(135deg, #030b18 0%, #061b37 100%);
  box-shadow: 0 28px 60px rgba(0,0,0,.42), inset 0 0 32px rgba(0,184,255,.09);
  overflow: hidden;
}

.monitor__screen img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 18px rgba(0, 224, 184, .34));
}

.monitor__screen strong { letter-spacing: .04em; font-size: 1.28rem; }
.monitor__screen small { color: var(--muted); margin: 9px 0 12px; }
.monitor__screen em {
  color: var(--green-2);
  font-weight: 800;
  font-style: normal;
  transform: translate(185px, -15px);
}

.progress {
  width: 64%;
  height: 14px;
  border-radius: 999px;
  background: rgba(20, 121, 255, .22);
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0,0,0,.45);
}

.progress i {
  display: block;
  height: 100%;
  width: 75%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--green-2), var(--cyan));
  box-shadow: 0 0 20px rgba(0, 224, 184, .45);
  animation: progressGlow 2.8s ease-in-out infinite;
}

.monitor__stand {
  width: 34%;
  height: 60px;
  margin: -2px auto 0;
  background: linear-gradient(180deg, #8fb6e6, #315c93);
  clip-path: polygon(34% 0, 66% 0, 78% 100%, 22% 100%);
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.35));
}

.laptop {
  position: absolute;
  left: 23%;
  bottom: 12%;
  width: 285px;
  z-index: 6;
  transform: rotateZ(-7deg) rotateX(2deg);
}

.laptop__screen {
  height: 154px;
  border: 8px solid #83a8d5;
  border-radius: 15px 15px 5px 5px;
  background: #030a15;
  padding: 24px 22px;
  box-shadow: inset 0 0 24px rgba(20, 121, 255, .14), 0 24px 36px rgba(0,0,0,.35);
}

.laptop__screen span {
  display: block;
  height: 5px;
  margin-bottom: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, .65), var(--green-2));
}

.laptop__screen span:nth-child(2) { width: 68%; }
.laptop__screen span:nth-child(3) { width: 82%; }
.laptop__screen span:nth-child(4) { width: 58%; }
.laptop__screen span:nth-child(5) { width: 72%; }

.laptop__base {
  height: 34px;
  background: linear-gradient(135deg, #b6d4f5, #406ea2);
  border-radius: 0 0 22px 22px;
  transform: perspective(240px) rotateX(38deg);
  transform-origin: top;
  box-shadow: 0 24px 32px rgba(0,0,0,.38);
}

.phone {
  position: absolute;
  right: 3.5%;
  bottom: 16%;
  width: 104px;
  height: 250px;
  padding: 22px 13px;
  border: 5px solid #82aee3;
  border-radius: 25px;
  background: linear-gradient(180deg, #05234d, #020917);
  color: var(--cyan);
  z-index: 7;
  box-shadow: 0 25px 45px rgba(0,0,0,.42), inset 0 0 28px rgba(20,121,255,.18);
}

.phone__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 36px;
  height: 5px;
  border-radius: 99px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .35);
}

.phone svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.crane {
  position: absolute;
  top: 1%;
  right: 0;
  width: 325px;
  height: 245px;
  color: var(--green-2);
  z-index: 4;
}

.crane__mast,
.crane__arm {
  position: absolute;
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(0,0,0,.35) 13px 16px),
    linear-gradient(90deg, rgba(0, 200, 83, .9), rgba(0, 224, 184, .65));
  box-shadow: 0 0 18px rgba(0, 224, 184, .32);
}

.crane__mast {
  right: 72px;
  top: 48px;
  width: 24px;
  height: 170px;
  transform: skewX(-6deg);
}

.crane__arm {
  right: 18px;
  top: 36px;
  width: 270px;
  height: 24px;
  transform: rotate(8deg);
}

.crane__cable {
  position: absolute;
  right: 155px;
  top: 62px;
  height: 104px;
  width: 2px;
  background: rgba(116, 207, 255, .82);
}

.code-sign {
  position: absolute;
  top: 154px;
  right: 112px;
  width: 92px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 184, 255, .68);
  border-radius: 14px;
  background: rgba(2, 18, 41, .8);
  color: var(--cyan);
  font-size: 1.9rem;
  font-weight: 800;
  box-shadow: 0 0 22px rgba(20, 121, 255, .35), inset 0 0 20px rgba(20, 121, 255, .12);
}

.shield-lock {
  position: absolute;
  right: 1%;
  bottom: 5%;
  width: 86px;
  color: var(--green-2);
  z-index: 6;
  filter: drop-shadow(0 0 15px rgba(0, 224, 184, .42));
}

.shield-lock svg {
  width: 100%;
  fill: rgba(0, 200, 83, .24);
  stroke: currentColor;
  stroke-width: 3;
  stroke-linejoin: round;
}

.gear {
  position: absolute;
  bottom: 7%;
  left: 54%;
  z-index: 7;
  color: #95beef;
  font-size: 92px;
  line-height: 1;
  filter: drop-shadow(0 16px 20px rgba(0,0,0,.32));
  animation: spinSlow 22s linear infinite;
}

.section {
  margin-top: 16px;
  position: relative;
  z-index: 4;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 4px 0 12px;
  text-align: center;
}

.section-title span {
  width: min(180px, 20vw);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--green-2));
}

.section-title span:last-child { background: linear-gradient(90deg, var(--green-2), transparent); }

.section-title h2 {
  margin: 0;
  color: var(--green-2);
  letter-spacing: .28em;
  font-size: clamp(.78rem, 1.1vw, 1rem);
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid rgba(143, 192, 255, .25);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(2, 14, 31, .68);
  box-shadow: inset 0 0 30px rgba(0, 184, 255, .04);
}

.service-card {
  min-height: 104px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border-right: 1px solid rgba(143, 192, 255, .2);
}

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

.service-card svg,
.contact-item svg,
.value-card svg {
  width: 52px;
  height: 52px;
  color: var(--green-2);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(0, 224, 184, .24));
}

.service-card:nth-child(2n) svg { color: var(--cyan); }
.service-card h3 {
  margin: 0;
  color: var(--white);
  font-size: .96rem;
  line-height: 1.34;
  font-weight: 500;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(0, 224, 184, .48);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(2, 25, 55, .8), rgba(2, 10, 25, .62));
  box-shadow: inset 0 0 22px rgba(0, 184, 255, .04);
  overflow: hidden;
}

.contact-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 34px;
  position: relative;
  min-height: 92px;
}

.contact-item + .contact-item { border-left: 1px solid rgba(143, 192, 255, .24); }

.contact-item::after {
  content: "›";
  display: none;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 2rem;
}

.contact-item strong {
  display: block;
  color: var(--green-2);
  letter-spacing: .14em;
  font-size: .8rem;
  margin-bottom: 3px;
}

.contact-item em {
  display: block;
  color: var(--white);
  font-style: normal;
  line-height: 1.35;
}

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

.value-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 20px 22px;
  border: 1px solid rgba(143, 192, 255, .23);
  border-radius: 14px;
  background: rgba(2, 15, 33, .68);
  box-shadow: inset 0 0 28px rgba(0, 184, 255, .035);
}

.value-card h3 {
  margin: 0 0 7px;
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.22;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.45;
}

.footer {
  padding: 18px 0 0;
  text-align: center;
  color: rgba(255,255,255,.8);
}

.footer .social { margin-bottom: 10px; }
.footer p { margin: 0; font-size: .9rem; }

.whatsapp-float {
  position: fixed;
  right: max(24px, calc((100vw - var(--max)) / 2 + 8px));
  bottom: 24px;
  z-index: 20;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  border: 1px solid rgba(255,255,255,.42);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(0, 200, 83, .08), 0 18px 38px rgba(0, 200, 83, .38);
  animation: pulse 2.6s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

@keyframes progressGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.25); }
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 200, 83, .08), 0 18px 38px rgba(0, 200, 83, .38); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 16px rgba(0, 200, 83, .05), 0 20px 44px rgba(0, 200, 83, .46); }
}

@media (max-width: 1180px) {
  .site-shell { padding: 20px 24px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 26px;
  }
  .hero__visual {
    min-height: 500px;
    margin-top: -22px;
  }
  .tech-scene {
    max-width: 860px;
    height: 520px;
    margin: 0 auto;
  }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card:nth-child(3n) { border-right: 0; }
  .service-card:nth-child(n+4) { border-top: 1px solid rgba(143, 192, 255, .2); }
  .contact-strip { grid-template-columns: 1fr; }
  .contact-item + .contact-item { border-left: 0; border-top: 1px solid rgba(143, 192, 255, .22); }
  .values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .site-shell {
    width: 100%;
    margin: 0;
    padding: 18px 18px 24px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
  .header {
    height: auto;
    align-items: flex-start;
  }
  .brand { gap: 10px; min-width: unset; }
  .brand__icon { width: 46px; height: 46px; border-radius: 12px; }
  .brand__copy strong { font-size: 1.25rem; }
  .brand__copy small { font-size: .58rem; letter-spacing: .06em; }
  .social--top { display: none; }
  .header .btn {
    width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 14px;
  }
  .header .btn::after { content: ""; }
  .header .btn { font-size: 0; gap: 0; }
  .header .btn__icon svg { width: 28px; height: 28px; }

  .hero {
    padding-top: 28px;
    gap: 0;
  }
  .eyebrow { font-size: 1rem; letter-spacing: .45em; }
  .hero h1 span { font-size: clamp(3.8rem, 17vw, 5.7rem); }
  .hero h1 strong { font-size: clamp(2.4rem, 12vw, 4.2rem); }
  .hero__lead { font-size: .98rem; line-height: 1.62; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn { width: 100%; min-height: 54px; }
  .launch-card { padding: 16px; gap: 16px; }
  .launch-card__icon { width: 54px; min-width: 54px; padding-right: 14px; }
  .launch-card__icon svg { width: 46px; height: 46px; }

  .hero__visual {
    min-height: 420px;
    margin-top: -8px;
    overflow: hidden;
  }
  .tech-scene {
    width: 720px;
    height: 440px;
    left: 50%;
    transform: translateX(-50%) scale(.83);
    transform-origin: top center;
  }

  .section-title { gap: 12px; }
  .section-title h2 { letter-spacing: .18em; font-size: .82rem; }
  .section-title span { width: 58px; }

  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border: 0;
    background: transparent;
    overflow: visible;
  }
  .service-card {
    grid-template-columns: 50px 1fr;
    min-height: 96px;
    padding: 14px;
    border: 1px solid rgba(143, 192, 255, .2) !important;
    border-radius: 13px;
    background: rgba(2, 14, 31, .68);
  }
  .service-card svg { width: 46px; height: 46px; }
  .service-card h3 { font-size: .86rem; }

  .contact-item {
    grid-template-columns: 48px 1fr;
    padding: 16px 48px 16px 18px;
    min-height: 88px;
  }
  .contact-item svg { width: 44px; height: 44px; }
  .contact-item::after { display: block; }

  .values {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(143, 192, 255, .23);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(2, 14, 31, .68);
  }
  .value-card {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 16px 10px;
    gap: 10px;
    border: 0;
    border-right: 1px solid rgba(143, 192, 255, .2);
    border-radius: 0;
    background: transparent;
  }
  .value-card:last-child { border-right: 0; }
  .value-card svg { width: 44px; height: 44px; }
  .value-card h3 { font-size: .82rem; }
  .value-card p { display: none; }
  .footer { padding-bottom: 8px; }
  .whatsapp-float { width: 64px; height: 64px; right: 18px; bottom: 18px; }
}

@media (max-width: 520px) {
  .site-shell { padding: 16px 14px 24px; }
  .brand__copy strong { font-size: 1rem; }
  .brand__copy small { font-size: .46rem; }
  .brand__icon { width: 42px; height: 42px; }
  .eyebrow { letter-spacing: .38em; }
  .line-accent { margin: 16px 0 18px; }
  .hero__visual { min-height: 350px; }
  .tech-scene { transform: translateX(-50%) scale(.67); }
  .service-grid { gap: 10px; }
  .service-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    min-height: 130px;
  }
  .contact-item em { font-size: .9rem; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .value-card { border-bottom: 1px solid rgba(143, 192, 255, .2); }
  .value-card:nth-child(2n) { border-right: 0; }
  .value-card:nth-last-child(-n+2) { border-bottom: 0; }
  .footer p { font-size: .78rem; padding: 0 54px; }
}

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

.js .hero__content,
.js .hero__visual,
.js .service-card,
.js .contact-item,
.js .value-card {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease var(--reveal-delay, 0ms), transform .55s ease var(--reveal-delay, 0ms);
}

.js .hero__content.is-visible,
.js .hero__visual.is-visible,
.js .service-card.is-visible,
.js .contact-item.is-visible,
.js .value-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
