:root {
  --blue: #1768f2;
  --blue-bright: #2878ff;
  --dark: #05070a;
  --ink: #10141b;
  --muted: #647080;
  --line: rgba(9, 22, 42, 0.1);
  --pale-blue: #edf5ff;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #fbfdff;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
}

.noise {
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.ambient {
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.ambient-one {
  top: 7%;
  right: -10%;
  width: 430px;
  height: 430px;
  background: rgba(23, 104, 242, 0.14);
}

.ambient-two {
  bottom: 4%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: rgba(45, 151, 255, 0.08);
}

.site-header,
main,
footer {
  width: min(1420px, calc(100% - 96px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 102px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: block;
  width: 130px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.header-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.header-link:hover {
  color: var(--blue);
}

.header-link-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(23, 104, 242, 0.1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(580px, 1fr) minmax(470px, 0.85fr);
  align-items: center;
  gap: 24px;
  min-height: 670px;
  padding: 66px 0 76px;
}

.eyebrow,
.section-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
}

.pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.pulse::after {
  position: absolute;
  content: "";
  inset: -6px;
  border: 1px solid var(--blue);
  border-radius: inherit;
  animation: pulse 1.8s infinite;
}

h1,
h2 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: -0.075em;
}

h1 {
  max-width: 810px;
  padding: 27px 0 24px;
  color: var(--dark);
  font-size: clamp(70px, 6.1vw, 102px);
  font-weight: 800;
  line-height: 0.97;
}

.blue {
  color: var(--blue);
}

.outline {
  color: transparent;
  -webkit-text-stroke: 1.8px var(--dark);
}

.hero-text {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 31px;
  padding-top: 34px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 8px 9px 8px 22px;
  border-radius: 30px;
  background: var(--blue);
  box-shadow: 0 10px 30px rgba(23, 104, 242, 0.22);
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

.primary-button:hover {
  background: #0959e3;
  box-shadow: 0 16px 35px rgba(23, 104, 242, 0.3);
  transform: translateY(-3px);
}

.button-arrow {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--blue);
  font-size: 17px;
}

.text-button {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-button span {
  color: var(--blue);
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.social-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 8px;
  border: 1px solid rgba(23, 104, 242, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  color: #46556a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.social-button:hover {
  border-color: rgba(23, 104, 242, 0.45);
  color: var(--blue);
  transform: translateY(-2px);
}

.social-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
}

.social-icon svg {
  width: 13px;
  height: 13px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-icon .icon-fill {
  fill: currentColor;
  stroke: none;
}

.whatsapp-button .social-icon {
  background: #22a559;
}

.floating-whatsapp {
  position: fixed;
  z-index: 5;
  right: 24px;
  bottom: 18px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: #22a559;
  box-shadow: 0 13px 30px rgba(20, 130, 73, 0.3);
  color: white;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.floating-whatsapp:hover {
  box-shadow: 0 17px 35px rgba(20, 130, 73, 0.4);
  transform: translateY(-4px);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.floating-whatsapp .icon-fill {
  fill: currentColor;
  stroke: none;
}

.proof {
  display: flex;
  align-items: center;
  gap: 23px;
  padding-top: 62px;
}

.proof-stat {
  display: grid;
  gap: 5px;
}

.proof-stat strong {
  color: var(--dark);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 25px;
  letter-spacing: -0.06em;
}

.proof-stat span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-line {
  width: 1px;
  height: 36px;
  background: var(--line);
}

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

.radar {
  position: relative;
  width: min(43vw, 590px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 104, 242, 0.08), rgba(23, 104, 242, 0.02) 48%, transparent 65%);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(23, 104, 242, 0.16);
  border-radius: 50%;
}

.orbit-one {
  inset: 6%;
}

.orbit-two {
  inset: 20%;
  border-style: dashed;
  animation: spin 35s linear infinite;
}

.orbit-three {
  inset: 33%;
}

.radar-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42%;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(23, 104, 242, 0.45), transparent);
  animation: radar 7s linear infinite;
}

.service-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(23, 104, 242, 0.15);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 7px 25px rgba(25, 63, 119, 0.08);
  color: #3c4a60;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  animation: float 4.5s ease-in-out infinite;
}

.service-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.service-one { top: 10%; left: 30%; }
.service-two { top: 24%; right: -3%; animation-delay: -1.6s; }
.service-three { right: 2%; bottom: 20%; animation-delay: -0.8s; }
.service-four { bottom: 7%; left: 32%; animation-delay: -2.4s; }
.service-five { bottom: 24%; left: -1%; animation-delay: -1.2s; }
.service-six { top: 28%; left: 0%; animation-delay: -3.1s; }

.core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 164px;
  height: 164px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(23, 104, 242, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 50px rgba(23, 104, 242, 0.15);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
}

.core-glow {
  position: absolute;
  inset: -13px;
  z-index: -1;
  border: 1px solid rgba(23, 104, 242, 0.1);
  border-radius: 50%;
  animation: pulse-ring 2.8s ease-out infinite;
}

.core-logo {
  width: 89px;
  padding: 10px 8px 8px;
  border-radius: 7px;
  background: white;
  box-shadow: 0 8px 25px rgba(16, 43, 84, 0.08);
}

.core-logo img {
  display: block;
  width: 100%;
}

.core > span {
  padding-top: 12px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.core-loader {
  display: flex;
  gap: 3px;
  padding-top: 7px;
}

.core-loader b {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 1s infinite alternate;
}

.core-loader b:nth-child(2) { animation-delay: 0.3s; }
.core-loader b:nth-child(3) { animation-delay: 0.6s; }

.service-strip {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.strip-label {
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  height: 72px;
  background: #fbfdff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.strip-label i {
  width: 32px;
  height: 1px;
  background: var(--blue);
}

.marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 45s linear infinite;
}

.marquee-track span {
  padding-inline: 21px;
  color: #5a6370;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.marquee-track b {
  color: var(--blue);
}

.launch-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 50px;
  padding: 96px 0 90px;
}

.section-kicker {
  margin: 0 0 15px;
}

h2 {
  font-size: clamp(44px, 4.1vw, 67px);
  line-height: 1.05;
}

h2 span {
  color: var(--blue);
}

.countdown-wrap {
  justify-self: end;
}

.countdown-wrap p {
  margin: 0 0 19px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.countdown div {
  display: grid;
  min-width: 70px;
  gap: 4px;
}

.countdown strong {
  color: var(--dark);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 54px;
  letter-spacing: -0.1em;
  line-height: 1;
}

.countdown span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.countdown i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 94px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-brand {
  width: 87px;
}

footer p {
  flex: 1;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-self: end;
  padding-right: 72px;
}

.footer-right a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.reveal {
  animation: reveal 700ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-delay-1 { animation-delay: 100ms; }
.reveal-delay-2 { animation-delay: 200ms; }
.reveal-delay-3 { animation-delay: 300ms; }
.reveal-delay-4 { animation-delay: 400ms; }

@keyframes reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { opacity: 0.8; transform: scale(0.5); }
  100% { opacity: 0; transform: scale(1.4); }
}

@keyframes pulse-ring {
  0% { opacity: 0.8; transform: scale(0.94); }
  100% { opacity: 0; transform: scale(1.14); }
}

@keyframes blink {
  to { opacity: 0.15; }
}

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

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

@keyframes float {
  50% { transform: translateY(-8px); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1120px) {
  .site-header,
  main,
  footer {
    width: min(100% - 56px, 940px);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 45px;
  }

  .visual-wrap {
    order: -1;
  }

  .radar {
    width: min(65vw, 510px);
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .proof {
    justify-content: center;
  }

  .hero-text {
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .site-header,
  main,
  footer {
    width: min(100% - 32px, 590px);
  }

  .site-header {
    height: 80px;
  }

  .brand {
    width: 105px;
  }

  .header-link {
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding: 35px 0 50px;
  }

  .visual-wrap {
    margin-bottom: 14px;
  }

  .radar {
    width: min(94vw, 390px);
  }

  .service-pill {
    max-width: 116px;
    padding: 7px 9px;
    font-size: 8px;
    line-height: 1.2;
    text-align: left;
  }

  .core {
    width: 130px;
    height: 130px;
  }

  .core-logo {
    width: 74px;
  }

  h1 {
    padding-top: 23px;
    font-size: clamp(54px, 16vw, 78px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 22px;
  }

  .social-buttons {
    justify-content: center;
  }

  .proof {
    gap: 14px;
    padding-top: 47px;
  }

  .proof-stat strong {
    font-size: 22px;
  }

  .proof-stat span {
    font-size: 8px;
  }

  .service-strip {
    display: block;
  }

  .strip-label {
    height: 50px;
  }

  .marquee {
    display: flex;
    height: 50px;
    align-items: center;
    border-top: 1px solid var(--line);
  }

  .launch-panel {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 70px 0;
  }

  .countdown-wrap {
    justify-self: start;
    width: 100%;
  }

  .countdown {
    justify-content: space-between;
    gap: 8px;
  }

  .countdown div {
    min-width: auto;
  }

  .countdown strong {
    font-size: 39px;
  }

  footer {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px 22px;
    padding: 21px 0;
  }

  footer .social-buttons {
    grid-column: 1 / -1;
    order: 3;
    justify-content: center;
    width: 100%;
  }

  .footer-right {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    justify-content: space-between;
    justify-self: start;
    padding-right: 68px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 20px;
    width: 52px;
    height: 52px;
  }

}

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