:root {
  --linkzi-bg: #f7f6ff;
  --linkzi-surface: rgba(255, 255, 255, 0.8);
  --linkzi-white: #ffffff;
  --linkzi-text: #1c1542;
  --linkzi-muted: #645d83;
  --linkzi-brand: #261258;
  --linkzi-brand-soft: #4431a7;
  --linkzi-accent: #ffd21f;
  --linkzi-accent-soft: #fff0a8;
  --linkzi-border: rgba(38, 18, 88, 0.1);
  --linkzi-shadow: 0 22px 60px rgba(38, 18, 88, 0.14);
}

* {
  box-sizing: border-box;
}

body.theme-body {
  font-family: "Outfit", sans-serif;
  color: var(--linkzi-text);
  background:
    radial-gradient(circle at top left, rgba(255, 210, 31, 0.24), transparent 26%),
    linear-gradient(180deg, #fcfbff 0%, #f4f3ff 50%, #fdfdff 100%);
  overflow-x: hidden;
}

body.page-shell {
  opacity: 0;
  transition: opacity 0.55s ease;
}

body.page-shell.is-ready {
  opacity: 1;
}

h1,
h2,
h3,
.navbar-nav,
.btn,
.section-tag,
.footer-title {
  font-family: "Sora", sans-serif;
}

.site-header {
  backdrop-filter: blur(14px);
  background: rgba(247, 246, 255, 0.84);
  border-bottom: 1px solid rgba(38, 18, 88, 0.08);
}

.hero-section,
.subhero-section,
.feature-band,
.site-footer {
  position: relative;
}

.hero-section::before,
.subhero-section::before {
  content: "";
  position: absolute;
  inset: 2rem auto auto -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 31, 0.22) 0%, rgba(255, 210, 31, 0) 72%);
  pointer-events: none;
}

.feature-band::before {
  content: "";
  position: absolute;
  right: -6rem;
  top: 2rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

.brand-mark img {
  width: 158px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(38, 18, 88, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.brand-mark:hover img {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 32px rgba(38, 18, 88, 0.18);
}

.nav-toggle {
  border: 1px solid var(--linkzi-border);
  border-radius: 1rem;
  padding: 0.55rem 0.8rem;
}

.nav-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 210, 31, 0.24);
}

.nav-pill {
  color: var(--linkzi-muted);
  font-weight: 500;
  padding: 0.9rem 1.1rem !important;
  border-radius: 999px;
}

.nav-pill:hover,
.nav-pill.active {
  color: var(--linkzi-brand) !important;
  background: rgba(255, 210, 31, 0.34);
}

.nav-pill,
.spec-chip,
.metric-card,
.info-card,
.use-card,
.gallery-panel,
.poster-frame,
.cta-box,
.btn,
.footer-links a {
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.hero-section,
.subhero-section {
  padding: 5.5rem 0 4rem;
}

.subhero-section {
  padding-bottom: 3rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 210, 31, 0.22);
  color: var(--linkzi-brand-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-title-sm {
  max-width: 11ch;
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
}

.hero-copy,
.copy-muted,
.footer-copy,
.feature-copy,
.form-help {
  color: var(--linkzi-muted);
  line-height: 1.8;
}

.hero-copy {
  max-width: 58ch;
  font-size: 1.08rem;
}

.spec-chip {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--linkzi-border);
  box-shadow: 0 12px 30px rgba(38, 18, 88, 0.06);
  color: var(--linkzi-brand);
  font-weight: 700;
}

.metric-card,
.info-card,
.use-card,
.gallery-panel,
.cta-box,
.hero-media-card,
.site-footer .container {
  box-shadow: var(--linkzi-shadow);
}

.metric-card {
  height: 100%;
  padding: 1.25rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--linkzi-border);
}

.metric-card:hover,
.info-card:hover,
.use-card:hover,
.gallery-panel:hover,
.poster-frame:hover,
.cta-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(38, 18, 88, 0.18);
}

.metric-card strong {
  display: block;
  color: var(--linkzi-brand);
  font-size: 1.75rem;
  line-height: 1;
}

.metric-card span {
  display: block;
  margin-top: 0.5rem;
  color: var(--linkzi-muted);
}

.hero-media-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: transparent;
}

.hero-media-card img {
  mix-blend-mode: screen;
  object-fit: contain;
}

