@font-face {
  font-family: "Spline Sans";
  src: url("./assets/SplineSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Spline Sans";
  src: url("./assets/SplineSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/Manrope-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

:root {
  color-scheme: dark;
  --bg: #060311;
  --bg-deep: #0d071f;
  --surface: rgba(16, 10, 36, 0.78);
  --surface-strong: rgba(18, 10, 40, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f8f7ff;
  --muted: #b8b7ca;
  --cyan: #63deff;
  --violet: #8249ff;
  --pink: #ff4bc1;
  --orange: #ff8125;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(130, 73, 255, 0.16), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(255, 75, 193, 0.18), transparent 20%),
    radial-gradient(circle at 76% 78%, rgba(255, 129, 37, 0.18), transparent 24%),
    linear-gradient(180deg, #04010c 0%, #0c061b 42%, #060311 100%);
}

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

body::before {
  top: 12%;
  left: -12rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 222, 255, 0.18), transparent 64%);
  filter: blur(16px);
}

body::after {
  right: -10rem;
  bottom: -8rem;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 129, 37, 0.16), transparent 66%);
  filter: blur(22px);
}

.site-shell {
  position: relative;
  overflow: clip;
}

.ambient-wave {
  position: absolute;
  z-index: 0;
  height: 8px;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.8;
  box-shadow:
    0 0 24px currentColor,
    0 0 54px currentColor;
  animation: drift 12s ease-in-out infinite;
}

.wave-left {
  left: -12%;
  bottom: 14%;
  width: 54vw;
  color: rgba(114, 82, 255, 0.8);
  background: linear-gradient(90deg, rgba(88, 74, 255, 0.1), rgba(114, 82, 255, 0.9), rgba(255, 75, 193, 0.8));
  transform: rotate(7deg);
}

.wave-right {
  right: -10%;
  bottom: 10%;
  width: 58vw;
  color: rgba(255, 120, 35, 0.8);
  background: linear-gradient(90deg, rgba(255, 75, 193, 0.25), rgba(255, 120, 35, 0.95), rgba(255, 166, 66, 0.35));
  transform: rotate(-8deg);
  animation-delay: -3s;
}

.container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.topbar {
  padding: 1.4rem 0 1rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(10, 8, 20, 0.58);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 2.9rem;
  height: 2.9rem;
  display: block;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 0 22px rgba(130, 73, 255, 0.18);
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-family: "Spline Sans", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a,
.topbar-cta {
  color: inherit;
  text-decoration: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.topbar-cta {
  padding: 0.88rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(130, 73, 255, 0.18), rgba(255, 129, 37, 0.14));
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.topbar-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, rgba(130, 73, 255, 0.28), rgba(255, 129, 37, 0.24));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 3rem;
  align-items: start;
  padding: 0.6rem 0 2.5rem;
}

.hero-copy h1,
.section-heading h2,
.journey-copy h2,
.download-copy h2 {
  margin: 0;
  font-family: "Spline Sans", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--cyan);
  font-family: "Spline Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-text,
.section-heading p,
.journey-copy p,
.download-copy p,
.benefit-card p,
.signal-card p,
.journey-step p,
.download-qr p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 40rem;
  margin: 1.4rem 0 0;
  font-size: 1.08rem;
}

.hero-actions,
.hero-visual-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-visual-actions {
  position: static;
  width: min(100%, var(--showcase-width));
  justify-content: center;
  align-items: center;
  margin-top: 1.4rem;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.store-badge-link:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28));
}

.store-badge-image {
  display: block;
  height: 3.2rem;
  width: auto;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: 1 / -1;
  gap: 1rem;
  width: 100%;
  margin-top: 0.8rem;
  justify-self: stretch;
}

.signal-card,
.benefit-card,
.journey-step,
.journey-panel,
.download-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.signal-card {
  height: 100%;
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.signal-card span,
.benefit-number,
.journey-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cyan);
  font-family: "Spline Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.signal-card h2,
.benefit-card h3,
.journey-step h3 {
  margin: 0.8rem 0 0.55rem;
  font-family: "Spline Sans", sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.signal-card p,
.benefit-card p,
.journey-step p {
  margin: 0;
  font-size: 0.94rem;
}

.hero-visual {
  --showcase-height: 32rem;
  --showcase-width: 26rem;
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  width: min(100%, calc(var(--showcase-width) + 2rem));
  justify-self: center;
  min-height: calc(var(--showcase-height) + 7rem);
  padding-top: 0.6rem;
}

.visual-halo {
  position: absolute;
  inset: 12% 4% 10%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 30% 30%, rgba(130, 73, 255, 0.52), transparent 34%),
    radial-gradient(circle at 74% 20%, rgba(255, 75, 193, 0.36), transparent 24%),
    radial-gradient(circle at 70% 78%, rgba(255, 129, 37, 0.38), transparent 28%);
  filter: blur(36px);
}

.showcase-card {
  position: relative;
  inset: auto;
  width: min(100%, var(--showcase-width));
  height: var(--showcase-height);
  margin: 0 auto;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(6, 3, 17, 0.82);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  animation: float 7s ease-in-out infinite;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 28px;
  object-fit: cover;
}

.floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 7, 20, 0.72);
  backdrop-filter: blur(12px);
  color: var(--text);
  font-size: 0.86rem;
  box-shadow: var(--shadow);
}

.floating-chip::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  box-shadow: 0 0 14px rgba(99, 222, 255, 0.7);
}

