:root {
  --black-950: #000000;
  --black-900: #0d0d0d;
  --black-850: #060606;
  --black-800: #0c0a0a;
  --gold-500: #d4af37;
  --gold-400: #e2c46f;
  --gold-300: #f1d98f;
  --text-100: #f5f1e6;
  --text-300: #c7c2b3;
  --glass: rgba(0, 0, 0, 0.05);
  --border-gold: rgba(212, 175, 55, 0.4);
  --nav-offset: 80px;
}

* {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-100);
  background:
    radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.15), transparent 32%),
    radial-gradient(circle at 90% 5%, rgba(212, 175, 55, 0.1), transparent 30%),
    linear-gradient(135deg, #050505 0%, #0b0b0b 48%, #111111 100%);
  overflow-x: hidden;
}

body.has-nav {
  padding-top: var(--nav-offset);
}

.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

section,
header,
nav,
footer,
main,
.to-top-btn {
  position: relative;
  z-index: 2;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--gold-300);
}

.brand-mark span {
  line-height: 1;
}

.brand-logo {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
}

.luxury-nav {
  transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.luxury-nav.scrolled {
  background: rgba(6, 6, 6, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.34);
}

.navbar .nav-link {
  color: var(--text-100);
  opacity: 0.88;
  font-weight: 500;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--gold-400);
  opacity: 1;
}

.navbar-toggler {
  color: var(--gold-400);
  font-size: 1.7rem;
}

.btn {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.72rem 1.35rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.btn-gold {
  position: relative;
  overflow: hidden;
  color: #161616;
  border: 1px solid rgba(212, 175, 55, 0.75);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.2);
}

.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 72%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transition: left 0.65s ease;
}

.btn-gold:hover::before {
  left: 140%;
}

.btn-outline-luxury {
  color: var(--gold-300);
  border: 1px solid var(--border-gold);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline-luxury:hover {
  color: #141414;
  border-color: transparent;
  background: linear-gradient(130deg, var(--gold-400), var(--gold-300));
}

.hero-section {
  min-height: 100vh;
}

.page-home .hero-title {
  max-width: 14ch;
}


.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

.glow-one {
  width: 360px;
  height: 360px;
  top: 70px;
  right: -120px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.23), transparent 68%);
  animation: pulse 5s ease-in-out infinite alternate;
}

.glow-two {
  width: 300px;
  height: 300px;
  left: -70px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 72%);
  animation: pulse 6.2s ease-in-out infinite alternate-reverse;
}