.hero-visual-wrap {
  position: relative;
}

.hero-luxury-panel {
  transform-origin: center;
  animation:
    mediaFloat 5.8s ease-in-out infinite,
    heroPulse 7s ease-in-out infinite;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(255, 210, 31, 0.28);
  animation: orbitSpin 16s linear infinite;
}

.hero-orbit-one {
  top: -2rem;
  right: -1rem;
  width: 10rem;
  height: 10rem;
  border-style: dashed;
}

.hero-orbit-two {
  left: -2.5rem;
  bottom: 2rem;
  width: 7rem;
  height: 7rem;
  border-color: rgba(255, 255, 255, 0.35);
  animation-direction: reverse;
  animation-duration: 12s;
}

.hero-lux-badge {
  position: absolute;
  left: -1rem;
  top: 1.5rem;
  z-index: 2;
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 20px 45px rgba(38, 18, 88, 0.14);
  backdrop-filter: blur(12px);
}

.hero-lux-badge span {
  color: var(--linkzi-brand-soft);
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-lux-badge strong {
  color: var(--linkzi-brand);
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  line-height: 1.1;
}

.glow-panel::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 40%;
  height: 180%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.34) 50%, rgba(255, 255, 255, 0) 100%);
  animation: sheenMove 6s ease-in-out infinite;
  pointer-events: none;
}

.media-float {
  animation: mediaFloat 5.8s ease-in-out infinite;
}

.hero-media-card img,
.gallery-panel img,
.poster-frame img,
.use-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  display: grid;
  gap: 0.55rem;
  width: min(250px, 75%);
  padding: 1rem 1.1rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.floating-note span {
  color: var(--linkzi-brand);
  font-weight: 700;
}

.info-card {
  height: 100%;
  padding: 1.7rem;
  border-radius: 1.75rem;
  background: var(--linkzi-surface);
  border: 1px solid var(--linkzi-border);
}

.accent-card {
  background: linear-gradient(180deg, rgba(255, 210, 31, 0.24), rgba(255, 255, 255, 0.92));
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

.card-title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.feature-band {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 210, 31, 0.2), transparent 18%),
    linear-gradient(135deg, #221050 0%, #2f2185 48%, #1d5e89 100%);
}

.feature-band .section-tag {
  background: rgba(255, 255, 255, 0.14);
  color: #fff3aa;
}

.feature-copy {
  color: rgba(255, 255, 255, 0.82);
}

.feature-list,
.bullet-list,
.footer-links,
.contact-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li,
.bullet-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.95rem;
  line-height: 1.8;
}

.feature-list li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--linkzi-accent);
}

.gallery-panel,
.poster-frame {
  overflow: hidden;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.12);
}

.gallery-panel img {
  min-height: 260px;
}

.wide-panel img {
  min-height: 320px;
}

.poster-frame {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--linkzi-border);
}

.cta-box {
  padding: 1.3rem 1.4rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--linkzi-border);
}

.cta-box h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.btn-brand {
  color: #fff;
  background: linear-gradient(135deg, var(--linkzi-brand) 0%, var(--linkzi-brand-soft) 100%);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(38, 18, 88, 0.28);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  background: linear-gradient(135deg, #201048 0%, #372795 100%);
  transform: translateY(-3px);
}

.btn-outline-brand {
  color: var(--linkzi-brand);
  background: rgba(255, 240, 168, 0.78);
  border: 1px solid rgba(255, 210, 31, 0.35);
  border-radius: 999px;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  color: var(--linkzi-brand);
  background: rgba(255, 235, 138, 0.95);
  border-color: rgba(255, 210, 31, 0.55);
  transform: translateY(-3px);
}

.spec-table {
  display: grid;
  gap: 0.9rem;
}

.spec-table div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--linkzi-border);
}

.spec-table span {
  color: var(--linkzi-muted);
}

.spec-table strong {
  max-width: 58%;
  text-align: right;
}

.use-card {
  overflow: hidden;
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.use-card img {
  min-height: 230px;
}

.use-card-body {
  padding: 1.3rem;
}

.use-card-body h3 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
}

.use-card-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.contact-points li {
  margin-bottom: 1.25rem;
}

.contact-points strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--linkzi-brand);
}