.floating-chip-top {
  top: 2rem;
  left: 0;
}

.download-qr p {
  margin: 0;
  font-family: "Spline Sans", sans-serif;
  font-size: 0.98rem;
}

.qr-frame img {
  width: 100%;
  display: block;
  margin: 0.95rem 0;
  border-radius: 24px;
}

.section {
  padding: 3rem 0 0;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 45rem;
  margin-bottom: 1.8rem;
}

.benefit-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 1.8rem;
}

.benefit-heading {
  max-width: none;
  margin-bottom: 0;
}

.benefit-visual {
  position: relative;
  min-height: 35rem;
}

.benefit-visual-halo {
  position: absolute;
  inset: 10% 4% 10% 18%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 24% 26%, rgba(130, 73, 255, 0.42), transparent 28%),
    radial-gradient(circle at 74% 20%, rgba(255, 75, 193, 0.32), transparent 24%),
    radial-gradient(circle at 62% 74%, rgba(255, 129, 37, 0.3), transparent 28%);
  filter: blur(34px);
}

.benefit-showcase-card {
  position: relative;
  width: min(100%, 22rem);
  aspect-ratio: 2 / 3;
  margin: 0 0 0 auto;
  padding: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(6, 3, 17, 0.82);
  box-shadow: var(--shadow);
  animation: float 8s ease-in-out infinite;
  animation-delay: -1.2s;
}

.benefit-showcase-card img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 28px;
  object-fit: cover;
}

.section-heading h2,
.journey-copy h2,
.download-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.section-heading p,
.journey-copy p,
.download-copy p {
  margin: 0;
  font-size: 1.04rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.benefit-card {
  padding: 1.6rem;
  border-radius: 24px;
}

.benefit-card h3 {
  margin-top: 1rem;
  font-size: 1.22rem;
}

.journey-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.4rem;
  padding: 2rem;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(130, 73, 255, 0.12), rgba(255, 129, 37, 0.1)),
    rgba(9, 7, 19, 0.9);
}

.journey-copy {
  padding: 0.4rem 0.4rem 0.4rem 0.2rem;
}

.journey-steps {
  display: grid;
  gap: 1rem;
}

.journey-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(99, 222, 255, 0.1), rgba(255, 75, 193, 0.08) 50%, rgba(255, 129, 37, 0.1)),
    rgba(10, 8, 20, 0.92);
}

.download-copy {
  max-width: 40rem;
}

.download-qr {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.qr-frame {
  width: min(100%, 18rem);
  padding: 1rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.footer {
  padding: 3rem 0 4rem;
}

.footer p {
  margin: 0;
  color: rgba(248, 247, 255, 0.66);
  text-align: center;
  font-size: 0.95rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 24;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  max-width: min(calc(100vw - 2rem), 22rem);
  padding: 0.8rem 1rem 0.8rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1fb85a);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  filter: saturate(1.04);
}

.whatsapp-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(7, 17, 10, 0.14);
}

.whatsapp-float-icon img {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
}

.whatsapp-float-copy {
  display: grid;
  gap: 0;
}

.whatsapp-float-copy strong {
  display: block;
}

.whatsapp-float-copy strong {
  font-family: "Spline Sans", sans-serif;
  font-size: 0.98rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-18px, 8px, 0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .benefit-lead,
  .journey-panel,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 0.6rem;
  }

  .hero-copy {
    order: 1;
  }

  .hero-points {
    order: 2;
    margin-top: 0;
  }

  .hero-visual {
    order: 3;
    min-height: 30rem;
    max-width: 42rem;
    width: 100%;
    margin: 0 auto;
  }

  .showcase-card {
    inset: 0 auto auto 0;
    width: 70%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .benefit-visual {
    min-height: 30rem;
    max-width: 28rem;
    width: 100%;
    margin: 0 auto;
  }

  .benefit-showcase-card {
    margin: 0 auto;
  }

}

@media (max-width: 860px) {
  .topbar-inner {
    border-radius: 28px;
    padding: 1rem;
  }

  .nav-links {
    display: none;
  }

  .hero-points,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-lead {
    gap: 1.8rem;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding-top: 1rem;
  }

  .brand-copy small,
  .topbar-cta {
    display: none;
  }

  .hero {
    gap: 2rem;
    padding-top: 2.6rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 16vw, 4rem);
  }

  .hero-actions,
  .hero-visual-actions,
  .download-actions {
    flex-direction: column;
  }

  .store-badge-link {
    width: 100%;
  }

  .store-badge-image {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 32rem;
  }

  .showcase-card {
    inset: auto;
    width: auto;
    height: auto;
    aspect-ratio: auto;
    padding: 0.7rem;
  }

  .benefit-visual {
    min-height: 24rem;
  }

  .benefit-showcase-card {
    width: min(100%, 18rem);
    padding: 0.7rem;
  }

  .hero-visual-actions {
    position: static;
    width: 100%;
    margin-top: 1.2rem;
    justify-content: flex-start;
  }

  .floating-chip-top {
    top: 0;
    left: 0.8rem;
  }

  .journey-panel,
  .download-panel {
    padding: 1.4rem;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    gap: 0.75rem;
    max-width: calc(100vw - 1.4rem);
    padding: 0.72rem 0.92rem 0.72rem 0.76rem;
  }

  .whatsapp-float-icon {
    width: 2.45rem;
    height: 2.45rem;
  }
}

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