:root {
  --nuvora-yellow: #f6c90e;
  --nuvora-black: #0e0e10;
  --nuvora-white: #fcfcfc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 20% 15%, rgba(246, 201, 14, 0.16), transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.07), transparent 35%), var(--nuvora-black);
  background-image: radial-gradient(circle at 20% 15%, rgba(246, 201, 14, 0.16), transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.07), transparent 35%),
    repeating-linear-gradient(145deg, rgba(255, 255, 255, 0.015) 0, rgba(255, 255, 255, 0.015) 2px, transparent 2px, transparent 12px),
    linear-gradient(160deg, #090a0c 0%, #111218 52%, #090a0c 100%);
  overflow-x: hidden;
}

.phone-shell {
  position: relative;
  isolation: isolate;
}

.glow-band {
  position: absolute;
  left: -20%;
  top: -115px;
  width: 140%;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(246, 201, 14, 0.36) 0%, rgba(246, 201, 14, 0) 65%);
  pointer-events: none;
  z-index: -1;
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(150deg, rgba(246, 201, 14, 0.75), rgba(255, 255, 255, 0.08), rgba(246, 201, 14, 0.18));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.brand-mark {
  position: relative;
  box-shadow: 0 0 0 1px rgba(246, 201, 14, 0.4), 0 10px 35px rgba(246, 201, 14, 0.3);
  animation: pulse-ring 4.5s ease-in-out infinite;
}

.brand-header {
  position: relative;
  display: grid;
  gap: 0.95rem;
}

.brand-halo {
  position: absolute;
  left: 50%;
  top: -20px;
  width: 82%;
  height: 120px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(246, 201, 14, 0.3), rgba(246, 201, 14, 0));
  filter: blur(6px);
  pointer-events: none;
  z-index: -1;
}

.brand-badge {
  margin: 0;
  justify-self: center;
  border: 1px solid rgba(246, 201, 14, 0.4);
  background: rgba(246, 201, 14, 0.12);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 250, 232, 0.95);
}

.brand-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.2rem 0;
  text-align: center;
}

.brand-name {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.97);
}

.brand-logo {
  width: 2.9rem;
  height: 2.9rem;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(246, 201, 14, 0.35));
}

.hero-carousel {
  position: relative;
  margin-top: 1.15rem;
  margin-bottom: 1rem;
}

.carousel-track {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(246, 201, 14, 0.36);
  background: #13141a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 14px 24px rgba(0, 0, 0, 0.28);
  aspect-ratio: 4 / 5;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 620ms ease, transform 900ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.42) 100%);
}

.carousel-controls {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.6rem;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.carousel-nav svg {
  width: 1rem;
  height: 1rem;
}

.carousel-nav.prev {
  left: 0.5rem;
}

.carousel-nav.next {
  right: 0.5rem;
}

.carousel-nav:hover,
.carousel-nav:focus-visible {
  transform: translateY(-50%) scale(1.06);
  background: rgba(246, 201, 14, 0.22);
  border-color: rgba(246, 201, 14, 0.75);
}

.carousel-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
  cursor: pointer;
  transition: width 220ms ease, background-color 220ms ease;
}

.carousel-dot.is-active {
  width: 1.2rem;
  background: var(--nuvora-yellow);
}

.chip {
  border: 1px solid rgba(246, 201, 14, 0.35);
  background: rgba(246, 201, 14, 0.08);
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  color: rgba(252, 252, 252, 0.95);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
}

.nuvora-link {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  padding: 0.85rem 0.9rem;
  color: var(--nuvora-white);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 260ms ease, border-color 260ms ease, background-color 260ms ease, box-shadow 260ms ease;
  overflow: hidden;
}

.link-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.link-icon {
  width: 2.15rem;
  height: 2.15rem;
  min-width: 2.15rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  color: var(--nuvora-yellow);
  border: 1px solid rgba(246, 201, 14, 0.42);
  background: rgba(246, 201, 14, 0.11);
  transition: transform 260ms ease, background-color 260ms ease;
}

.link-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.link-copy {
  display: grid;
}

.link-label {
  font-size: 0.94rem;
  line-height: 1.12rem;
}

.link-subtitle {
  margin-top: 0.2rem;
  font-size: 0.73rem;
  line-height: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.link-arrow {
  display: grid;
  align-items: center;
  color: rgba(246, 201, 14, 0.95);
}

.link-arrow svg {
  width: 1.2rem;
  height: 1.2rem;
  transition: transform 220ms ease;
}

.nuvora-link::before {
  content: "";
  position: absolute;
  left: -30%;
  top: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(246, 201, 14, 0.28), transparent);
  transform: skewX(-18deg);
  transition: left 380ms ease;
}

.nuvora-link:hover,
.nuvora-link:focus-visible {
  border-color: rgba(246, 201, 14, 0.65);
  background: linear-gradient(145deg, rgba(246, 201, 14, 0.18), rgba(255, 255, 255, 0.05));
  box-shadow: 0 0 0 1px rgba(246, 201, 14, 0.45), 0 10px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.nuvora-link:hover .link-icon,
.nuvora-link:focus-visible .link-icon {
  transform: scale(1.06);
  background: rgba(246, 201, 14, 0.2);
}

.nuvora-link:hover .link-arrow svg,
.nuvora-link:focus-visible .link-arrow svg {
  transform: translateX(3px);
}

.nuvora-link:hover::before,
.nuvora-link:focus-visible::before {
  left: 115%;
}

.nuvora-link:active {
  transform: translateY(0);
}

.map-card {
  border: 1px solid rgba(246, 201, 14, 0.24);
  border-radius: 1rem;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  padding: 0.72rem;
}

.map-title {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 201, 14, 0.94);
}