.contact-points span,
.contact-points a {
  color: var(--linkzi-muted);
  text-decoration: none;
  line-height: 1.8;
}

.custom-input {
  border: 1px solid rgba(38, 18, 88, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--linkzi-text);
}

.custom-input:focus {
  border-color: rgba(38, 18, 88, 0.28);
  box-shadow: 0 0 0 0.25rem rgba(255, 210, 31, 0.22);
}

.form-label {
  color: var(--linkzi-brand);
  font-weight: 700;
}

.site-footer .container {
  padding: 2rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--linkzi-border);
}

.footer-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--linkzi-brand);
}

.footer-copy,
.footer-links li,
.footer-links a {
  color: var(--linkzi-muted);
  text-decoration: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

.footer-links a:hover {
  color: var(--linkzi-brand);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-42px);
}

.reveal-right {
  transform: translateX(42px);
}

.reveal-zoom {
  transform: scale(0.92);
}

.reveal-up {
  transform: translateY(34px);
}

.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-zoom.is-visible,
.reveal-up.is-visible {
  transform: none;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  gap: 1rem;
  background:
    radial-gradient(circle at top, rgba(255, 210, 31, 0.22), transparent 24%),
    linear-gradient(180deg, #faf8ff 0%, #f2f1ff 100%);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  padding: 1rem 1.2rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 60px rgba(38, 18, 88, 0.14);
  animation: loaderFloat 1.8s ease-in-out infinite;
}

.loader-mark img {
  width: 220px;
  max-width: 70vw;
  height: auto;
  display: block;
}

.loader-line {
  width: min(220px, 55vw);
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(38, 18, 88, 0.08);
}

.loader-line::before {
  content: "";
  display: block;
  width: 35%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--linkzi-accent) 0%, var(--linkzi-brand-soft) 100%);
  animation: loaderSweep 1.15s ease-in-out infinite;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 1190;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(38, 18, 88, 0.98) 0%, rgba(68, 49, 167, 0.96) 100%);
  transition: opacity 0.45s ease;
}

.page-transition.is-active {
  opacity: 1;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1080;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 60px;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #16b955 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 20px 45px rgba(18, 122, 59, 0.28);
  animation: whatsappPulse 2.4s ease-in-out infinite;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 26px 55px rgba(18, 122, 59, 0.34);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: 0 0 auto;
}

.whatsapp-float span {
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@keyframes mediaFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes heroPulse {
  0%,
  100% {
    box-shadow: 0 22px 60px rgba(38, 18, 88, 0.14);
  }
  50% {
    box-shadow: 0 30px 78px rgba(38, 18, 88, 0.24);
  }
}

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

@keyframes sheenMove {
  0% {
    transform: translateX(-180%) rotate(18deg);
  }
  50%,
  100% {
    transform: translateX(380%) rotate(18deg);
  }
}

@keyframes loaderFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes loaderSweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(320%);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 20px 45px rgba(18, 122, 59, 0.28);
  }
  50% {
    box-shadow: 0 24px 60px rgba(18, 122, 59, 0.42);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(38, 18, 88, 0.12);
  }

  .hero-title,
  .hero-title-sm,
  .section-title {
    max-width: none;
  }

  .floating-note {
    position: static;
    width: 100%;
    margin: 1rem;
  }

  .hero-lux-badge {
    left: 1rem;
    top: 1rem;
  }

  .spec-table div {
    flex-direction: column;
  }

  .spec-table strong {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .hero-section,
  .subhero-section {
    padding: 4rem 0 3rem;
  }

  .brand-mark img,
  .footer-brand img {
    width: 130px;
    height: 38px;
  }

  .hero-lux-badge {
    position: static;
    margin-bottom: 1rem;
    width: fit-content;
  }

  .hero-orbit-one,
  .hero-orbit-two {
    display: none;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-title-sm {
    font-size: 2.5rem;
  }

  .site-footer .container {
    padding: 1.5rem;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    min-height: 56px;
    padding: 0.85rem 1rem;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .media-float,
  .whatsapp-float,
  .page-loader,
  .page-transition,
  .btn,
  .metric-card,
  .info-card,
  .use-card,
  .gallery-panel,
  .poster-frame,
  .cta-box,
  .brand-mark img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .reveal-on-scroll {
    opacity: 1;
  }

  body.page-shell {
    opacity: 1;
  }
}