.eyebrow {
  color: var(--gold-400);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.hero-title,
.inner-title,
.section-head h2,
.cta-box h2,
.demo-mockup h3,
.app-sidebar h3,
.faq-card h3,
.feature-card h3,
.process-step h4,
.app-card h3 {
  font-family: "Cinzel", serif;
}

.hero-title {
  font-size: clamp(2.2rem, 5.3vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}

.hero-title span {
  background: linear-gradient(125deg, #f8e8c0, var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 35rem;
  color: var(--text-300);
}

.hero-image-wrap {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(212, 175, 55, 0.13) inset;
  transition: transform 0.25s ease;
}

.hero-image {
  width: 100%;
  height: clamp(320px, 56vh, 560px);
  object-fit: cover;
  transform: scale(1.03);
}

.floating-chip {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.74rem;
  color: var(--gold-300);
  background: rgba(5, 5, 5, 0.58);
  border: 1px solid rgba(212, 175, 55, 0.35);
  animation: float 4.2s ease-in-out infinite;
}

.chip-top {
  top: 1rem;
  left: 1rem;
}

.chip-bottom {
  right: 1rem;
  bottom: 1rem;
  animation-delay: 1.4s;
}

.stat-card {
  background: var(--glass);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 1rem;
  padding: 0.95rem 0.6rem;
  text-align: center;
  height: 100%;
}

.stat-card h3 {
  margin: 0;
  color: var(--gold-400);
  font-family: "Cinzel", serif;
  font-size: 1.45rem;
}

.stat-card p {
  margin: 0.28rem 0 0;
  color: var(--text-300);
  font-size: 0.78rem;
}

.brand-strip {
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  background: rgba(255, 255, 255, 0.012);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: 0.92rem 0;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  position: relative;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.77rem;
  padding-right: 1.6rem;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "*";
  position: absolute;
  right: 0;
  color: rgba(212, 175, 55, 0.58);
}

.section-space {
  padding: clamp(4rem, 6vw, 6.3rem) 0;
}

.section-head p,
.cta-box p {
  color: var(--text-300);
}

.inner-hero {
  padding-bottom: 2.5rem;
}

.inner-title {
  font-size: clamp(2rem, 4.7vw, 3.4rem);
  line-height: 1.1;
}

.feature-card {
  /* height: 100%; */
  padding: 1.35rem;
  border-radius: 1.15rem;
  background: rgba(13, 13, 13, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
}

.module-box {
  display: block;
  height: 100%;
  padding: 2rem 1.5rem;
  border-radius: 1.15rem;
  background: rgba(13, 13, 13, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.22);
  text-align: center;
  text-decoration: none;
  color: var(--text-100);
  transition: all 0.3s ease;
}

.module-box:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 36px rgba(212, 175, 55, 0.25);
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.08);
}

.module-box i {
  font-size: 2.5rem;
  color: var(--gold-400);
  margin-bottom: 1rem;
  display: block;
  transition: transform 0.3s ease;
}

.module-box:hover i {
  transform: scale(1.1);
}

.module-box h4 {
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--gold-300);
}

.module-box p {
  color: var(--text-300);
  margin: 0;
  font-size: 0.9rem;
}

.feature-icon {
  font-size: 1.55rem;
  color: var(--gold-400);
  margin-bottom: 0.9rem;
  display: inline-flex;
}

.feature-card h3 {
  font-size: 1.28rem;
  margin-bottom: 0.65rem;
}

.feature-card p {
  color: var(--text-300);
  margin: 0;
  line-height: 1.72;
}

.pricing-card {
  position: relative;
  height: 100%;
  padding: 1.6rem;
  border-radius: 1.2rem;
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.pricing-card h3 {
  margin: 0.6rem 0 0.35rem;
  font-size: 1.35rem;
  color: var(--gold-300);
}

.pricing-card.popular {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 22px 50px rgba(212, 175, 55, 0.22);
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.1), rgba(8, 8, 8, 0.85));
  transform: translateY(-8px);
}

.pricing-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.75rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--gold-300);
  background: rgba(5, 5, 5, 0.5);
}

.pricing-price {
  font-family: "Cinzel", serif;
  font-size: 2.1rem;
  color: var(--gold-400);
  margin: 0.4rem 0 0.25rem;
}

.pricing-price span {
  font-size: 0.95rem;
  color: var(--text-300);
  font-family: "Manrope", sans-serif;
}

.pricing-note {
  color: var(--text-300);
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.18);
  color: var(--text-100);
}

.pricing-list li:last-child {
  border-bottom: 0;
}

.pricing-list i {
  color: var(--gold-300);
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

.process-section {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.06), rgba(212, 175, 55, 0.01));
}

.process-step {
  height: 100%;
  padding: 1.3rem;
  border-radius: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: rgba(11, 11, 11, 0.75);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.42);
  color: var(--gold-300);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.process-step h4 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.process-step p {
  color: var(--text-300);
  margin: 0;
}

.comparison-table {
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 1rem;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  background: rgba(10, 10, 10, 0.85);
  color: var(--text-100);
  border-color: rgba(212, 175, 55, 0.14);
  padding: 1rem;
  min-width: 220px;
}

.comparison-table th {
  color: var(--gold-300);
  font-weight: 700;
}

.demo-mockup {
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 1.2rem;
  padding: 1.4rem;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.03), rgba(212, 175, 55, 0.06)),
    rgba(9, 9, 9, 0.8);
}

.demo-pill {
  display: inline-block;
  border-radius: 999px;
  padding: 0.32rem 0.78rem;
  font-size: 0.74rem;
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--gold-300);
  margin-bottom: 0.8rem;
}

.demo-mockup ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.demo-mockup li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--text-100);
  padding: 0.56rem 0;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.15);
}

.demo-mockup li:last-child {
  border-bottom: 0;
}

.demo-mockup li span {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.42);
  color: var(--gold-300);
  font-weight: 700;
  font-size: 0.8rem;
}

.testimonials-section {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.01));
}

.review-card {
  max-width: 760px;
  padding: 2.1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(212, 175, 55, 0.26);
  background: rgba(10, 10, 10, 0.72);
  text-align: center;
}

