:root {
  --bg: #080910;
  --panel: rgba(17, 21, 34, 0.68);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f7ff;
  --muted: #aab4d6;
  --accent: #5b7cff;
  --pink: #ff5fd2;
  --cyan: #4ef2ff;
  --gold: #ffca6d;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(91, 124, 255, 0.25), transparent 20%),
    radial-gradient(circle at 85% 15%, rgba(255, 95, 210, 0.18), transparent 18%),
    radial-gradient(circle at 70% 70%, rgba(78, 242, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #07090f 0%, #0d111b 46%, #06070c 100%);
  color: var(--text);
  overflow-x: hidden;
}

.scene-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.scene-backdrop__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 78%);
  opacity: 0.35;
  animation: gridShift 22s linear infinite;
}

.scene-backdrop__glow,
.scene-backdrop__ring {
  position: absolute;
  border-radius: 50%;
}

.scene-backdrop__glow--one {
  top: 6%;
  left: -8%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(91, 124, 255, 0.26), transparent 68%);
  animation: pulseFloat 12s ease-in-out infinite;
}

.scene-backdrop__glow--two {
  top: 38%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 95, 210, 0.2), transparent 70%);
  animation: pulseFloat 14s ease-in-out infinite reverse;
}

.scene-backdrop__glow--three {
  bottom: -8%;
  left: 35%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(78, 242, 255, 0.16), transparent 68%);
  animation: pulseFloat 16s ease-in-out infinite;
}

.scene-backdrop__ring--one {
  top: 12%;
  right: 12%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 80px rgba(91, 124, 255, 0.08);
  animation: spinRing 28s linear infinite;
}

.scene-backdrop__ring--two {
  bottom: 14%;
  left: 8%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 60px rgba(255, 95, 210, 0.08);
  animation: spinRing 20s linear infinite reverse;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.hidden { display: none !important; }

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--pink), var(--cyan));
  box-shadow: 0 0 18px rgba(91, 124, 255, 0.8);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 1rem 1.25rem 0;
}

.navbar {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0.95rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 999px;
  background: rgba(12, 16, 28, 0.58);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Syne", sans-serif;
  font-weight: 700;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links { display: flex; gap: 1.15rem; color: var(--muted); }
.nav-links a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--text);
  border: 1px solid var(--line);
  background: transparent;
}

.section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.living-strip {
  max-width: 100%;
  overflow: hidden;
  padding: 0 0 1rem;
}

.living-strip__track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  padding: 0.95rem 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.living-strip__track span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--cyan);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.hero h1,
.destination-card h3,
.floating-card h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  min-height: 100vh;
  padding-top: 3rem;
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6.6rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.hero__text {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.hero__actions,
.hero__chips,
.popup__actions,
.footer-grid,
.social-links,
.trust-grid,
.testimonial-grid,
.faq-list,
.destination-grid,
.product-grid,
.about-layout,
.social-layout {
  display: flex;
  gap: 1rem;
}

.hero__actions,
.hero__chips {
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero__chips span,
.trust-card,
.testimonial-card,
.glass-panel,
.faq-item,
.product-card,
.destination-card,
.instagram-tile,
.instagram-profile-card,
.social-links a,
.footer-grid > div,
.popup,
.quick-view__panel {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero__chips span {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover,
.destination-card:hover,
.product-card:hover,
.trust-card:hover,
.testimonial-card:hover,
.instagram-tile:hover,
.instagram-profile-card:hover { transform: translateY(-6px); }

.btn--primary {
  background: linear-gradient(120deg, var(--accent), var(--pink));
  color: #fff;
  box-shadow: 0 16px 34px rgba(91, 124, 255, 0.35);
}

.btn--ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero__visual {
  position: relative;
  min-height: 560px;
  perspective: 1300px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  animation: float 8s ease-in-out infinite;
}

.orb--one {
  top: 10%;
  right: 12%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(91, 124, 255, 0.7), transparent 65%);
}

.orb--two {
  bottom: 8%;
  left: 5%;
  width: 230px;
  height: 230px;
  background: radial-gradient(circle, rgba(255, 95, 210, 0.55), transparent 70%);
  animation-delay: -2s;
}

.orb--three {
  top: 48%;
  left: 35%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(78, 242, 255, 0.5), transparent 70%);
  animation-delay: -4s;
}

.floating-card {
  position: absolute;
  border-radius: var(--radius-xl);
  padding: 1.35rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.36);
  animation: drift 8s ease-in-out infinite;
}

.floating-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.floating-card p { margin: 0.35rem 0 0; color: var(--muted); }
.floating-card--main { top: 10%; left: 8%; width: min(420px, 80%); transform: rotateY(-14deg) rotateX(5deg); }
.floating-card--side { bottom: 10%; right: 6%; width: min(330px, 70%); transform: rotateY(14deg) rotateX(-3deg); animation-delay: -3s; }

.destination-grid,
.product-grid,
.trust-grid,
.testimonial-grid,
.about-layout,
.social-layout,
.footer-grid { flex-wrap: wrap; }

.featured-block {
  position: relative;
  margin-top: 1.6rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.featured-block--pink {
  background: linear-gradient(160deg, rgba(255, 95, 210, 0.08), rgba(78, 242, 255, 0.04));
}

.featured-block__header {
  margin-bottom: 1.2rem;
}

.featured-block__header h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.destination-card {
  position: relative;
  flex: 1 1 320px;
  overflow: hidden;
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.destination-card__logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.destination-card__glow {
  position: absolute;
  inset: auto -25% -30% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 124, 255, 0.28), transparent 70%);
}

.destination-card--pink .destination-card__glow {
  background: radial-gradient(circle, rgba(255, 95, 210, 0.28), transparent 70%);
}

.destination-card p,
.destination-card span,
.product-card p,
.testimonial-card p,
.trust-card p,
.glass-panel p,
.faq-answer p,
.footer-grid p { color: var(--muted); line-height: 1.75; }

.destination-card span,
.product-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--text);
  font-weight: 700;
}

