:root {
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --primary: #dc1e68;
  --surface: #ffeef5;
  --ink: #111111;
  --accent: #97ef00;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  color: #ffeef5;
  background:
    radial-gradient(circle at 12% 0%, rgba(220, 30, 104, 0.22), rgba(220, 30, 104, 0) 32%),
    linear-gradient(180deg, #111111 0%, #1b0c14 100%);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.12; }
h1 { font-size: clamp(2.2rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 4vw;
  background: rgba(17, 17, 17, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}
.logo {
  text-decoration: none;
  color: #ffeef5;
  display: inline-flex;
  align-items: center;
}
.logo img {
  display: block;
  height: 50px;
  width: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #ffeef5;
  transition: color 0.16s ease, background 0.16s ease;
}
.site-nav a:hover { color: var(--accent); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 238, 245, 0.08);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.menu-toggle span { width: 18px; height: 2px; background: #ffeef5; }
.nav-download-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}
.nav-download-btn,
.btn-primary {
  background: var(--primary);
  color: #ffeef5;
  box-shadow: 0 14px 26px rgba(220, 30, 104, 0.26);
}
.btn-outline {
  border: 1px solid rgba(255, 238, 245, 0.22);
  background: rgba(255, 238, 245, 0.06);
  color: #ffeef5;
}
.btn:hover,
.nav-download-btn:hover { transform: translateY(-2px); }
main { overflow: hidden; }
.hero,
.sub-hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: center;
  padding: 48px 5vw 32px;
}
.sub-hero { min-height: auto; }
.hero-copy,
.hero-visual,
.info-card { text-align: left; }
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.lead,
.sublead,
.info-card p,
.launch-band p,
.footer-grid p,
.footer-note,
.contact-list a,
.contact-list span {
  color: rgba(255, 238, 245, 0.82);
}
.lead,
.sublead { max-width: 58ch; font-size: 1.03rem; margin: 0 0 18px; }
.action-row,
.stat-row,
.footer-actions,
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.action-row {
  align-items: center;
}
.stat-row { margin-top: 16px; }
.stat-chip,
.contact-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 238, 245, 0.08);
  border: 1px solid rgba(255, 238, 245, 0.1);
  font-weight: 600;
}
.contact-badge { color: var(--accent); }
.hero-visual {
  position: relative;
  min-height: 400px;
  display: grid;
  place-items: center;
  justify-self: center;
  width: 100%;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.orb-a { width: 340px; height: 340px; top: 0; left: 4%; background: rgba(220, 30, 104, 0.24); animation: driftA 8s ease-in-out infinite; }
.orb-b { width: 220px; height: 220px; right: 0; bottom: 12%; background: rgba(151, 239, 0, 0.16); animation: driftB 7s ease-in-out infinite; }
.phone-mockup {
  position: relative;
  z-index: 1;
  width: min(360px, 92%);
  margin-inline: auto;
  display: grid;
  justify-items: center;
  gap: 14px;
}
.phone-device {
  position: relative;
  width: 300px;
  max-width: 100%;
  height: 649px;
  aspect-ratio: 390 / 844;
  border-radius: 40px;
  padding: 10px;
  background: linear-gradient(150deg, #111111, #2b2b2b);
  box-shadow: 0 22px 48px rgba(17, 17, 17, 0.32);
}
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 38%; height: 26px; border-radius: 0 0 16px 16px; background: #111111; z-index: 3; }
.phone-screen { position: relative; width: 100%; height: 100%; border-radius: 32px; overflow: hidden; background: #ffeef5; }
.phone-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.02); transition: opacity 420ms ease, transform 1200ms ease; }
.phone-slide.is-active { opacity: 1; transform: scale(1); }
.phone-home-indicator { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); width: 34%; height: 5px; border-radius: 999px; background: rgba(255,255,255,0.7); z-index: 3; }
.phone-dots { display: inline-flex; gap: 8px; }
.phone-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(220, 30, 104, 0.25); }
.phone-dots span.is-active { background: var(--primary); transform: scale(1.15); }
.float { animation: lift 4s ease-in-out infinite; }
.ticker { background: #0e0e0e; border-top: 1px solid rgba(255, 238, 245, 0.08); border-bottom: 1px solid rgba(255, 238, 245, 0.08); overflow: hidden; }
.ticker-track { display: flex; white-space: nowrap; animation: tickerMove 18s linear infinite; }
.ticker-track span { flex: 0 0 240px; text-align: center; padding: 12px 0; font-weight: 600; }
.grid-section,
.detail-grid,
.contact-layout {
  padding: 30px 5vw 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.info-card,
.detail-card,
.contact-card,
.contact-panel {
  background: rgba(255, 238, 245, 0.07);
  border: 1px solid rgba(255, 238, 245, 0.08);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}
.accent-card { background: linear-gradient(180deg, rgba(220, 30, 104, 0.18), rgba(151, 239, 0, 0.08)); }
.card-tag { color: var(--accent); font-size: 0.8rem; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.info-card a,
.detail-card a,
.contact-panel a { color: var(--accent); text-decoration: none; font-weight: 700; display: inline-block; margin-top: 10px; }
.launch-band {
  margin: 0 5vw 40px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(220, 30, 104, 0.2), rgba(255, 238, 245, 0.06));
  border: 1px solid rgba(255, 238, 245, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.site-footer {
  background: #0d0d0d;
  padding: 36px 5vw 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.15fr 1fr;
  gap: 20px;
}
.footer-grid h4 { margin-bottom: 10px; }
.footer-grid a { display: block; text-decoration: none; margin: 6px 0; }
.footer-grid a:hover { color: var(--accent); }
.footer-logo { display: inline-block; margin-bottom: 10px; }
.footer-logo img {
  height: 58px;
  width: auto;
}
.social-icons { margin-top: 14px; }
.social-link {
  width: 42px;
  height: 42px;
  display: inline-block;
  position: relative;
  border-radius: 50%;
  background: rgba(255, 238, 245, 0.08);
  border: 1px solid rgba(255, 238, 245, 0.14);
  color: #ffeef5;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease;
}
.social-link:hover { transform: translateY(-2px); background: rgba(220, 30, 104, 0.24); color: var(--accent); }
.social-link svg {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-note { font-size: 0.94rem; margin-top: 8px; }
.footer-bottom { margin-top: 20px; padding-top: 14px; border-top: 1px solid rgba(255, 238, 245, 0.16); }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.45s ease, transform 0.45s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }
.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(165deg, rgba(17, 17, 17, 0.97), rgba(220, 30, 104, 0.18));
  transition: opacity 320ms ease;
}
.page-transition-overlay.is-entering,
body.is-leaving .page-transition-overlay { opacity: 1; pointer-events: all; }
body.is-leaving .site-header,
body.is-leaving main,
body.is-leaving .site-footer { opacity: 0.24; transform: translateY(10px); transition: opacity 280ms ease, transform 280ms ease; }
.menu-backdrop { position: fixed; inset: 0; background: rgba(17, 17, 17, 0.36); opacity: 0; pointer-events: none; transition: opacity 220ms ease; z-index: 75; }
body.nav-open .menu-backdrop { opacity: 1; pointer-events: auto; }
body.nav-open main,
body.nav-open .site-footer {
  -webkit-filter: blur(2px);
  filter: blur(2px);
}
body.nav-open {
  overflow: hidden;
  touch-action: none;
}
.contact-list { list-style: none; display: grid; gap: 16px; }
.contact-list li { display: grid; gap: 5px; }
.contact-list strong { color: var(--accent); }
.map-section { padding: 0 5vw 40px; }
.map-shell { overflow: hidden; border-radius: 26px; border: 1px solid rgba(255, 238, 245, 0.12); box-shadow: 0 20px 36px rgba(0, 0, 0, 0.22); }
.map-shell iframe { width: 100%; height: min(62vh, 480px); border: 0; display: block; }
.policy-shell {
  padding: 0 5vw 40px;
}
.policy-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 238, 245, 0.06);
  border: 1px solid rgba(255, 238, 245, 0.1);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}
.policy-section + .policy-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 238, 245, 0.08);
}
.policy-section h2 {
  margin-bottom: 12px;
}
.policy-section h3 {
  font-size: 1.08rem;
  margin: 18px 0 8px;
  color: #ffeef5;
}
.policy-section p,
.policy-section li,
.policy-highlight li {
  color: rgba(255, 238, 245, 0.84);
}
.policy-section a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}
.policy-section ul,
.policy-highlight ul {
  padding-left: 20px;
  display: grid;
  gap: 8px;
}
.policy-list-numbered {
  padding-left: 20px;
  display: grid;
  gap: 10px;
}
.policy-list-numbered li {
  color: rgba(255, 238, 245, 0.84);
}
.policy-highlight {
  margin-top: 30px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(220, 30, 104, 0.18), rgba(255, 238, 245, 0.05));
  border: 1px solid rgba(255, 238, 245, 0.1);
}
.policy-highlight h3 {
  margin-bottom: 10px;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  z-index: 10020;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
  animation: whatsappBob 2.8s ease-in-out infinite;
}
.whatsapp-float svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
@keyframes driftA { 0%,100% { transform: translate(0,0); } 50% { transform: translate(16px,14px); } }
@keyframes driftB { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-14px,-12px); } }
@keyframes lift { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes tickerMove { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes whatsappBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@media (max-width: 980px) {
  .hero,
  .sub-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 30px; }
  .hero-copy {
    max-width: 720px;
  }
  .grid-section,
  .detail-grid,
  .contact-layout,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .launch-band { flex-direction: column; align-items: flex-start; }
  .menu-toggle { display: inline-flex; z-index: 85; }
  .logo img { height: 42px; }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(84vw, 340px);
    height: 100vh;
    height: 100dvh;
    padding: 86px 16px 18px;
    background: rgba(17, 17, 17, 0.96);
    box-shadow: -16px 0 36px rgba(17, 17, 17, 0.22);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    transform: translateX(104%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 280ms ease;
    z-index: 80;
  }
  .site-nav.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-nav a { width: 100%; padding: 10px 12px; border-radius: 10px; background: rgba(255, 238, 245, 0.06); }
}
@media (max-width: 760px) {
  .hero,
  .sub-hero { padding: 24px 4vw 20px; }
  .grid-section,
  .detail-grid,
  .contact-layout { grid-template-columns: 1fr; padding: 22px 4vw 30px; }
  .policy-shell { padding: 0 4vw 30px; }
  .map-section { padding: 0 4vw 30px; }
  .site-footer { padding: 28px 4vw 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .policy-card { padding: 20px; }
  .action-row .btn,
  .footer-actions .btn { width: 100%; }
  .action-row {
    width: 100%;
  }
  .phone-device { width: 255px; height: 551px; border-radius: 34px; }
  .phone-screen { border-radius: 26px; }
  .footer-logo img { height: 48px; }
  .whatsapp-float { right: 16px; bottom: calc(96px + env(safe-area-inset-bottom, 0px)); width: 54px; height: 54px; }
}
