*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black-marble: #050505;
  --onyx: rgba(7, 7, 7, 0.82);
  --liquid-gold: #f9ce63;
  --liquid-gold-neon: #ffd67a;
  --deep-gold: #c48c3a;
  --glass: rgba(10, 10, 10, 0.55);
  --glass-border: rgba(255, 214, 122, 0.35);
  --text-primary: #f5f2ec;
  --text-secondary: rgba(245, 242, 236, 0.8);
  --glow: 0 0 25px rgba(255, 206, 119, 0.55);
  --transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background-color: var(--black-marble);
  min-height: 100vh;
  overflow-x: hidden;
}

.main-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(249, 206, 99, 0.08), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(249, 206, 99, 0.15), transparent 45%);
  pointer-events: none;
  mix-blend-mode: screen;
  animation: shimmer 18s ease-in-out infinite alternate;
}

/* === ADS sub-landing keeps cinematic theme (scoped by class on that page if needed) === */
.background-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.2);
  z-index: -3;
}

.gold-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.92), rgba(10, 10, 10, 0.6));
  z-index: -2;
}

.gold-particles {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 198, 110, 0.35) 1px, transparent 1px),
    radial-gradient(rgba(255, 198, 110, 0.25) 1px, transparent 1px);
  background-size: 200px 200px, 350px 350px;
  background-position: 0 0, 50px 50px;
  opacity: 0.3;
  animation: drift 60s linear infinite alternate;
  z-index: -1;
  pointer-events: none;
}

#spotlight {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 224, 150, 0.08), transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
  transition: transform 0.15s linear;
}

.skyline {
  position: fixed;
  top: 6%;
  left: 50%;
  width: 90vw;
  height: 35vh;
  transform: translateX(-50%);
  background: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1400&q=80')
    center/cover no-repeat;
  opacity: 0.12;
  filter: grayscale(1) contrast(1.2);
  mix-blend-mode: screen;
  pointer-events: none;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.hero-content {
  max-width: 780px;
  animation: floatUp 1.8s ease forwards;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: linear-gradient(120deg, #fff8e7, var(--liquid-gold), var(--deep-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 248, 231, 0.25);
}

.subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tagline {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--liquid-gold-neon);
  font-weight: 600;
}

.primary-btn,
.secondary-btn {
  border: none;
  padding: 1rem 2.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: var(--glow);
}

.primary-btn {
  background: linear-gradient(120deg, var(--liquid-gold), var(--liquid-gold-neon));
  color: #1a1209;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.05);
  color: var(--liquid-gold);
  border: 1px solid rgba(255, 214, 122, 0.5);
  backdrop-filter: blur(8px);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 35px rgba(249, 206, 99, 0.5);
}

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(22px);
  border-radius: 32px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.65), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.about {
  padding: 4rem 1.5rem;
  display: flex;
  justify-content: center;
}

.about-card {
  max-width: 1100px;
  padding: 3rem;
  line-height: 1.9;
  color: var(--text-secondary);
  font-size: 1rem;
  background-image: radial-gradient(circle at top, rgba(249, 206, 99, 0.12), transparent 40%);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--liquid-gold);
}

.about-summary {
  display: grid;
  gap: 1rem;
}

.about-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.about-step {
  display: flex;
  gap: 0.8rem;
  padding: 1.2rem;
  border-radius: 20px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 214, 122, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.about-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #ffe4b4;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.step-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(255, 210, 140, 0.35), rgba(255, 118, 85, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 155, 90, 0.35);
}

.pricing {
  padding: 5rem 1.5rem 6rem;
}

.section-description {
  max-width: 980px;
  margin: 0 auto 3rem;
  padding: 2.5rem 2.2rem;
  line-height: 1.9;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 82, 97, 0.3);
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.75), rgba(40, 10, 14, 0.65));
}

.section-description::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.section-description::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 80, 95, 0.45), transparent 65%);
  top: -80px;
  right: -60px;
  filter: blur(6px);
  pointer-events: none;
}