.product-card {
  flex: 1 1 280px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  position: relative;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: auto -25% 55% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(91, 124, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.product-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.product-card__content { padding: 1.2rem; }

.trust-card,
.testimonial-card,
.glass-panel,
.faq-item,
.instagram-tile,
.instagram-profile-card,
.footer-grid > div {
  border-radius: var(--radius-lg);
  padding: 1.3rem;
}

.trust-card { flex: 1 1 180px; }
.trust-card strong { font-size: 1.4rem; font-family: "Syne", sans-serif; }
.glass-panel { flex: 1 1 360px; }
.feature-list { padding-left: 1.2rem; color: var(--muted); line-height: 1.9; }
.testimonial-card { flex: 1 1 230px; }

.testimonial-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.rating { color: var(--gold) !important; letter-spacing: 0.2em; }

.instagram-grid {
  flex: 1 1 520px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.instagram-tile {
  overflow: hidden;
  position: relative;
  min-height: 220px;
}

.instagram-tile img { width: 100%; height: 100%; object-fit: cover; }

.instagram-profile-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 220px;
}

.instagram-profile-card img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  flex: 0 0 auto;
}

.instagram-tile span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(8, 9, 16, 0.72);
}

.social-links { flex: 1 1 280px; flex-direction: column; }
.social-links a { padding: 1rem 1.1rem; border-radius: 18px; }
.faq-list { flex-direction: column; }

.faq-question {
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--text);
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), margin-top var(--transition);
}

.faq-item.open .faq-answer {
  max-height: 180px;
  margin-top: 1rem;
}

.footer { padding-top: 2rem; }
.footer-grid > div { flex: 1 1 220px; }
.footer-grid h3 { margin-top: 0; font-family: "Syne", sans-serif; }
.footer-grid a { display: block; margin-bottom: 0.8rem; color: var(--muted); }

.footer-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.popup { position: fixed; z-index: 95; border-radius: 22px; }

.popup--top {
  top: 5.3rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
}

.popup--top p,
.popup--exit p { margin: 0; }

.popup__close { border: 0; background: transparent; color: var(--muted); }

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 98;
  display: grid;
  place-items: center;
  background: rgba(4, 6, 12, 0.72);
  backdrop-filter: blur(12px);
}

.popup--exit { max-width: 460px; padding: 1.6rem; }

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 94;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #1fd16f, #0f8f50);
  color: #fff;
  box-shadow: 0 20px 34px rgba(12, 142, 74, 0.35);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.section-note {
  margin: 1.25rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-note a {
  color: var(--cyan);
}

.quick-view {
  position: fixed;
  inset: 0;
  z-index: 97;
  display: grid;
  place-items: center;
}

.quick-view__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 12, 0.72);
  backdrop-filter: blur(10px);
}

.quick-view__panel {
  position: relative;
  width: min(600px, calc(100vw - 1.5rem));
  padding: 1.2rem;
  border-radius: 26px;
}

.quick-view__panel img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 18px;
}

.quick-view__close { margin-bottom: 1rem; border: 0; background: transparent; color: var(--muted); }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal--delay { transition-delay: 140ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -20px, 0); }
}

@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0.2deg); }
  50% { transform: translateY(-16px) rotate(-1deg); }
}

@keyframes gridShift {
  from { transform: translateY(0); }
  to { transform: translateY(72px); }
}

@keyframes pulseFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -18px, 0) scale(1.06); }
}

@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33%); }
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 7rem; }
  .hero__visual { min-height: 460px; }
  .nav-links {
    position: fixed;
    top: 5.5rem;
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(12, 16, 28, 0.94);
    border: 1px solid var(--line);
    backdrop-filter: blur(18px);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 1rem; }
  .hero h1 { font-size: 3rem; }
  .floating-card--main,
  .floating-card--side {
    width: 100%;
    left: 0;
    right: 0;
    transform: none;
  }
  .floating-card--main { top: 0; }
  .floating-card--side { bottom: 0; }
  .instagram-grid { grid-template-columns: 1fr; }
  .popup--top { left: 1rem; right: 1rem; }
}
