:root {
  --bg: #041b49;
  --bg-soft: #08265f;
  --panel: rgba(8, 31, 79, 0.76);
  --panel-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.12);
  --text: #eef7ff;
  --muted: #b2c7e6;
  --primary: #17d9df;
  --primary-deep: #0eb7c9;
  --shadow: 0 28px 60px rgba(1, 10, 34, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(23, 217, 223, 0.16), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(23, 217, 223, 0.12), transparent 24%),
    linear-gradient(180deg, #04163e 0%, #041b49 40%, #06193c 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }
.site-shell { overflow-x: hidden; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(4, 22, 62, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 88px;
}

.brand, .footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img, .footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
}
.brand strong, .footer-brand strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: .02em;
}
.brand span, .footer-brand span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
}

.nav, .nav-actions, .hero-actions, .cta-actions, .footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav a {
  color: var(--muted);
  font-weight: 500;
}
.nav a:hover { color: white; }
.menu-toggle { display: none; }

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .25s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #062143;
  box-shadow: 0 14px 28px rgba(23, 217, 223, 0.25);
}
.btn-outline {
  border-color: rgba(23, 217, 223, 0.55);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: white;
}
.btn-large { padding: 16px 24px; }

.hero { padding: 78px 0 56px; }
.hero-grid, .split-grid, .showcase-grid, .contact-grid, .footer-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}
.hero-grid { grid-template-columns: 1.1fr .9fr; }
.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: .98;
  margin: 12px 0 18px;
  max-width: 11ch;
}
.hero-copy h1 span {
  color: var(--primary);
  text-shadow: 0 0 24px rgba(23, 217, 223, 0.25);
}
.hero-copy p, .section-heading p, .split-copy p, .showcase-copy p, .contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(23, 217, 223, 0.1);
  border: 1px solid rgba(23, 217, 223, 0.2);
  color: #96fbff;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hero-stats article, .mini-cards article {
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}
.hero-stats strong, .mini-cards strong { display: block; font-size: 1.05rem; }
.hero-stats span, .mini-cards span { display: block; color: var(--muted); margin-top: 6px; font-size: .92rem; }

.hero-media { position: relative; }
.media-card {
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.media-main img { width: 100%; height: 640px; object-fit: cover; }
.floating-chip {
  position: absolute;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(6, 26, 69, 0.82);
  border: 1px solid rgba(23,217,223,.25);
  box-shadow: var(--shadow);
  color: white;
  font-weight: 700;
}
.chip-top { top: 26px; left: -16px; }
.chip-bottom { right: -12px; bottom: 32px; }

.partners-band {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.band-grid div {
  padding: 14px 10px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-heading h2, .split-copy h2, .showcase-copy h2, .contact-copy h2, .cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin: 14px 0;
}
.cards-grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.info-card img { width: 100%; height: 270px; object-fit: cover; }
.card-copy { padding: 22px; }
.card-copy h3, .bullet-list h3 { margin: 0 0 10px; font-size: 1.2rem; }
.card-copy p, .bullet-list p { margin: 0; color: var(--muted); line-height: 1.75; }
.glow-card { position: relative; }
.glow-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -32% auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(23,217,223,.18), transparent 68%);
  pointer-events: none;
}

.feature-split { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)); }
.split-grid { grid-template-columns: 1fr 1fr; }
.bullet-list { display: grid; gap: 18px; }
.bullet-list article {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
}
.glass-panel {
  padding: 16px;
  border-radius: 30px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.glass-panel img { border-radius: 20px; width: 100%; height: 100%; object-fit: cover; }

.showcase-grid { grid-template-columns: .95fr 1.05fr; }
.showcase-media img {
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.15);
}
.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}
.compact { margin-top: 8px; }

.cta-panel { padding-top: 16px; }
.cta-box {
  padding: 36px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(23,217,223,.14), rgba(255,255,255,.04));
  border: 1px solid rgba(23,217,223,.2);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
}
.cta-actions { flex-direction: column; align-items: stretch; }

.contact-grid { grid-template-columns: .9fr 1.1fr; }
.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.contact-list a, .contact-list span {
  color: var(--text);
  font-weight: 600;
}
.contact-form {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.form-row { display: grid; gap: 10px; margin-bottom: 16px; }
label { font-weight: 600; }
input, textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: white;
  font: inherit;
}
input::placeholder, textarea::placeholder { color: #90a8cb; }

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 50px;
  background: rgba(1, 8, 24, 0.28);
}
.footer-grid {
  grid-template-columns: 1.1fr .9fr .9fr;
  align-items: start;
}
.footer-links {
  flex-direction: column;
  align-items: flex-start;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: white; }

@media (max-width: 1040px) {
  .nav-actions { display: none; }
  .hero-grid, .split-grid, .showcase-grid, .contact-grid, .cta-box, .footer-grid { grid-template-columns: 1fr; }
  .cards-grid.three, .mini-cards, .hero-stats, .band-grid { grid-template-columns: 1fr 1fr; }
  .media-main img { height: 520px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav {
    position: absolute;
    top: 88px;
    left: 14px;
    right: 14px;
    background: rgba(5, 19, 51, 0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
  .menu-toggle {
    display: inline-flex;
    background: rgba(255,255,255,.08);
    color: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px 13px;
    font-size: 1.2rem;
  }
  .hero-copy h1 { max-width: none; }
  .cards-grid.three, .mini-cards, .hero-stats, .band-grid { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .media-main img { height: 400px; }
  .chip-top, .chip-bottom { position: static; display: inline-flex; margin-top: 12px; }
}
.hero-visual img,
.hero-media img,
.hero-image img,
.hero-card img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: 28px;
    display: block;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 28px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}
.btn-outline {
    border: 1px solid #17d9df;
    color: #17d9df;
}

.btn-outline:hover {
    background: #17d9df;
    color: #001f3f;
}
.app-store-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

.store-badge {
  height: 54px;
  width: auto;
  display: block;
  transition: transform 0.25s ease;
}

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

@media (max-width: 640px) {
  .store-badge {
    height: 48px;
  }
}
.slider {
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  position: relative;
}