.section-description p {
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.offer-btn {
  align-self: flex-start;
  background: linear-gradient(135deg, #ff4b5c, #ff9154);
  color: #fff3ea;
  box-shadow: 0 15px 45px rgba(255, 75, 92, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.offer-btn:hover {
  box-shadow: 0 20px 60px rgba(255, 99, 105, 0.6);
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  color: #fff8e9;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  perspective: 1200px;
  margin-bottom: 3.5rem;
}

.success-graphic {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.success-inner {
  max-width: 980px;
  width: 100%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: center;
}

.success-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--liquid-gold-neon);
}

.success-inner svg {
  width: 100%;
  height: auto;
  margin: 1rem 0;
}

.success-copy {
  color: var(--text-secondary);
  font-size: 1rem;
}

.pricing-card {
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s ease, border 0.4s ease;
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(249, 206, 99, 0.3), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
}

.pricing-card:hover .card-glow {
  opacity: 1;
}

.pricing-card h3 {
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  color: var(--liquid-gold-neon);
}

.price {
  font-size: 2.2rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.35);
}

.price span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.limit {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.featured {
  border: 1px solid rgba(255, 208, 112, 0.8);
  box-shadow: 0 0 35px rgba(249, 206, 99, 0.3);
  animation: borderPulse 3s linear infinite;
}

.badge {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #111;
  background: linear-gradient(120deg, #fff4d6, var(--liquid-gold));
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
}

footer {
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===== MAIN RIXEON LANDING ===== */

.main-hero {
  min-height: 100vh;
  padding: 2.5rem min(6vw, 4rem) 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  background: radial-gradient(circle at top left, #3b1f1f, #050505);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 110, 64, 0.7));
}

.brand-name {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #ffe7d6;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ghost-btn {
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text-primary);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-ads-btn {
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4b5c, #ff9154);
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(255, 102, 79, 0.55);
}

.nav-ads-btn:hover {
  box-shadow: 0 18px 40px rgba(255, 102, 79, 0.7);
}

.main-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 2fr);
  gap: min(8vw, 5rem);
  align-items: center;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  line-height: 1.15;
  margin: 1.2rem 0;
  background: linear-gradient(120deg, #fff5ea, #ffb46a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 202, 164, 0.9);
}

.lead {
  color: var(--text-secondary);
  max-width: 520px;
}

.hero-cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.primary-cta,
.secondary-cta {
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
}

.primary-cta {
  background: linear-gradient(135deg, #ff9154, #ffd36b);
  color: #1b0d05;
  box-shadow: 0 14px 36px rgba(255, 153, 80, 0.6);
}

.secondary-cta {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffe9d7;
}

.hero-orbit {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(255, 120, 80, 0.25), transparent 60%);
  box-shadow: 0 0 80px rgba(255, 120, 80, 0.35);
}

.orbit-circle {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 212, 173, 0.4);
  animation: spin 24s linear infinite;
}

.orbit-core {
  width: 34%;
  height: 34%;
  border-radius: 50%;
  background: radial-gradient(circle, #ffb46a, #ff4b5c);
  box-shadow: 0 0 60px rgba(255, 132, 82, 0.9);
}

.orbit-caption {
  position: absolute;
  bottom: -3.2rem;
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.services-section {
  padding: 4rem min(6vw, 4rem) 4.5rem;
  background: radial-gradient(circle at top, #120a0c, #050505);
}

.section-header {
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.service-card {
  padding: 1.7rem 1.6rem;
  border-radius: 22px;
  background: radial-gradient(circle at top, rgba(255, 145, 84, 0.16), rgba(7, 7, 7, 0.95));
  border: 1px solid rgba(255, 181, 117, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.link-card .card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.link-card {
  cursor: pointer;
}

.link-card:hover h3,
.link-card:hover p {
  color: #fff3e2;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.8rem;
  color: #ffe1bf;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(255, 139, 83, 0.5);
  border-color: rgba(255, 208, 150, 0.7);
}

.cta-panel {
  padding: 3.5rem min(6vw, 4rem) 4rem;
  background: radial-gradient(circle at center, #240a0f, #050505);
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(40, 12, 16, 0.95));
  border: 1px solid rgba(255, 145, 84, 0.45);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.85);
}

.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.cta-inner p {
  color: var(--text-secondary);
  margin-bottom: 1.6rem;
}

.main-footer {
  padding: 1.8rem min(6vw, 4rem) 2.4rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  background: #050505;
}

@keyframes shimmer {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-3%);
  }
}

@keyframes drift {
  0% {
    background-position: 0 0, 50px 50px;
  }
  100% {
    background-position: -200px -200px, -150px -100px;
  }
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes borderPulse {
  0% {
    box-shadow: 0 0 20px rgba(249, 206, 99, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 220, 150, 0.6);
  }
  100% {
    box-shadow: 0 0 20px rgba(249, 206, 99, 0.2);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .main-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-orbit {
    max-width: 260px;
    margin: 1rem auto 0;
  }
}