.map-frame {
  width: 100%;
  border-radius: 0.86rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background: #0d0e12;
  aspect-ratio: 16 / 10;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-open {
  margin-top: 0.62rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 0.72rem;
  border: 1px solid rgba(246, 201, 14, 0.46);
  background: rgba(246, 201, 14, 0.13);
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.55rem 0.7rem;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.map-open:hover,
.map-open:focus-visible {
  transform: translateY(-1px);
  background: rgba(246, 201, 14, 0.22);
  border-color: rgba(246, 201, 14, 0.7);
}

.bg-orb {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(4px);
}

.orb-a {
  width: 240px;
  height: 240px;
  left: -70px;
  top: -80px;
  background: radial-gradient(circle, rgba(246, 201, 14, 0.36), rgba(246, 201, 14, 0));
  animation: drift-a 14s ease-in-out infinite;
}

.orb-b {
  width: 280px;
  height: 280px;
  right: -120px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(246, 201, 14, 0.2), rgba(246, 201, 14, 0));
  animation: drift-b 16s ease-in-out infinite;
}

.wa-float {
  position: fixed;
  right: 0.9rem;
  bottom: 1rem;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.55);
  background: linear-gradient(135deg, #1ebc5b 0%, #25d366 45%, #17a84f 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22), 0 16px 28px rgba(0, 0, 0, 0.46);
  color: #fff;
  text-decoration: none;
  padding: 0.56rem 0.9rem 0.56rem 0.6rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
  animation: wa-float 2.2s ease-in-out infinite;
}

.wa-pulse {
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 1px solid rgba(37, 211, 102, 0.38);
  animation: wa-ring 1.9s ease-out infinite;
}

.wa-icon {
  position: relative;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.wa-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.wa-copy {
  display: grid;
  position: relative;
}

.wa-title {
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.wa-subtitle {
  font-size: 0.68rem;
  line-height: 0.9rem;
  opacity: 0.95;
}

.wa-float:hover,
.wa-float:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3), 0 20px 32px rgba(0, 0, 0, 0.55);
}

.wa-float::after {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.34), rgba(37, 211, 102, 0));
  pointer-events: none;
}

.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.pdf-modal[hidden] {
  display: none;
}

.pdf-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(3px);
}

.pdf-dialog {
  position: relative;
  width: min(100%, 860px);
  height: min(86vh, 780px);
  border-radius: 1rem;
  border: 1px solid rgba(246, 201, 14, 0.35);
  background: #0d0e12;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.pdf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.72rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(120deg, rgba(246, 201, 14, 0.18), rgba(255, 255, 255, 0.04));
}

.pdf-header h2 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.pdf-close {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.pdf-close svg {
  width: 1rem;
  height: 1rem;
}

.pdf-frame-wrap {
  background: #121318;
}

#pdf-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

.pdf-open-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(246, 201, 14, 0.12);
}

.pdf-open-link:hover,
.pdf-open-link:focus-visible {
  background: rgba(246, 201, 14, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
}

.reveal.is-visible {
  animation: reveal-up 0.7s var(--delay, 0s) cubic-bezier(0.2, 0.68, 0.3, 0.98) forwards;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-ring {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(246, 201, 14, 0.4), 0 10px 35px rgba(246, 201, 14, 0.2);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(246, 201, 14, 0.75), 0 14px 44px rgba(246, 201, 14, 0.38);
  }
}

@keyframes drift-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(26px, 20px) scale(1.1);
  }
}

@keyframes drift-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, -26px) scale(1.08);
  }
}

@keyframes wa-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

@keyframes wa-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  .wa-float {
    right: 0.72rem;
    bottom: max(0.72rem, env(safe-area-inset-bottom));
    gap: 0.5rem;
    padding: 0.5rem 0.74rem 0.5rem 0.52rem;
    border-width: 1.2px;
  }

  .wa-title {
    font-size: 0.71rem;
    line-height: 0.9rem;
  }

  .wa-subtitle {
    font-size: 0.63rem;
    line-height: 0.82rem;
  }

  .wa-icon {
    width: 1.82rem;
    height: 1.82rem;
    min-width: 1.82rem;
  }

  .wa-icon svg {
    width: 1.06rem;
    height: 1.06rem;
  }

  .wa-pulse {
    inset: -4px;
  }
}

@media (max-width: 390px) {
  .brand-name {
    font-size: 0.98rem;
    letter-spacing: 0.1em;
  }

  .wa-float {
    right: 0.62rem;
    bottom: max(0.62rem, env(safe-area-inset-bottom));
    gap: 0.42rem;
    padding: 0.46rem 0.62rem 0.46rem 0.46rem;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24), 0 14px 24px rgba(0, 0, 0, 0.5);
  }

  .wa-title {
    font-size: 0.66rem;
  }

  .wa-subtitle {
    display: none;
  }

  .wa-icon {
    width: 1.68rem;
    height: 1.68rem;
    min-width: 1.68rem;
    background: rgba(255, 255, 255, 0.22);
  }

  .wa-pulse {
    inset: -3px;
    border-width: 1.2px;
  }
}

@media (max-width: 640px) {
  .pdf-modal {
    padding: 0.6rem;
  }

  .pdf-dialog {
    height: min(84vh, 690px);
    border-radius: 0.85rem;
  }

  .pdf-header h2 {
    font-size: 0.76rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