.review-card p {
  font-size: 1.04rem;
  line-height: 1.8;
  color: #f5efde;
  margin-bottom: 1.1rem;
}

.review-card h5 {
  font-family: "Cinzel", serif;
  color: var(--gold-400);
  margin-bottom: 0.2rem;
}

.review-card small {
  color: var(--text-300);
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background-color: transparent;
}

.carousel-indicators .active {
  background-color: var(--gold-400);
}

.faq-card {
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 1.2rem;
  background: rgba(11, 11, 11, 0.78);
  padding: 1.5rem;
  height: 100%;
}

.faq-card h3 {
  margin-bottom: 1rem;
}

.faq-item {
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.2);
}

.faq-item h4 {
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
}

.faq-item p {
  margin: 0;
  color: var(--text-300);
}

.cta-section {
  padding: 1rem 0 5.5rem;
}

.cta-box {
  text-align: center;
  border-radius: 1.25rem;
  padding: 3rem clamp(1rem, 4vw, 2.5rem);
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(212, 175, 55, 0.08));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.13);
  background: rgba(0, 0, 0, 0.38);
}

.site-footer p {
  color: var(--text-300);
  font-size: 0.92rem;
}

.site-footer p a {
  color: var(--gold-400);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.site-footer p a:hover {
  color: var(--gold-300);
}

.social-links a {
  color: var(--gold-300);
  font-size: 1.1rem;
  opacity: 0.84;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.to-top-btn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.42);
  color: var(--gold-300);
  background: rgba(8, 8, 8, 0.8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.app-shell {
  min-height: 100vh;
}

.app-sidebar {
  position: sticky;
  top: 1.2rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 1rem;
  background: rgba(10, 10, 10, 0.82);
  padding: 1.25rem;
}

.app-sidebar h3 {
  font-size: 1.2rem;
  margin-bottom: 0.95rem;
}

.app-sidebar a {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  text-decoration: none;
  color: var(--text-100);
  padding: 0.58rem 0.62rem;
  border-radius: 0.65rem;
  margin-bottom: 0.45rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.app-sidebar a:hover {
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold-300);
}

.app-card {
  height: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: rgba(11, 11, 11, 0.78);
  padding: 1.2rem;
}

.app-card p {
  margin-bottom: 0.55rem;
  color: var(--text-300);
}

.app-card h3 {
  margin-bottom: 0.45rem;
  color: var(--gold-300);
  font-size: 1.6rem;
}

.app-card span {
  color: var(--text-300);
}

.register-modal .modal-content {
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 1.1rem;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(212, 175, 55, 0.08)),
    rgba(8, 8, 8, 0.95);
  color: var(--text-100);
}

.register-modal .modal-title {
  color: var(--gold-300);
  font-family: "Cinzel", serif;
}

.register-subtext {
  color: var(--text-300);
  margin-bottom: 1rem;
}

.register-label {
  color: var(--gold-300);
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
}

.register-input {
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0.72rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-100);
}

.register-input:focus {
  color: var(--text-100);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.16);
}

.register-input::placeholder {
  color: rgba(245, 241, 230, 0.42);
}

.register-modal .invalid-feedback {
  color: #ffd0c2;
}

.register-status {
  min-height: 1.2rem;
  margin: 0 0 0.9rem;
  font-size: 0.87rem;
}

.register-status.is-error {
  color: #ffd5c8;
}

.register-status.is-success {
  color: #c6f6d0;
}

.register-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.reveal-up,
.reveal-zoom {
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.7s ease;
}

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

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

.reveal-up.is-visible,
.reveal-zoom.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

@keyframes pulse {
  from {
    transform: scale(0.95);
    opacity: 0.82;
  }
  to {
    transform: scale(1.1);
    opacity: 1;
  }
}

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

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

@media (max-width: 991.98px) {
  .luxury-nav {
    background: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(8px);
  }

  .hero-section {
    padding-top: 4.8rem;
  }

  .hero-image {
    height: clamp(320px, 45vh, 430px);
  }

  .app-sidebar {
    position: static;
  }

  .pricing-card.popular {
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.05rem;
  }

  .inner-title {
    font-size: 1.8rem;
  }

  .stat-card h3 {
    font-size: 1.12rem;
  }

  .stat-card p {
    font-size: 0.72rem;
  }

  .review-card {
    padding: 1.45rem 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
