html, body {
  background-color: #000;
  color: var(--white);
  overflow-x: hidden;
}

/* Modal styles moved to relevant sections */

:root {
  --black: #0A0A0A;
  --black-2: #0a0a0a;
  --black-3: #111111;
  --black-4: #1a1a1a;
  --gray-1: #222222;
  --gray-2: #333333;
  --gray-3: #444444; /* Darker */
  --gray-4: #666666; /* Darker */
  --ivory: #F5F1E8;
  --ivory-2: #E8E2D5;
  --gold: #C9A84C;
  --gold-light: #D4B87A;
  --gold-dark: #A08840;
  --gold-glow: rgba(201,168,76,0.15);
  --gold-glow-soft: rgba(201,168,76,0.06);
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --font-ui: 'Space Grotesk', sans-serif;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
  position: fixed !important;
  width: 100% !important;
}

body {
  background: #0A0A0A;
  color: var(--ivory);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: default;
}

/* CUSTOM CURSOR */
.landmark-point {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #ff0000;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: move;
  box-shadow: 0 0 8px rgba(255,0,0,0.6);
  z-index: 100;
}
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--transition), height 0.2s var(--transition), opacity 0.2s;
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(198,168,106,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s var(--transition);
}
.cursor.hover { width: 16px; height: 16px; background: var(--gold); }
.cursor-ring.hover { width: 48px; height: 48px; border-color: rgba(198,168,106,0.6); }

/* SCROLLBAR */
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* SELECTION */
::selection { background: var(--gold-glow); color: var(--gold); }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--transition);
}
.navbar.scrolled {
  padding: 16px 60px;
  background: rgba(5,5,5,0.8);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(198,168,106,0.08);
}
.nav-logo-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  z-index: 2;
}
.nav-logo {
  display: flex;
  align-items: center;
  z-index: 2;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--ivory);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--transition);
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { right: 0; }
.nav-cta-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
}
.nav-cta {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: none;
  padding: 10px 24px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--transition);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(198,168,106,0.25); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(198,168,106,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(198,168,106,0.02) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(198,168,106,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,168,106,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}
.hero-content {
  flex: 0 0 55%;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 1;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--transition) 0.2s forwards;
}
.hero-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--ivory);
  margin-bottom: 28px;
  opacity: 1;
  transform: translateY(30px);
  animation: fadeUp 1s var(--transition) 0.4s forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #999;
  max-width: 420px;
  margin-bottom: 48px;
  opacity: 1;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--transition) 0.6s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 1;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--transition) 0.8s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: none;
  padding: 16px 36px;
  border-radius: 2px;
  cursor: none;
  text-decoration: none;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--transition);
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(198,168,106,0.3);
}
.btn-ghost {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  background: none;
  border: none;
  cursor: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--ivory); }

/* HERO VISUAL */
.hero-visual {
  flex: 0 0 45%;
  position: relative;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: fadeIn 1.5s var(--transition) 1s forwards;
}
.face-scan-container {
  position: relative;
  width: 340px;
  height: 440px;
}
.face-scan-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 40px rgba(198,168,106,0.1));
}
.scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: scanMove 3s linear infinite;
  opacity: 0.6;
}
@keyframes scanMove {
  0% { top: 0; opacity: 0; }
  5% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}
.floating-card {
  position: absolute;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(198,168,106,0.3);
  border-radius: 10px;
  padding: 18px 26px;
  font-family: var(--font-ui);
  white-space: nowrap;
  box-shadow: 0 15px 45px rgba(0,0,0,0.6), 0 0 25px rgba(198,168,106,0.2);
  z-index: 1000;
}
.floating-card-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 4px;
}
.floating-card-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}
.fc-1 { animation: float1 6s ease-in-out infinite; }
.fc-2 { animation: float2 7s ease-in-out infinite; }
.fc-3 { bottom: 80px; left: -40px; animation: float1 8s ease-in-out infinite 1s; }
@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* TRUST BAR */
.trust-bar {
  padding: 60px;
  border-top: 1px solid rgba(198,168,106,0.06);
  border-bottom: 1px solid rgba(198,168,106,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.trust-stat {
  text-align: center;
}
.trust-stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
}
.trust-stat-number span { color: var(--gold); }
.trust-stat-label {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-top: 8px;
}
.trust-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(198,168,106,0.2), transparent);
}

/* SECTIONS */
section {
  padding: 140px 60px;
  position: relative;
}
.section-tag {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: #999;
  line-height: 1.7;
  max-width: 500px;
}

/* HOW IT WORKS */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 80px;
}
.how-card {
  background: var(--black-2);
  border: 1px solid rgba(198,168,106,0.08);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--transition);
  cursor: none;
}
.how-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--transition);
}
.how-card:hover { background: rgba(198,168,106,0.02); border-color: rgba(198,168,106,0.15); }
.how-card:hover::before { transform: scaleX(1); }
.how-number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  color: rgba(198,168,106,0.06);
  line-height: 1;
  position: absolute;
  top: 24px; right: 32px;
}
.how-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(198,168,106,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--gold);
  transition: all 0.3s;
}
.how-card:hover .how-icon {
  background: var(--gold-glow);
  box-shadow: 0 0 20px rgba(198,168,106,0.15);
}
.how-title {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.how-desc {
  font-size: 13px;
  color: #999;
  line-height: 1.7;
}

/* ANALYSIS PREVIEW */
/* ANALYSIS PREVIEW */
.preview-section {
  background: #0A0A0A;
  border: none;
}
.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 80px;
}
.analysis-preview-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.preview-face-area {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(198,168,106,0.1);
  background: #0A0A0A;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preview-metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.metric-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.metric-name {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
}
.metric-score {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}
.metric-bar {
  height: 2px;
  background: rgba(198,168,106,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s var(--transition);
}
/* SHOWCASE SLIDER OVERHAUL */
.showcase-slider-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 40px 0;
  overflow: hidden;
  background: #0A0A0A;
}

.showcase-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  overflow-y: hidden; /* Prevent vertical bleed */
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0 60px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  touch-action: pan-x; /* CRITICAL: mobile touch only horizontal */
  overscroll-behavior-x: contain; /* Prevent page scroll when hitting edges */
}

.showcase-slider::-webkit-scrollbar {
  display: none;
}

.flashcard-item {
  flex: 0 0 600px;
  height: 800px;
  scroll-snap-align: center;
}
.flashcard-item.goat-special {
  transform: scale(1.05);
  transform-origin: top center;
  z-index: 5;
}

.flashcard-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.4s var(--transition);
  background: #0A0A0A;
}

.flashcard-item:hover .flashcard-inner {
  transform: scale(1.05);
}

.flashcard-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  scale: 1.0;
  transition: opacity 0.4s;
}
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  pointer-events: none;
}

.card-tag {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: rgba(0,0,0,0.6);
  padding: 6px 12px;
  border-radius: 4px;
  align-self: flex-start;
  border: 1px solid rgba(198,168,106,0.3);
}

.card-footer {
  display: flex;
  justify-content: space-between;
}

.card-footer .stat {
  display: flex;
  flex-direction: column;
}

.card-footer .stat span {
  font-size: 11px;
  color: #999;
  letter-spacing: 1px;
}

.card-footer .stat strong {
  font-family: var(--font-ui);
  font-size: 24px;
  color: var(--ivory);
}

.slider-controls-main {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: none;
  border: 1px solid rgba(198,168,106,0.2);
  color: var(--gold);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

@media (max-width: 900px) {
  .flashcard-item { flex: 0 0 350px; height: 500px; }
  .showcase-slider { padding: 0 20px; touch-action: pan-x !important; overflow-y: hidden !important; }
}

/* ðY"± Flashcard preview: compact size on mobile */
@media (max-width: 768px) {
  .flashcard-item {
    flex: 0 0 300px !important; /* Smaller cards = less zoom effect */
    height: 420px !important;
  }
  .showcase-slider-wrapper {
    padding: 20px 0 !important;
    overflow: hidden !important; /* Clip wrapper so page bg doesn't show */
  }
  /* Lock page scroll while user swipes the slider */
  .showcase-slider {
    touch-action: pan-x !important;
    overflow-y: hidden !important;
    overscroll-behavior: contain !important;
  }
}

.metric-row.locked .metric-name { color: var(--gray-2); }
.metric-row.locked .metric-score { color: var(--gray-2); filter: blur(4px); }
.metric-row.locked .metric-fill { background: var(--gray-2); filter: blur(2px); }
.unlock-overlay {
  background: rgba(5,5,5,0.9);
  border: 1px solid rgba(198,168,106,0.12);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  margin-top: 8px;
}
.unlock-icon { color: var(--gold); margin-bottom: 12px; }
.unlock-title {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 6px;
}
.unlock-sub {
  font-size: 12px;
  color: #999;
  margin-bottom: 16px;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
}
.testimonial-card {
  background: var(--black-2);
  border: 1px solid rgba(198,168,106,0.08);
  border-radius: 8px;
  padding: 36px;
  transition: all 0.4s var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(198,168,106,0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.star { color: var(--gold); font-size: 12px; }
.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: #999;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid rgba(198,168,106,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}
.testimonial-name {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--ivory);
}
.testimonial-role {
  font-size: 11px;
  color: var(--gray-3);
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 80px auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(198,168,106,0.08);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: none;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--ivory);
  text-align: left;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  color: var(--gold);
  font-size: 16px;
  transition: transform 0.3s var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition);
}
.faq-answer-inner {
  font-size: 14px;
  color: #999;
  line-height: 1.8;
  padding-bottom: 28px;
}

/* CTA SECTION */
.cta-section {
  text-align: center;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(198,168,106,0.04) 0%, transparent 70%);
  border-top: 1px solid rgba(198,168,106,0.06);
}
.cta-section .section-title { max-width: 700px; margin: 0 auto 24px; }
.cta-section .section-subtitle { margin: 0 auto 48px; text-align: center; }

/* FOOTER */
footer {
  padding: 60px;
  border-top: 1px solid rgba(198,168,106,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--ivory);
  text-transform: uppercase;
}
.footer-logo span { color: var(--gold); }
.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray-3);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 11px;
  color: var(--gray-2);
  letter-spacing: 0.05em;
}

/* ANIMATIONS */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
  visibility: visible !important;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* PARTICLES */
#particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

/* SPOTLIGHT */
.spotlight {
  position: fixed;
  width: 600px; height: 800px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(198,168,106,0.03) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* MOBILE */
@media (max-width: 900px) {
  .navbar { padding: 20px 24px; }
  .navbar.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .hero { flex-direction: column; padding: 120px 24px 80px; min-height: auto; gap: 60px; }
  .hero-content { flex: none; }
  .hero-visual { flex: none; height: 320px; width: 100%; transform: scale(0.85); }
  .trust-bar { flex-wrap: wrap; padding: 40px 24px; gap: 24px; justify-content: center; }
  .trust-divider { display: none; }
  section { padding: 80px 24px; }
  .how-grid { grid-template-columns: 1fr; gap: 2px; }
  .preview-grid, .analysis-preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 24px; text-align: center; padding: 40px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .modal-container { padding: 40px 24px; }
  .gender-cards { grid-template-columns: 1fr; }
  .modal-container {
    padding: 40px 24px;
    max-height: 95vh;
    overflow-y: auto;
    border-radius: 12px;
  }
  .modal-close {
    top: 20px;
    right: 20px;
  }
  .modal-title {
    font-size: 24px;
  }
}

/* MODAL OVERLAY (Pure Black) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97) !important;
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--transition);
}
.modal-overlay.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
body.modal-open {
  background: #0a0a0a;
}

/* PREMIUM BLUR & SHIMMER */
.blurred-text {
  filter: blur(8px);
  user-select: none;
  opacity: 0.6;
}
.blurred-card {
  filter: blur(5px);
  pointer-events: none;
  opacity: 0.4;
  transition: all 0.5s ease;
}
.shimmer {
  background: linear-gradient(90deg, transparent, rgba(198,168,106,0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* PREMIUM UNLOCK MODAL */
.premium-waiting-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.9);
  backdrop-filter: blur(20px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}
.waiting-container {
  width: 100%;
  max-width: 400px;
  background: var(--black-2);
  border: 1px solid rgba(198,168,106,0.15);
  padding: 40px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.waiting-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 24px;
  animation: pulse-gold 2s infinite;
}
@keyframes pulse-gold {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(198,168,106,0)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 20px rgba(198,168,106,0.4)); }
}
.waiting-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ivory);
  margin-bottom: 12px;
}
.waiting-sub {
  color: #999;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* MODAL CONTAINER COMPACT */
.modal-container {
  width: min(860px, 92vw) !important;
  max-width: 92vw !important;
  max-height: 88vh !important;
  height: auto !important;
  background: #111111;
  background-image: radial-gradient(rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 16px;
  padding: 0; /* Padding handled by steps */
  position: relative;
  transform: translateY(30px);
  transition: transform 0.6s var(--transition);
  box-shadow: 0 40px 120px rgba(0,0,0,0.9);
  overflow: hidden;
  margin: auto !important;
}
.modal-container.modal-scrollable {
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 60px;
  scrollbar-width: thin;
  scrollbar-color: #C9A84C transparent;
}
.modal-overlay.active .modal-container {
  transform: translateY(0);
}

/* ðY"± MOBILE RESULTS OPTIMIZATION */
@media (max-width: 768px) {
  .modal-overlay {
    align-items: flex-start !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0 !important;
  }
  
  .modal-container {
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 100dvh !important;
    height: auto !important;
    max-height: none !important;
    padding: 20px 20px 80px 20px !important; /* Padding bottom 80px per la barra del browser */
    border-radius: 0 !important;
    border: none !important;
    margin: 0 !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    overflow-y: visible !important; /* Scroll gestito da modal-overlay */
    overflow-x: hidden !important;
    background: #0a0a0a !important;
  }
  
  .modal-step#step-results {
    padding: 0 !important;
    overflow-y: visible !important;
    max-height: none !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
    /* overflow handled by parent */
  }
  .results-dashboard {
    padding: 0 !important;
    width: 100% !important;
  }

  /* Fix anatomical guide 1:1 format */
  .landmark-guide-mini {
    width: 120px !important;
    height: 120px !important;
    aspect-ratio: 1 / 1 !important;
    flex: 0 0 120px !important;
    margin: 0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #000 !important;
    border: 1px solid rgba(201,168,76,0.3) !important;
  }

  .landmark-guide-mini img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .ars-teaser {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .ars-metrics-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    padding-bottom: 40px !important;
  }

  .ars-card {
    width: 100% !important;
    margin: 0 !important;
  }
  
  .teaser-header {
    flex-direction: column !important;
    gap: 20px !important;
    padding: 20px 0 !important;
  }
  
  .ring-inner {
    transform: scale(0.75); /* More compact ring */
  }
  .teaser-header {
    padding: 10px 0 !important;
    gap: 10px !important;
  }
  .teaser-header h2 {
    font-size: 20px !important;
  }
  .teaser-header p {
    font-size: 13px !important;
  }
  .ars-teaser button#unlock-report-btn {
    padding: 12px 20px !important;
    font-size: 14px !important;
  }
}

.modal-decoration-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
}

.modal-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
}
.modal-corner.top-left {
  top: 0; left: 0;
  border-top: 1px solid rgba(201,168,76,0.4);
  border-left: 1px solid rgba(201,168,76,0.4);
}
.modal-corner.bottom-right {
  bottom: 0; right: 0;
  border-bottom: 1px solid rgba(201,168,76,0.4);
  border-right: 1px solid rgba(201,168,76,0.4);
}

.modal-close {
  position: absolute;
  top: 24px; right: 24px;
  color: #999;
  font-size: 18px;
  cursor: none;
  transition: all 0.3s;
  z-index: 1000;
}
.modal-close:hover { color: #C9A84C; transform: rotate(90deg); }

.modal-step { text-align: center; display: flex; flex-direction: column; align-items: center;
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px;
  overflow-y: auto;
  max-height: 88vh;
}
.modal-step#step-landmark-editor {
  padding: 0;
  overflow: hidden;
  max-height: 88vh;
}
.modal-step#step-results {
  padding: 40px 32px;
  text-align: left;
  align-items: stretch;
}
.modal-step.active { display: flex !important; }

.modal-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #C9A84C;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 8px;
}
.modal-title em {
  color: #C9A84C;
  font-style: italic;
}

.modal-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #999;
  margin-bottom: 40px;
}

/* GENDER CARDS REDESIGN */
.gender-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}
.gender-card {
  background: #0d0d0d;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: none;
  transition: all 0.4s var(--transition);
}
.gender-card i { font-size: 28px; color: #C9A84C; transition: transform 0.4s; }
.gender-card span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #999;
  transition: color 0.3s;
}
.gender-card:hover {
  background: #111111;
  border-color: rgba(201,168,76,0.6);
}
.gender-card:hover i { transform: scale(1.1); }
.gender-card.selected {
  border-color: #C9A84C;
  background: rgba(201, 168, 76, 0.05);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.1);
}
.gender-card.selected span { color: #C9A84C; }

/* UPLOAD BODY: Dropzone on top, preview below */
.upload-body { align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Remove the side-by-side class â?" no longer needed */
.upload-body.has-preview {
  flex-direction: column;
}

.upload-zone {
  height: 130px !important;
  border: 1px dashed rgba(201,168,76,0.3);
  background: #0d0d0d;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.upload-zone i { font-size: 24px; color: #C9A84C; position: relative; z-index: 2; }
.upload-text {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #C9A84C;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.upload-hint {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  color: var(--gray-3);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 3px 8px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}

/* PHOTO PREVIEW: full-width, auto height matches image ratio */
.photo-preview {
  width: 100%;
  height: auto;
  min-height: 180px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.3);
  background: #0A0A0A;
}
.photo-preview img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  background: #0A0A0A;
}
.remove-photo-btn {
  position: absolute;
  top: 8px; right: 8px;
  width: 24px; height: 24px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  color: #C9A84C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 1000;
}
.remove-photo-btn:hover {
  background: #C9A84C;
  color: #0a0a0a;
}

.scan-line-anim {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
  box-shadow: 0 0 15px #C9A84C;
  z-index: 1;
  opacity: 0.4;
  animation: scan 2s ease-in-out infinite alternate;
}
@keyframes scan {
  from { top: 10%; }
  to { top: 90%; }
}

/* BUTTONS & FOOTER REDESIGN */
.modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 40px;
}
.btn-ghost {
  background: transparent;
  border: none;
  color: #999;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  cursor: none;
  transition: color 0.3s;
}
.btn-ghost:hover { color: #fff; }

.btn-primary {
  background: #C9A84C;
  color: #0a0a0a;
  border: none;
  border-radius: 4px;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(201,168,76,0.2);
}
.btn-primary:disabled {
  background: #222;
  color: #444;
  cursor: not-allowed;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255,255,255,0.2),
    transparent
  );
  transform: rotate(45deg);
  animation: shimmer-btn 4s infinite;
}
@keyframes shimmer-btn {
  0% { transform: translate(-100%, -100%) rotate(45deg); }
  100% { transform: translate(100%, 100%) rotate(45deg); }
}

/* LOADING VISUAL */
.loading-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.loading-ring {
  width: 80px; height: 80px;
  border: 2px solid rgba(198,168,106,0.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loading-text {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* PREVIEW / LANDMARK EDITOR */
.preview-container {
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--black-3);
  margin-bottom: 20px;
}
.landmark-point {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: move;
  box-shadow: 0 0 10px var(--gold);
  z-index: 1000;
}
.landmark-line {
  position: absolute;
  background: rgba(198,168,106,0.3);
  height: 1px;
  transform-origin: left center;
  pointer-events: none;
}

/* LANDMARK EDITOR */
.landmark-editor-container {
  display: flex !important;
  gap: 0 !important;
  height: 550px !important;
  width: 100% !important;
  max-width: 100% !important;
  background: transparent !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border-radius: 12px !important;
}

.landmark-viewport {
  flex: 2 !important;
  background: #000 !important;
  border-radius: 12px 0 0 12px !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: crosshair !important;
  padding-right: 20px; /* Slight shift to the left as requested */
  touch-action: none !important; /* Prevents double-tap zoom and scrolling during landmark positioning */
}

/* Global prevention of double-tap zoom on interactive elements */
a, button, .gender-card, .upload-zone, .landmark-viewport {
  touch-action: manipulation;
}

#editor-image {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

.crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.crosshair-line-h {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.crosshair-line-v {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.crosshair-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px #fff;
}

.landmark-sidebar {
  flex: 1 !important;
  background: #0d0d0d !important;
  border-left: 1px solid rgba(201,168,76,0.15) !important;
  padding: 32px 28px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  overflow-y: auto !important;
  justify-content: flex-start !important;
  position: relative;
  margin-left: -1px; /* Slight overlap to ensure border sync */
}

.landmark-progress {
  margin-bottom: 0;
  text-align: center;
}

.landmark-progress span {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gray-3);
  text-transform: uppercase;
}

.progress-bar-small {
  height: 2px;
  background: var(--black-4);
  margin-top: 8px;
  border-radius: 1px;
  overflow: hidden;
}

}
.btn-primary:disabled {
  background: #222;
  color: #444;
  cursor: not-allowed;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255,255,255,0.2),
    transparent
  );
  transform: rotate(45deg);
  animation: shimmer-btn 4s infinite;
}
@keyframes shimmer-btn {
  0% { transform: translate(-100%, -100%) rotate(45deg); }
  100% { transform: translate(100%, 100%) rotate(45deg); }
}

/* LOADING VISUAL */
.loading-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.loading-ring {
  width: 80px; height: 80px;
  border: 2px solid rgba(198,168,106,0.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loading-text {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* PREVIEW / LANDMARK EDITOR */
.preview-container {
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--black-3);
  margin-bottom: 20px;
}
.landmark-point {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: move;
  box-shadow: 0 0 10px var(--gold);
  z-index: 1000;
}
.landmark-line {
  position: absolute;
  background: rgba(198,168,106,0.3);
  height: 1px;
  transform-origin: left center;
  pointer-events: none;
}

/* LANDMARK EDITOR */
.landmark-editor-container {
  display: flex !important;
  gap: 0 !important;
  height: 550px !important;
  width: 100% !important;
  max-width: 100% !important;
  background: transparent !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border-radius: 12px !important;
}

.landmark-viewport {
  flex: 2 !important;
  background: #000 !important;
  border-radius: 12px 0 0 12px !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: crosshair !important;
  padding-right: 20px; /* Slight shift to the left as requested */
  touch-action: none !important; /* Prevents double-tap zoom and scrolling during landmark positioning */
}

/* Global prevention of double-tap zoom on interactive elements */
a, button, .gender-card, .upload-zone, .landmark-viewport {
  touch-action: manipulation;
}

#editor-image {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

.crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.crosshair-line-h {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.crosshair-line-v {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.crosshair-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px #fff;
}

.landmark-sidebar {
  flex: 1 !important;
  background: #0d0d0d !important;
  border-left: 1px solid rgba(201,168,76,0.15) !important;
  padding: 32px 28px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  overflow-y: auto !important;
  justify-content: flex-start !important;
  position: relative;
  margin-left: -1px; /* Slight overlap to ensure border sync */
}

.landmark-progress {
  margin-bottom: 0;
  text-align: center;
}

.landmark-progress span {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gray-3);
  text-transform: uppercase;
}

.progress-bar-small {
  height: 2px;
  background: var(--black-4);
  margin-top: 8px;
  border-radius: 1px;
  overflow: hidden;
}

#landmark-progress-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.3s ease;
}

#landmark-name {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 24px !important;
  color: var(--gold);
  margin-bottom: 8px;
  text-align: center;
  font-style: italic;
}

#landmark-instr {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.02em;
}

.landmark-guide-mini {
  flex-shrink: 0;
  height: 200px;
  width: 100%;
  background: #000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

.reference-photo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#guide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landmark-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.landmark-controls .btn-ghost {
  order: 2;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.2em;
  opacity: 0.5;
}

.landmark-controls .btn-primary {
  order: 1;
  background: var(--gold) !important;
  color: #000 !important;
  font-weight: 800 !important;
  letter-spacing: 0.15em !important;
  padding: 16px !important;
  border-radius: 8px !important;
  font-size: 10px !important;
  box-shadow: 0 4px 15px rgba(201,168,76,0.15);
  text-transform: uppercase !important;
}
.res-card {
  background: var(--black-3);
  border: 1px solid rgba(198,168,106,0.1);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: all 0.3s;
}
.res-label {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}
.res-value {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
}
.res-value span { font-size: 14px; color: var(--gray-3); }

.res-card.locked {
  opacity: 0.6;
}
.res-card.locked .res-value {
  filter: blur(8px);
}
.lock-tag {
  position: absolute;
  top: 12px; right: 12px;
  color: var(--gold);
  font-size: 13px;
}

.overall-score-card {
  background: linear-gradient(135deg, var(--black-3) 0%, var(--black-4) 100%);
  border: 1px solid rgba(198,168,106,0.2);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}
.overall-score-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(198,168,106,0.05) 0%, transparent 70%);
}
.blurred-score {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--gold);
  filter: blur(12px);
  margin: 10px 0;
  letter-spacing: 4px;
}

/* REPORT SECTION */
.report-section {
  background: #f8f9fa; /* Light background for the clean report look as seen in screenshots */
  padding: 100px 20px;
  min-height: 100vh;
  color: #333;
}
.report-container {
  max-width: 800px;
  margin: 0 auto;
}
.report-header {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}
.report-overall-circle {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}
.circle-progress {
  position: relative;
  width: 120px;
  height: 120px;
}
.circle-progress svg {
  transform: rotate(-90deg);
}
.circle-progress circle {
  fill: none;
  stroke-width: 8;
}
.circle-progress .bg { stroke: #eee; }
.circle-progress .fg { 
  stroke: #28a745; 
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease-out;
}
.circle-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main-score { font-size: 32px; font-weight: 700; color: #333; }
.sub-score { font-size: 13px; color: #888; }
.report-overall-text h3 { font-size: 14px; letter-spacing: 2px; color: #888; margin-bottom: 8px; }
.report-overall-text p { font-size: 14px; color: #666; }

.report-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.report-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.report-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.report-card-title { font-size: 18px; font-weight: 600; color: #333; }
.report-status-tag {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.status-good { background: #d4edda; color: #155724; }
.status-warn { background: #fff3cd; color: #856404; }
.status-alert { background: #f8d7da; color: #721c24; }

.report-card-desc { font-size: 14px; color: #777; line-height: 1.6; margin-bottom: 20px; }
.report-card-val { font-size: 16px; font-weight: 600; color: #333; }

.range-bar-container {
  margin: 30px 0;
  position: relative;
}
.range-label { font-size: 12px; color: #888; text-align: center; display: block; margin-bottom: 8px; }
.range-bar {
  height: 12px;
  border-radius: 10px;
  background: linear-gradient(to right, #ff4d4d, #ffcc00, #28a745, #ffcc00, #ff4d4d);
}
.range-indicator {
  position: absolute;
  top: 18px;
  width: 16px;
  height: 16px;
  background: white;
  border: 3px solid #28a745;
  border-radius: 50%;
  transform: translateX(-50%);
}
.report-card-meta { font-size: 12px; color: #aaa; }
.report-card-img {
  width: 100%;
  border-radius: 8px;
  margin-top: 10px;
  border: 1px solid #eee;
}

.lm-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 5px var(--gold);
  z-index: 5;
}

.visual-landmarks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pay-input {
  width: 100%;
  background: var(--black-4);
  border: 1px solid var(--gray-1);
  padding: 15px;
  color: var(--ivory);
  border-radius: 4px;
  outline: none;
  font-family: var(--font-ui);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--gold-glow);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}

#mesh-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
}

.debug-overlay {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(0,0,0,0.8);
  color: #0f0;
  font-family: monospace;
  font-size: 13px;
  padding: 10px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 1000;
  display: none;
}

.lm-point-manual {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: move;
  z-index: 5;
  box-shadow: 0 0 10px var(--gold-glow);
  border: 1px solid white;
  transition: transform 0.2s;
}

.lm-point-manual:hover {
  transform: translate(-50%, -50%) scale(1.5);
  background: white;
}

.lm-point-manual.active {
  background: #ff0;
  box-shadow: 0 0 20px #ff0;
  border-color: black;
}

/* â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"? 
   ARS â?" AESTHETIC RATING SCHEMA UI
â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?  */

.ars-teaser {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 4px;
}

.ars-card {
  background: rgba(26,26,26,0.95);
  border: 1px solid rgba(198,168,106,0.15);
  border-radius: 12px;
  padding: 18px 20px;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ars-card:hover {
  border-color: rgba(198,168,106,0.4);
  box-shadow: 0 0 20px rgba(198,168,106,0.06);
}

.ars-locked {
  opacity: 0.8;
  position: relative;
  overflow: hidden;
}

.ars-teaser-locked {
  opacity: 0.9;
}

.ars-blurred-content {
  filter: blur(8px);
  user-select: none;
  pointer-events: none;
  opacity: 0.5;
}

.ars-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.ars-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
}

.ars-desc {
  font-size: 11px;
  color: #999;
  line-height: 1.55;
  margin-bottom: 12px;
}

/* Label badges */
.ars-label-badge, .ars-lock-badge {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.lbl-excellent  { background: rgba(34,197,94,0.18);  color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.lbl-optimal    { background: rgba(198,168,106,0.18); color: var(--gold); border: 1px solid rgba(198,168,106,0.35); }
.lbl-good       { background: rgba(99,179,237,0.15);  color: #63b3ed; border: 1px solid rgba(99,179,237,0.3); }
.lbl-average    { background: rgba(203,213,225,0.1);  color: #999; border: 1px solid rgba(203,213,225,0.2); }
.lbl-poor       { background: rgba(248,113,113,0.15); color: #f87171; border: 1px solid rgba(248,113,113,0.3); }

.ars-lock-badge {
  background: rgba(198,168,106,0.1);
  color: var(--gold);
  border: 1px solid rgba(198,168,106,0.2);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
}

/* Gradient bar */
.ars-bar-track {
  position: relative;
  height: 7px;
  border-radius: 4px;
  overflow: visible;
  margin-bottom: 10px;
}

.ars-bar-gradient {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(to right, #ef4444, #f97316, #eab308, #22c55e, #eab308, #f97316, #ef4444);
}

.ars-bar-marker {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: var(--ivory);
  border: 2.5px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(198,168,106,0.6), 0 2px 6px rgba(0,0,0,0.5);
  transition: left 0.4s var(--transition);
  z-index: 2;
}

.ars-ideal-zone {
  position: absolute;
  top: 0;
  height: 100%;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.25);
}

/* Score row */
.ars-score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.ars-range-text {
  font-size: 13px;
  color: #999;
  flex: 1;
}

.ars-range-text strong {
  color: var(--ivory-2);
}

/* Compact Teaser UI matching user screenshot */
.teaser-header {
  background: rgba(15,15,15,0.6);
  border: 1px solid rgba(198,168,106,0.1);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.teaser-score-ring {
  position: relative;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.teaser-score-ring svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.teaser-score-ring circle {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
}

.teaser-score-ring .ring-bg {
  stroke: rgba(255,255,255,0.05);
}

.teaser-score-ring .ring-fg {
  stroke-dasharray: 264;
  transition: stroke-dashoffset 1s ease-out;
}

.ring-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ring-score {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--ivory);
  line-height: 1;
}

.ring-denom {
  font-family: var(--font-ui);
  font-size: 13px;
  color: #999;
  letter-spacing: 0.1em;
  margin-top: -2px;
}

.teaser-tier-info {
  flex: 1;
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.tier-headline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 4px;
}

.tier-score-blur {
  font-family: var(--font-ui);
  font-size: 11px;
  color: #999;
  margin-bottom: 12px;
}

.psl-rating-teaser {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.psl-label {
  font-family: var(--font-ui);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.psl-locked-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  width: fit-content;
}

.psl-locked-badge i {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.blurred-text {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  filter: blur(5px);
  user-select: none;
}

.ars-ai-quote {
  font-family: var(--font-main);
  font-style: italic;
  font-size: 13px;
  color: #999;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.ars-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  color: var(--gray-3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.blurred-inline {
  filter: blur(6px);
  user-select: none;
  background: rgba(255,255,255,0.1);
  padding: 0 4px;
  border-radius: 2px;
}

/* Section labels */
.ars-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 20px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(198,168,106,0.15);
}

.ars-ai-narrative {
  font-style: italic;
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  text-align: center;
  padding: 0 15px;
  margin-bottom: 24px;
}

/* Locked Wall - Payment Waiting */
.ars-locked-wall {
  background: rgba(15,15,15,0.8);
  border: 1.5px solid rgba(198,168,106,0.3);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  margin-top: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.waiting-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(198,168,106,0.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  margin-bottom: 10px;
}

.locked-wall-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ivory);
}

.locked-wall-desc {
  font-family: var(--font-ui);
  font-size: 14px;
  color: #999;
  line-height: 1.6;
  max-width: 400px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Locked Teaser Cards */
.ars-locked-teaser {
  background: rgba(255,255,255,0.02) !important;
  border: 1px dashed rgba(255,255,255,0.1) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 30px !important;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.ars-locked-teaser:hover { opacity: 1; }
.ars-lock-icon { font-size: 24px; color: var(--gold); text-shadow: 0 0 15px rgba(198,168,106,0.4); }
.ars-locked-text { font-family: var(--font-ui); font-size: 11px; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: 0.1em; }

/* â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"? Blurred locked card â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"? */
.ars-card-locked {
  position: relative;
  overflow: hidden;
  background: rgba(10,10,12,0.7) !important;
  border: 1px solid rgba(198,168,106,0.08) !important;
  box-shadow: 0 0 30px rgba(0,0,0,0.6), inset 0 0 20px rgba(0,0,0,0.3);
}
.ars-locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(5,5,5,0.55);
  backdrop-filter: blur(2px);
  z-index: 2;
  border-radius: inherit;
  transition: background 0.25s ease;
}
.ars-card-locked:hover .ars-locked-overlay { background: rgba(5,5,5,0.7); }
.ars-lock-ico {
  font-size: 28px;
  color: var(--gold);
  opacity: 0.8;
  text-shadow: 0 0 20px rgba(198,168,106,0.5);
}
.ars-lock-label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"? Locked section label â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"? */
.ars-section-locked {
  color: rgba(255,255,255,0.25) !important;
  border-color: rgba(255,255,255,0.05) !important;
  margin-top: 8px !important;
}
.ars-teaser-locked {
  opacity: 0.75;
  position: relative;
}
.ars-teaser-locked::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, #050505);
  pointer-events: none;
  z-index: 3;
}

/* â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"? Premium Unlock Wall â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"? */
.prem-wall {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding: 30px 24px 28px;
  border-radius: 24px;
  border: 1.5px solid rgba(198,168,106,0.25);
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(20px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  box-shadow: 0 0 60px rgba(198,168,106,0.07), 0 30px 80px rgba(0,0,0,0.6);
}
.prem-wall-glow {
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(198,168,106,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.prem-wall-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(198,168,106,0.3);
  background: rgba(198,168,106,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(198,168,106,0.6);
}
.prem-wall-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ivory);
  letter-spacing: -0.02em;
  margin: 0;
}
.prem-wall-sub {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  max-width: 340px;
  margin: 0;
}
.prem-wall-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  width: 100%;
  max-width: 300px;
}
.prem-wall-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ivory);
  font-weight: 500;
}
.prem-wall-list li i {
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
}
.prem-wall-note {
  font-size: 11px;
  color: var(--gray-3);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"? Premium CTA Button â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"? */
.prem-btn {
  width: 100%;
  max-width: 340px;
  padding: 18px 28px;
  border-radius: 14px;
  border: 1.5px solid var(--gold);
  background: #0A0A0A;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 0 20px rgba(198,168,106,0.15), 0 8px 30px rgba(0,0,0,0.5);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.prem-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(198,168,106,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.prem-btn:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 40px rgba(198,168,106,0.35), 0 12px 40px rgba(0,0,0,0.6);
  transform: translateY(-3px) scale(1.02);
}
.prem-btn:hover::before { opacity: 1; }
.prem-btn:active { transform: translateY(-1px) scale(0.99); }

.ars-score-denom {
  font-size: 11px;
  color: var(--gray-3);
  font-weight: 400;
}


/* Full report ARS cards */
.report-grid .ars-card {
  margin-bottom: 16px;
  padding: 24px 28px;
}

.report-grid .ars-title {
  font-size: 13px;
}

.report-grid .ars-desc {
  font-size: 12px;
}

.report-grid .ars-score-val {
  font-size: 28px;
}

.report-grid .ars-bar-track {
  height: 9px;
  margin: 14px 0;
}

/* Success icon for payment completion */
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  border: 2px solid #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #4ade80;
}

/* â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"? 
   LOOKMAXXING SCORE RING + TIER UI
â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?  */

.teaser-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  padding: 16px 20px;
  background: rgba(18,18,18,0.9);
  border: 1px solid rgba(198,168,106,0.15);
  border-radius: 16px;
  backdrop-filter: blur(20px);
}

.teaser-score-box {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--tier-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
}

.score-box-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.score-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--tier-color);
  text-shadow: 0 0 15px var(--tier-color);
}

.score-label {
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.teaser-tier-info {
  flex: 1;
  min-width: 0;
}

.tier-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid;
  border-radius: 20px;
  margin-bottom: 8px;
}

.tier-headline {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 4px;
  line-height: 1.4;
}

.tier-score-blur {
  font-size: 11px;
  color: #999;
}

.blurred-inline {
  display: inline-block;
  filter: blur(5px);
  user-select: none;
  color: var(--ivory);
  font-weight: 700;
}

/* AI Narrative */
.ars-ai-narrative {
  font-size: 11px;
  color: #999;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 12px;
  padding: 10px 14px;
  background: rgba(198,168,106,0.04);
  border-left: 2px solid rgba(198,168,106,0.3);
  border-radius: 0 8px 8px 0;
}

/* Section label */
.ars-section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gray-3);
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-left: 2px;
}

/* Weight dots on metric card */
.ars-weight-dots {
  display: inline-block;
  margin-left: 8px;
  font-size: 7px;
  letter-spacing: 1px;
  color: var(--gold);
  opacity: 0.6;
  vertical-align: middle;
}

/* Locked wall */
.ars-locked-wall {
  margin-top: 14px;
  padding: 16px 18px;
  background: rgba(18,18,18,0.8);
  border: 1px solid rgba(198,168,106,0.12);
  border-radius: 12px;
}

.locked-wall-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
}

.locked-wall-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}

.locked-pill {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  color: #999;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 3px 10px;
  letter-spacing: 0.04em;
}

/* Report tier badge in full report page */
.report-tier-badge {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border: 1px solid;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.report-ai-narrative {
  font-size: 13px;
  color: #999;
  font-style: italic;
  line-height: 1.7;
  padding: 16px 20px;
  background: rgba(198,168,106,0.04);
  border-left: 2px solid rgba(198,168,106,0.35);
  border-radius: 0 10px 10px 0;
  margin-bottom: 24px;
}

/* ---------------------------------------------------
   PAYMENT FORM â?" REALISTIC CARD UI
--------------------------------------------------- */

.pay-card-visual {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 16px;
  padding: 22px 22px 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.pay-card-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(198,168,106,0.06);
  pointer-events: none;
}

.pay-card-chip {
  width: 36px; height: 28px;
  background: linear-gradient(135deg, #c6a86a 0%, #f0d48a 50%, #c6a86a 100%);
  border-radius: 5px;
  margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
  position: relative;
}

.pay-card-chip::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,0.2);
}

.pay-card-number-display {
  font-family: 'Courier New', monospace;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.pay-card-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3px;
  font-family: var(--font-ui);
}

.pay-card-expiry-display {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 2px;
}

.pay-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pay-error {
  display: none;
  font-size: 13px;
  color: #f87171;
  margin-top: 4px;
  font-family: var(--font-ui);
}

.pay-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--ivory);
  font-size: 14px;
  padding: 10px 14px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s;
  font-family: var(--font-ui);
  outline: none;
}

.pay-input:focus {
  border-color: var(--gold);
  background: rgba(198,168,106,0.05);
  box-shadow: 0 0 0 2px rgba(198,168,106,0.12);
}

.pay-input::placeholder {
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
}

/* ---------------------------------------------------
   AUTO-CURSOR GUIDE SYSTEM
   Gold crosshair = AI/user position (smooth transition)
   Cyan ghost     = expected anatomical position
--------------------------------------------------- */

/* Smooth movement + landing pulse on crosshair */
.crosshair {
    transition: left 0.40s cubic-bezier(0.4, 0, 0.2, 1),
                top  0.40s cubic-bezier(0.4, 0, 0.2, 1);
}

.crosshair-landing .crosshair-center {
    animation: crosshair-land 0.5s cubic-bezier(0.2, 0, 0.3, 1) forwards;
}

@keyframes crosshair-land {
    0%   { transform: translate(-50%, -50%) scale(2.8); opacity: 0.2; }
    60%  { transform: translate(-50%, -50%) scale(0.9); opacity: 1;   }
    100% { transform: translate(-50%, -50%) scale(1);   opacity: 1;   }
}

/* Guide ghost â?" cyan pulsing ring at expected anatomical position */
.guide-ghost {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 6;
    transition: left 0.40s cubic-bezier(0.4, 0, 0.2, 1),
                top  0.40s cubic-bezier(0.4, 0, 0.2, 1);
}

.guide-ghost-ring {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(80, 220, 255, 0.85);
    box-shadow: 0 0 10px rgba(80, 220, 255, 0.4),
                inset 0 0 6px rgba(80, 220, 255, 0.15);
    animation: ghost-pulse 1.6s ease-in-out infinite;
    position: relative;
}

.guide-ghost-ring::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(80, 220, 255, 0.25);
    animation: ghost-pulse 1.6s ease-in-out infinite 0.4s;
}

@keyframes ghost-pulse {
    0%, 100% { transform: scale(1);    opacity: 0.85; }
    50%       { transform: scale(1.35); opacity: 0.35; }
}

.guide-ghost-label {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: var(--font-ui, 'Space Grotesk', sans-serif);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(80, 220, 255, 0.8);
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(80, 220, 255, 0.5);
    pointer-events: none;
}

/* ------------------------------------------------------
   LANDMARK REVIEW EDITOR â?" All-Points Simultaneous View
   ------------------------------------------------------ */
#step-landmark-review { display:none; flex-direction:column; height:100%; padding:0; }
#step-landmark-review.active { display:flex; }

.review-header { padding:14px 20px 8px; flex-shrink:0; }
.review-subtitle { font-size:11px; color:rgba(255,255,255,0.45); letter-spacing:0.06em; margin-top:4px; display:flex; align-items:center; gap:6px; flex-wrap:wrap; }
.dot-legend { display:inline-block; width:9px; height:9px; border-radius:50%; vertical-align:middle; }
.dot-legend.green  { background:#00E676; box-shadow:0 0 6px rgba(0,230,118,0.6); }
.dot-legend.yellow { background:#FFD700; box-shadow:0 0 6px rgba(255,215,0,0.6); }

.review-layout { display:flex; flex:1; gap:14px; padding:0 16px 16px; min-height:0; overflow:hidden; }

/* Canvas wrap â?" image + canvas overlay */
.review-canvas-wrap {
    position:relative; flex:1; border-radius:10px; overflow:hidden;
    background:#0a0a0c; border:1px solid rgba(255,255,255,0.08);
    min-height:0;
}
#review-image {
    width:100%; height:100%; object-fit:contain; display:block;
    user-select:none; pointer-events:none;
}
#review-canvas {
    position:absolute; inset:0; width:100%; height:100%;
    cursor:default;
}

/* Sidebar */
.review-sidebar {
    width:200px; flex-shrink:0; display:flex; flex-direction:column; gap:10px;
}
.review-selected-info {
    flex:1; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08);
    border-radius:10px; padding:12px; min-height:100px; max-height:260px; overflow-y:auto;
}
.review-no-selection {
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    gap:8px; height:100%; color:rgba(255,255,255,0.35); font-size:11px; text-align:center;
    line-height:1.5;
}
.review-point-card { display:flex; flex-direction:column; gap:6px; }
.review-point-name { font-weight:700; font-size:12px; color:#fff; letter-spacing:0.04em; }
.review-point-status { font-size:10px; padding:3px 7px; border-radius:20px; width:fit-content; }
.status-auto   { background:rgba(0,230,118,0.15); color:#00E676; border:1px solid rgba(0,230,118,0.25); }
.status-manual { background:rgba(255,215,0,0.15);  color:#FFD700; border:1px solid rgba(255,215,0,0.25); }
.review-point-coords { font-size:10px; color:rgba(255,255,255,0.4); font-family:monospace; }
.review-reset-btn {
    /* -----------------------------------------------------------
   FULL REPORT DASHBOARD - Dark Premium Layout
----------------------------------------------------------- */

#full-report {
    min-height: 100vh;
    background: #050505;
    padding: 0;
    font-family: var(--font-main);
    color: var(--ivory);
}

.rpt-layout {
    display: flex;
    align-items: flex-start;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    gap: 0;
}

/* -- LEFT SIDEBAR --------------------------------------- */
.rpt-sidebar {
    width: 380px;
    flex-shrink: 0;
    background: #0a0a0a;
    border-right: 1px solid rgba(255,255,255,0.05);
    min-height: 100vh;
    padding-bottom: 40px;
    position: sticky;
    top: 0;
    overflow-y: auto;
    max-height: 100vh;
}

.rpt-photo-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #0A0A0A;
}

.rpt-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0.8;
}

.rpt-photo-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 12px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: var(--font-ui);
}

.rpt-score-hero {
    padding: 32px 32px 0;
}

.rpt-score-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--ivory);
    line-height: 1;
    font-family: var(--font-display);
}

.rpt-score-denom {
    font-size: 24px;
    color: #999;
    font-weight: 400;
}

.rpt-score-bar-wrap {
    margin-top: 10px;
}

.rpt-score-bar {
    height: 4px;
    border-radius: 99px;
    background: rgba(255,255,255,0.05);
    position: relative;
}

.rpt-score-bar-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    border-radius: 99px;
    background: var(--gold);
    box-shadow: 0 0 15px var(--gold-glow);
}

.rpt-percentile {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(198,168,106,0.05);
    border: 1px solid rgba(198,168,106,0.1);
    border-radius: 12px;
}

.rpt-pct-badge {
    background: var(--gold);
    color: #000;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 8px;
    font-family: var(--font-ui);
}

.rpt-pct-label {
    color: var(--gray-3);
    font-size: 11px;
    font-weight: 500;
}

/* -- MAIN CONTENT --------------------------------------- */
.rpt-main {
    flex: 1;
    padding: 40px 60px;
}

.rpt-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.rpt-title-group h1 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--ivory);
    letter-spacing: -0.02em;
}

.rpt-title-group p {
    font-size: 14px;
    color: #999;
    margin-top: 4px;
}

.rpt-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.rpt-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.rpt-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(198,168,106,0.2);
    transform: translateY(-4px);
}

.rpt-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.rpt-card-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--ivory);
}

.rpt-card-score {
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 800;
    color: var(--gold);
}

.rpt-card-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Mobile optimizations */
@media (max-width: 1024px) {
    .rpt-layout { flex-direction: column; }
    .rpt-sidebar { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .rpt-main { padding: 30px 20px; }
}
    /* End of File */

/* Mini grid */
.rpt-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 16px 20px 0;
}


/* Magnifier */
.magnifier {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: 0 0 15px rgba(0,0,0,0.8), inset 0 0 10px rgba(0,0,0,0.5);
    pointer-events: none;
    z-index: 1000;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-color: #0a0a0c;
    display: none;
}

.magnifier::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
.magnifier::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    transform: translate(-50%, -50%);
    background: var(--gold);
    border-radius: 50%;
}
/* â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"? PREMIUM TEASER & WALL â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"? */
.teaser-header {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 32px;
  background: linear-gradient(135deg, rgba(20,20,22,0.6), rgba(10,10,12,0.8));
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 4px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.teaser-score-box {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-3);
  border: 1px solid var(--tier-border, rgba(198,168,106,0.2));
  position: relative;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.teaser-score-box.shimmer::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: scoreShimmer 3s infinite;
}
@keyframes scoreShimmer {
  to { left: 200%; }
}
.score-box-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.score-val {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 200;
  color: var(--tier-color, var(--gold));
  line-height: 1;
}
.score-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #999;
  margin-top: 4px;
}
.teaser-tier-info { flex: 1; }
.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: 1px solid;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tier-headline {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ivory);
  margin-bottom: 16px;
}
.psl-rating-teaser {
  display: flex;
  align-items: center;
  gap: 12px;
}
.psl-label {
  font-size: 13px;
  color: #999;
  letter-spacing: 0.1em;
}
.psl-unlocked-badge {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.psl-locked-badge {
  color: var(--gray-3);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ars-ai-quote {
  font-style: italic;
  color: #999;
  font-size: 13px;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 40px;
  line-height: 1.6;
}

.ars-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #999;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.ars-section-locked { color: var(--gold); opacity: 0.8; }

.ars-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.ars-teaser-locked {
  margin-bottom: 0;
}

/* PREMIUM WALL COMPONENT */
.prem-wall {
  margin-top: -80px;
  position: relative;
  z-index: 1000;
  background: linear-gradient(180deg, transparent, var(--black-2) 150px);
  padding: 100px 40px 40px;
  text-align: center;
  border-top: 1px solid rgba(198,168,106,0.05);
}
.prem-wall.visible { opacity: 1; transform: translateY(0); }
.prem-wall-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(circle, rgba(198,168,106,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.prem-wall-icon {
  width: 64px;
  height: 64px;
  background: var(--black-3);
  border: 1px solid rgba(198,168,106,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
  color: var(--gold);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
.prem-wall-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ivory);
  margin-bottom: 12px;
}
.prem-wall-sub {
  color: #999;
  font-size: 15px;
  max-width: 400px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.prem-wall-list {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 40px;
}
.prem-wall-list li {
  font-size: 13px;
  color: var(--gray-3);
  display: flex;
  align-items: center;
  gap: 12px;
}
.prem-wall-list li i { color: var(--gold); font-size: 13px; }

.prem-btn {
  width: 100%;
  max-width: 380px;
  padding: 25px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(198,168,106,0.2);
  margin-bottom: 24px;
}
.prem-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(198,168,106,0.35);
  background: #d4b87a;
}
.prem-wall-note {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .teaser-header { flex-direction: column; text-align: center; padding: 24px; }
  .ars-teaser { grid-template-columns: 1fr; }
  .prem-wall-title { font-size: 26px; }
  .prem-wall { padding: 80px 20px 40px; }
}

/* â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"? GLOBAL ANIMATIONS â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"? */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scanLine {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"? MISSING UI CLASSES â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"? */
.spotlight {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(198,168,106,0.08) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.cursor, .cursor-ring {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body:hover .cursor, body:hover .cursor-ring {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"? PREMIUM LOCKING STYLES â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"?â"? */
.metric-card.locked {
  position: relative;
  overflow: hidden;
}

.metric-card.locked .metric-blur {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

.lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.85);
  color: white;
  font-weight: bold;
  gap: 12px;
  border-radius: inherit;
  z-index: 1000;
  text-align: center;
  padding: 25px;
  backdrop-filter: blur(2px);
}

.lock-overlay span {
  font-size: 24px;
  margin-bottom: 4px;
}

.lock-overlay p {
  font-size: 14px;
  margin-bottom: 8px;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}
/* â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~ 
   MODAL RESULTS â?" ARS SYSTEM (Aesthetic Rating Schema)
   â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~â-~  */

#step-results {
    flex-direction: column;
    gap: 32px;
    padding-bottom: 60px;
}

.teaser-header {
    display: flex;
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, rgba(13,13,13,0.8) 0%, rgba(20,20,20,0.5) 100%);
    padding: 32px;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.teaser-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.teaser-score-box {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid var(--tier-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(0,0,0,0.6);
    box-shadow: 0 0 30px rgba(0,0,0,0.5), inset 0 0 20px var(--tier-color);
}

.score-box-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.score-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #fff;
    line-height: 1;
    font-weight: 600;
}

.score-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: #999;
    margin-top: 4px;
}

.teaser-tier-info {
    flex: 1;
}

.tier-badge {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    background: rgba(0,0,0,0.4);
}

.tier-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 8px;
}

.psl-rating-teaser {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.psl-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #999;
    letter-spacing: 0.1em;
}

.psl-locked-badge {
    background: var(--gold);
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ars-ai-quote {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #999;
    font-style: italic;
    border-left: 2px solid var(--gold);
    padding-left: 20px;
    margin: 10px 0;
}

.ars-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ars-section-locked {
    color: #999;
    opacity: 0.6;
}

/* ARS CARDS */
/* ARS PREMIUM TEASER */
.ars-teaser {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    color: #fff;
    padding-bottom: 40px;
}

.teaser-header {
    display: flex;
    gap: 30px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.teaser-score-ring {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.teaser-score-ring svg {
    transform: rotate(-90deg);
    width: 120px;
    height: 120px;
}

.ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.03);
    stroke-width: 10;
}

.ring-fg {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 264;
    transition: stroke-dashoffset 1.2s ease-out;
}

.ring-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.ring-score {
    font-size: 38px;
    font-weight: 800;
    font-family: var(--font-ui);
    color: #fff;
}

.ring-denom {
    font-size: 11px;
    color: #999;
    font-weight: 600;
    margin-top: 4px;
}

.teaser-tier-info {
    flex-grow: 1;
}

.tier-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    border: 1px solid;
    margin-bottom: 12px;
}

.tier-headline {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.tier-score-blur {
    font-size: 11px;
    color: #999;
    margin-bottom: 12px;
}

.psl-rating-teaser {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.psl-label {
    font-size: 13px;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 10px;
}

.psl-locked-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.4);
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    width: fit-content;
}

.ars-ai-narrative {
    font-family: var(--font-body);
    font-size: 14px;
    font-style: italic;
    color: #999;
    line-height: 1.6;
    padding: 24px 30px;
    background: rgba(255,255,255,0.01);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.03);
    margin-bottom: 30px;
    text-align: center;
}

.ars-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .ars-metrics-grid {
        grid-template-columns: 1fr;
    }
}

.ars-section-label {
    font-size: 13px;
    font-weight: 800;
    color: #999;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.ars-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.ars-card:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.ars-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ars-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
}

.ars-label-badge {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

.ars-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 25px;
}

.ars-bar-track {
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.ars-bar-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #ff4d4d 0%, #ffcc00 25%, #00cc66 50%, #ffcc00 75%, #ff4d4d 100%);
    opacity: 0.9;
}

.ars-bar-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
    margin-left: -6px;
    z-index: 2;
}

.ars-score-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ars-range-text {
    font-size: 12px;
    color: var(--gray-3);
}

.ars-score-val {
    font-size: 24px;
    font-weight: 800;
    font-family: var(--font-ui);
}

.ars-score-denom {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

/* Blur Effects */
.blurred-metrics {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.blurred-inline {
    filter: blur(5px);
    display: inline-block;
    pointer-events: none;
    user-select: none;
}

.ars-locked-wall {
    margin-top: 50px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.prem-wall-header {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    border: 1px solid rgba(46, 213, 115, 0.2);
}

.premium-loader {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 35px;
}

.loader-circle {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulseLoader 1.5s ease-in-out infinite;
}

.loader-circle:nth-child(2) { animation-delay: 0.2s; }
.loader-circle:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulseLoader {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); filter: drop-shadow(0 0 8px var(--gold)); }
}

.locked-wall-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.prem-wall-desc {
    font-size: 15px;
    color: #999;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 40px auto;
}

.prem-wall-desc strong {
    color: #fff;
}

.prem-wall-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.elite-btn {
    padding: 20px 45px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: 0.05em !important;
    background: linear-gradient(135deg, var(--gold), #8e6d1c) !important;
    box-shadow: 0 15px 40px rgba(201, 168, 76, 0.3) !important;
    border: none !important;
}

.payment-methods {
    display: flex;
    gap: 20px;
    font-size: 24px;
    color: rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.payment-methods i:hover {
    color: rgba(255,255,255,0.5);
}

.prem-wall-footer {
    margin-top: 50px;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
}

.prem-wall-footer strong {
    color: rgba(255,255,255,0.6);
}

.prem-wall-desc {
    font-size: 15px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 40px;
}

.prem-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 18px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.prem-btn:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.metric-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.metric-info {
  flex: 1;
}
.metric-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.metric-desc {
  font-size: 12px;
  color: #999;
  line-height: 1.4;
  max-width: 80%;
}

.metric-rating-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.metric-score-bubble {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
}
.metric-score-bubble span {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

.rating-badge {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.rating-badge.eccellente { background: rgba(34, 197, 94, 0.1); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.2); }
.rating-badge.norma { background: rgba(234, 179, 8, 0.1); color: #eab308; border: 1px solid rgba(234, 179, 8, 0.2); }
.rating-badge.fuori { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); }

/* PROGRESS BAR WITH DOT */
.metric-viz {
  margin-top: 10px;
}
.metric-progress-bg {
  height: 6px;
  background: linear-gradient(to right, #ef4444, #eab308, #22c55e, #eab308, #ef4444);
  border-radius: 3px;
  position: relative;
  margin-bottom: 12px;
}
.metric-dot {
  width: 14px;
  height: 14px;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  z-index: 2;
  transition: left 1s var(--transition);
}
.metric-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #999;
  font-weight: 600;
}
.metric-ideal {
  color: var(--gold);
}

/* LOCKED STATE */
.metric-card.locked {
  filter: blur(6px);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

/* STICKY CTA WALL */
.prem-wall {
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 24px;
    box-shadow: 0 0 30px rgba(201,168,76,0.4);
}

.prem-wall-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #fff;
    margin-bottom: 12px;
}

.prem-wall-sub {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #999;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.prem-wall-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 440px;
    margin: 0 auto 40px;
    list-style: none;
    text-align: left;
}

.prem-wall-list li {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prem-wall-list li i {
    color: var(--gold);
    font-size: 13px;
}

.prem-btn {
    width: 100%;
    max-width: 360px;
    background: var(--gold);
    color: #000;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.prem-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201,168,76,0.3);
    background: #d4b45a;
}

.prem-wall-note {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #999;
    margin-top: 24px;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .ars-teaser {
        grid-template-columns: 1fr;
    }
    .teaser-header {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    .prem-wall-list {
        grid-template-columns: 1fr;
    }
}
.user-info-teaser { font-size: 14px; color: #999; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; }


/* --- MOBILE OPTIMIZATIONS (Media Queries) --- */
@media (max-width: 768px) {
  .hero-headline { font-size: 36px !important; line-height: 1.1 !important; }
  .hero-sub { font-size: 14px !important; }
  .nav-links { display: none !important; }
  .modal-container { width: 95vw !important; max-height: 95vh !important; }
  .modal-step { text-align: center; display: flex; flex-direction: column; align-items: center; padding: 25px 15px !important; }
  .gender-cards { grid-template-columns: 1fr !important; }
  .landmark-editor-container { flex-direction: column !important; height: auto !important; min-height: 500px !important; }
  .landmark-viewport { width: 100% !important; height: 420px !important; flex: none !important; border-radius: 12px 12px 0 0 !important; }
  .landmark-sidebar { width: 100% !important; border-left: none !important; border-top: 1px solid rgba(201,168,76,0.15) !important; padding: 20px !important; }
  .cursor, .cursor-ring { display: none !important; }
  .modal-actions { margin-top: 15px !important; padding: 10px !important; }

  /* Face Scan Responsive */
  .face-scan-container {
    width: 280px !important;
    height: 360px !important;
    margin: 0 auto !important;
  }
  .floating-card {
    padding: 8px 12px !important;
    font-size: 10px !important;
  }
  .fc-1 { left: -20px !important; top: 40px !important; }
  .fc-2 { right: -20px !important; top: 160px !important; }
  .fc-3 { left: -10px !important; bottom: 40px !important; }

  .trust-bar {
    flex-direction: column !important;
    padding: 40px 20px !important;
    gap: 30px !important;
  }
  .trust-divider {
    width: 60px !important;
    height: 1px !important;
    background: linear-gradient(to right, transparent, rgba(198,168,106,0.2), transparent) !important;
  }
  
  section {
    padding: 80px 20px !important;
  }

  /* Touch Targets & Footer */
  .nav-cta {
    padding: 10px 18px !important;
    font-size: 10px !important;
  }
  
  footer a, footer button {
    padding: 12px 0 !important; /* Increase clickable area */
    display: inline-block !important;
  }
  
  .faq-question {
    padding: 20px 15px !important;
  }
}

/* ?? LUXURY ELITE WALL STYLES */
.ars-luxury-wall {
    margin: 32px 0;
    padding: 2px;
    background: linear-gradient(135deg, rgba(201,168,76,0.3), rgba(201,168,76,0.05), rgba(201,168,76,0.3));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    animation: glow-pulse 4s infinite alternate;
}

.luxury-wall-inner {
    background: #0d0d0d;
    background-image: radial-gradient(circle at 50% -20%, rgba(201,168,76,0.15) 0%, transparent 70%);
    border-radius: 18px;
    padding: 24px 20px; /* More compact padding */
    text-align: center;
    position: relative;
}

.secure-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px; /* Smaller font */
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #4ade80;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.luxury-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; /* Scaled down */
    font-weight: 300;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.1;
}

.luxury-title em {
    color: #C9A84C;
    font-style: italic;
}

.luxury-desc {
    font-size: 13px; /* Slightly smaller */
    color: #999;
    max-width: 440px;
    margin: 0 auto 16px;
    line-height: 1.5;
}

.luxury-benefits {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.luxury-benefits span {
    font-size: 13px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.02);
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.05);
}

.luxury-benefits i {
    color: #C9A84C;
    font-size: 8px;
}

.luxury-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.luxury-btn {
    width: 100%;
    max-width: 320px;
    height: 52px; /* More compact button */
    background: #C9A84C !important;
    color: #000 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 25px rgba(201,168,76,0.3) !important;
}

.luxury-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(201,168,76,0.5) !important;
}

.payment-badges-fa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 16px;
    color: #999;
    opacity: 0.6;
    margin-top: 4px;
}

.payment-badges-fa i:hover {
    color: #fff;
    opacity: 1;
}

@keyframes glow-pulse {
    from { box-shadow: 0 0 15px rgba(201,168,76,0.1); }
    to { box-shadow: 0 0 30px rgba(201,168,76,0.2); }
}

@media (max-width: 768px) {
    .luxury-title { font-size: 28px; }
    .luxury-benefits { gap: 10px; }
    .luxury-benefits span { font-size: 13px; padding: 4px 10px; }
    .luxury-wall-inner { padding: 32px 20px; }
}

/* ?? LUXURY BIBLE UPSELL */
.bible-upsell-container {
    grid-column: 1 / -1;
    margin: 60px 0 40px;
    padding: 0 10px;
}

.bible-card {
    position: relative;
    background: #000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 60px 40px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(212, 175, 55, 0.05);
}

.bible-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.bible-content {
    position: relative;
    z-index: 1;
}

.bible-eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: #C9A84C;
    margin-bottom: 20px;
}

.bible-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.bible-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.bible-desc strong {
    color: #C9A84C;
    font-weight: 600;
}

.bible-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #C9A84C;
    color: #000;
    padding: 20px 48px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.bible-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.5);
    background: #e5c361;
}

.bible-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.bible-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .bible-card { padding: 40px 20px; }
    .bible-title { font-size: 32px; }
    .bible-desc { font-size: 14px; }
    .bible-btn { padding: 16px 32px; font-size: 12px; }
}

/* ?? PROMINENT BIBLE CTA BUTTON */
.bibbia-cta-btn {
    width: 100%;
    background: linear-gradient(135deg, #C9A84C 0%, #F5D98B 100%);
    color: #000 !important;
    font-family: 'Inter', sans-serif;
    font-size: 16px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    border: 2px solid #C9A84C !important;
    border-radius: 12px !important;
    padding: 16px 32px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(201,168,76,0.5) !important;
    transition: all 0.2s ease-in-out !important;
    display: block !important;
    outline: none !important;
}

.bibbia-cta-btn:hover, .bibbia-cta-btn:active {
    transform: scale(1.03);
    box-shadow: 0 6px 25px rgba(201,168,76,0.6) !important;
    filter: brightness(1.05);
}

@media (max-width: 768px) {
    .bibbia-cta-btn {
        font-size: 14px !important;
        padding: 14px 20px !important;
    }
}


/* ========================================================
   ULTIMATE MOBILE RESULTS PAGE FIX
   ======================================================== */
@media (max-width: 768px) {
  /* Overlay act as a native scrollable page */
  .modal-overlay {
    align-items: flex-start !important; 
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0 !important;
  }
  
  /* Container free from height constraints */
  .modal-container {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 100dvh !important;
    max-height: none !important; /* CRITICAL: Override 95vh */
    margin: 0 !important;
    border-radius: 0 !important;
    padding: 0 0 80px 0 !important; 
    overflow: visible !important;
    display: block !important;
  }

  /* Ensure step results has no boundaries */
  .modal-step#step-results {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 20px !important;
  }

  /* Cards full width in column */
  .ars-metrics-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }
  .ars-card {
    width: 100% !important;
    margin: 0 !important;
    display: block !important;
  }
}

/* ================================================================
   ?? MOBILE: COMPACT ARS CARDS - fit all without scrolling
   ================================================================ */
@media (max-width: 768px) {

  /* Remove the scrollable modal wrapper - just let content flow */
  .modal-overlay {
    align-items: flex-start !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0 !important;
  }

  .modal-container {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 100dvh !important;
    max-height: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    padding: 0 0 60px 0 !important;
    overflow: visible !important;
    display: block !important;
    background: #0a0a0a !important;
    border: none !important;
    box-shadow: none !important;
  }

  .modal-step#step-results {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 12px 12px 40px 12px !important;
  }

  /* TEASER HEADER: compact row */
  .teaser-header {
    padding: 12px !important;
    gap: 12px !important;
    margin-bottom: 12px !important;
    border-radius: 10px !important;
  }

  .teaser-score-ring {
    width: 60px !important;
    height: 60px !important;
  }

  .ring-inner {
    transform: scale(0.65) !important;
  }

  .teaser-header h2 {
    font-size: 16px !important;
    margin-bottom: 4px !important;
  }

  .teaser-header p {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }

  /* ARS METRICS GRID: tight column */
  .ars-metrics-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding-bottom: 20px !important;
  }

  /* ARS CARD: compact, no excess whitespace */
  .ars-card {
    width: 100% !important;
    margin: 0 !important;
    padding: 10px 12px !important;
    border-radius: 8px !important;
  }

  .ars-card-header {
    margin-bottom: 4px !important;
  }

  .ars-title {
    font-size: 10px !important;
  }

  .ars-desc {
    font-size: 9.5px !important;
    margin-bottom: 6px !important;
    line-height: 1.4 !important;
  }

  .ars-bar-track {
    height: 5px !important;
    margin-bottom: 5px !important;
  }

  .ars-bar-marker {
    width: 10px !important;
    height: 10px !important;
  }

  .ars-score-row {
    gap: 6px !important;
  }

  .ars-range-text {
    font-size: 9px !important;
  }

  /* Score number */
  .ars-score-val {
    font-size: 22px !important;
  }
  .ars-score-denom {
    font-size: 11px !important;
  }

  /* Labels */
  .ars-label-badge, .ars-lock-badge {
    font-size: 9px !important;
    padding: 2px 7px !important;
  }


/* ================================================================
   MOBILE RESULTS — RICOSTRUZIONE COMPLETA (Clean Version)
   max-width: 768px ONLY — Desktop: zero modifiche
   ================================================================ */
@media (max-width: 768px) {

  /* 1. NASCONDI il modal overlay di default e il container */
  .modal-overlay.active {
    position: fixed !important;
    inset: 0 !important;
    display: block !important;
    background: transparent !important;
    backdrop-filter: none !important;
    z-index: 9998 !important;
    overflow: hidden !important;
    padding: 0 !important;
  }

  /* 2. CONTAINER principale: full-screen fixed, scroll nativo */
  .modal-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100dvh !important;
    max-width: 100% !important;
    max-height: 100dvh !important;
    overflow-y: scroll !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y !important;
    background: #0a0a0a !important;
    z-index: 9999 !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    transform: none !important;
  }

  /* Nascondi scrollbar ma mantieni funzionalità */
  .modal-container::-webkit-scrollbar { display: none !important; }
  .modal-container { scrollbar-width: none !important; }

  /* 3. STEP RESULTS: flusso normale senza altezza fissa */
  .modal-step#step-results {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 0 !important;
    text-align: left !important;
  }

  /* 4. NASCONDI il tasto X standard — lo rimettiamo nell header sticky */
  .modal-step#step-results > .modal-close {
    display: none !important;
  }

  /* 5. ARS-TEASER: wrapper principale dei risultati */
  .ars-teaser {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 0 120px 0 !important;
    background: #0a0a0a !important;
  }

  /* 6. HEADER STICKY */
  .teaser-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
    height: 60px !important;
    min-height: 60px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 16px !important;
    background: rgba(10,10,10,0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(201,168,76,0.3) !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    gap: 0 !important;
  }

  /* Score a sinistra nell header */
  .teaser-header .teaser-score-ring {
    width: auto !important;
    height: auto !important;
    flex-shrink: 0 !important;
  }
  .teaser-header .teaser-score-ring svg { display: none !important; }
  .teaser-header .ring-inner {
    transform: none !important;
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    gap: 2px !important;
  }
  .teaser-header .ring-score {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #C9A84C !important;
    font-family: var(--font-ui) !important;
  }
  .teaser-header .ring-denom {
    font-size: 12px !important;
    color: #888 !important;
    font-family: var(--font-ui) !important;
  }

  /* REPORT al centro header */
  .teaser-header .teaser-tier-info {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    filter: none !important;
    pointer-events: none !important;
    user-select: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .teaser-header .teaser-tier-info .tier-badge,
  .teaser-header .teaser-tier-info .tier-headline,
  .teaser-header .teaser-tier-info .user-info-teaser,
  .teaser-header .teaser-tier-info .tier-score-blur,
  .teaser-header .teaser-tier-info .psl-rating-teaser {
    display: none !important;
  }
  .teaser-header .teaser-tier-info::before {
    content: 'REPORT' !important;
    font-family: var(--font-ui) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.25em !important;
    color: #fff !important;
  }

  /* X chiudi a destra nell header */
  .modal-close {
    position: static !important;
    display: flex !important;
    width: 32px !important;
    height: 32px !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    color: #888 !important;
    flex-shrink: 0 !important;
    z-index: 101 !important;
  }

  /* 7. HERO SECTION: score grande */
  .ars-ai-narrative {
    margin: 24px 16px 20px !important;
    padding: 0 !important;
    font-style: italic !important;
    color: #888 !important;
    border-left: 3px solid #C9A84C !important;
    padding-left: 12px !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    text-align: left !important;
  }

  /* Hero score ring ? trasformalo in score grande hero */
  .ars-section-label {
    padding: 16px 16px 8px !important;
    font-size: 9px !important;
    letter-spacing: 0.2em !important;
    color: #555 !important;
    border: none !important;
    background: none !important;
  }

  /* 8. CARD METRICHE */
  .ars-metrics-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
  }

  .ars-card {
    margin: 0 16px 12px !important;
    background: #111 !important;
    border: 1px solid #222 !important;
    border-radius: 16px !important;
    padding: 20px !important;
    width: auto !important;
    height: auto !important;
    box-shadow: none !important;
  }

  .ars-card-header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 6px !important;
  }

  .ars-title {
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: #fff !important;
  }

  .ars-desc {
    color: #666 !important;
    font-size: 13px !important;
    margin-bottom: 10px !important;
    line-height: 1.5 !important;
  }

  .ars-bar-track {
    height: 8px !important;
    border-radius: 4px !important;
    margin-bottom: 10px !important;
  }

  .ars-score-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .ars-score-val {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #C9A84C !important;
  }

  .ars-score-denom {
    font-size: 13px !important;
    color: #555 !important;
  }

  .ars-range-text {
    font-size: 10px !important;
    color: #555 !important;
  }

  /* Label badges */
  .ars-label-badge {
    font-size: 10px !important;
    padding: 3px 10px !important;
    border-radius: 20px !important;
    font-weight: 700 !important;
  }
  .ars-lock-badge {
    font-size: 9px !important;
    padding: 3px 8px !important;
  }

  /* Blur content pointer-events: none */
  .ars-blurred-content,
  .blurred-metrics {
    pointer-events: none !important;
  }

  /* 9. LUXURY WALL / BOTTONE ACQUISTO */
  .ars-luxury-wall {
    margin: 0 16px 12px !important;
    border-radius: 16px !important;
  }

  .luxury-wall-inner {
    padding: 20px 16px !important;
    border-radius: 14px !important;
  }

  .luxury-title {
    font-size: 20px !important;
    margin-bottom: 8px !important;
  }

  .luxury-desc {
    font-size: 13px !important;
    margin-bottom: 16px !important;
  }

  .luxury-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    align-items: stretch !important;
  }

  #unlock-report-btn,
  .prem-btn.luxury-btn {
    width: 100% !important;
    padding: 18px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    background: #C9A84C !important;
    color: #000 !important;
    border: none !important;
    box-shadow: 0 4px 24px rgba(201,168,76,0.4) !important;
    letter-spacing: 0.05em !important;
  }
}
/* ================================================================
   LUXURY MOBILE MENU (SIDEBAR DRAWER)
   ================================================================ */
.mobile-menu-toggle { display: none !important; visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; position: absolute !important; left: -9999px !important; }
.mobile-menu-overlay { display: none !important; visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; position: absolute !important; left: -9999px !important; }
.mobile-menu-backdrop { display: none !important; visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; }

@media (max-width: 768px) {
  .nav-logo { display: none !important; }
  
  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--gold);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: transform 0.2s;
  }
  .mobile-menu-toggle:active { transform: scale(0.9); }

  .mobile-menu-overlay {
    display: flex !important;
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100dvh;
    background: linear-gradient(135deg, #0f0f10 0%, #050505 100%);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 100px 30px;
    border-right: 1px solid rgba(201, 168, 76, 0.3);
    box-shadow: 20px 0 80px rgba(0,0,0,0.8);
    flex-direction: column;
  }

  .mobile-menu-overlay.active {
    left: 0;
  }

  .mobile-menu-backdrop {
    display: block !important;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .mobile-menu-backdrop.active {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 32px;
    color: var(--gold);
    cursor: pointer;
    transition: transform 0.3s;
  }
  .mobile-menu-close:hover { transform: rotate(90deg); }

  .mobile-menu-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .mobile-menu-links li {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
  }
  .mobile-menu-overlay.active .mobile-menu-links li {
    opacity: 1;
    transform: translateX(0);
  }
  .mobile-menu-links li:nth-child(1) { transition-delay: 0.1s; }
  .mobile-menu-links li:nth-child(2) { transition-delay: 0.2s; }
  .mobile-menu-links li:nth-child(3) { transition-delay: 0.3s; }

  .mobile-menu-links li a {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu-links li a:active {
    color: var(--gold) !important;
  }

  .mobile-menu-links li a::before {
    content: '??';
    color: var(--gold);
    font-size: 14px;
    opacity: 0.6;
  }
}

.footer-logo {
  text-align: center;
  margin: 20px 0 10px;
}
.footer-logo img {
  height: 30px;
  border-radius: 6px;
  opacity: 0.7;
}

/* CROPPER UI STYLES */
.cropper-container-wrapper { align-items: center;
  width: 100%;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px; animation: fadeIn 0.4s ease;
}

.cropper-viewport {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(198,168,106,0.2);
  margin: 0 auto;
}

.cropper-controls {
  width: 100%;
  max-width: 400px;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(198,168,106,0.15);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 15px;
}

.control-group label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
  text-align: center;
  opacity: 0.8;
}

.btn-mini {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(198,168,106,0.2);
  color: var(--ivory);
  padding: 12px 18px;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.btn-mini i {
  font-size: 14px;
  color: var(--gold);
}

.btn-mini:hover {
  background: rgba(198,168,106,0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(198,168,106,0.1);
}


.control-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.control-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.control-label-row label {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #999;
  font-weight: 700;
  text-transform: uppercase;
}

.control-label-row span {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-ui);
}

.crop-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  outline: none;
}

.crop-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--ivory);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.2s;
}

.crop-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: var(--gold);
}

.control-actions-row {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.btn-crop-reset {
  flex: 1;
  background: #fff;
  color: #000;
  border: none;
  padding: 14px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-crop-confirm {
  flex: 2;
  background: #1a1d21;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-crop-confirm:hover {
  background: #252a30;
  border-color: rgba(255,255,255,0.3);
}

/* ELITE CROPPER UI REDESIGN */
.elite-cropper-container {
  background: #0d0d0d;
  border: 1px solid var(--gold);
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalEnter 0.5s var(--transition);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.cropper-header {
  display: flex;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(198,168,106,0.1);
  align-items: center;
}

.header-left {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.header-right {
  font-size: 10px;
  color: #444;
  font-weight: 600;
  letter-spacing: 1px;
}

.cropper-main-area {
  padding: 0;
  background: #000;
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
}

.cropper-viewport-box {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Custom Cropper Styles Overrides */
.cropper-view-box {
  outline: 1.5px solid var(--gold);
  outline-color: rgba(201,168,76,0.8);
  border-radius: 0;
}

.cropper-face {
  background-color: transparent;
}

/* Custom Corners for Cropper */
.cropper-view-box::before, .cropper-view-box::after {
  content: " \;
 position: absolute;
 width: 14px;
 height: 14px;
 border: 2px solid #F5D98B;
 z-index: 1000;
}

/* Top Left */
.cropper-view-box::before {
 top: -2px; left: -2px;
 border-right: 0; border-bottom: 0;
}

/* Top Right Corner */
.cropper-view-box::after {
 top: -2px; right: -2px;
 border-left: 0; border-bottom: 0;
}

/* Bottom Corners - adding them via existing cropper handles or additional spans if needed, but lets use pseudos for first two */
/* Since I can only use 2 pseudos, I will use CSS on the container to draw the other two or use the cropper points */

.cropper-modal {
 background-color: rgba(0,0,0,0.55);
 opacity: 1;
}

/* Crosshair Logic */
.cropper-guide-center {
 content: \\;
 position: absolute;
 background: rgba(201,168,76,0.25);
 pointer-events: none;
}

.cropper-face::before {
 top: 50%; left: 0; width: 100%; height: 0.5px; transform: translateY(-50%);
}

.cropper-face::after {
 top: 0; left: 50%; width: 0.5px; height: 100%; transform: translateX(-50%);
}

.cropper-footer {
 padding: 24px;
 display: flex;
 flex-direction: column;
 gap: 20px;
 border-top: 1px solid rgba(255,255,255,0.03);
}

.control-row-elite {
 display: flex;
 align-items: center;
 gap: 15px;
}

.control-row-elite label {
 font-size: 9px;
 color: #555;
 font-weight: 800;
 width: 70px;
 text-transform: uppercase;
 letter-spacing: 1px;
}

.value-badge {
 font-size: 11px;
 color: var(--gold);
 font-weight: 700;
 width: 45px;
 text-align: right;
 font-family: var(--font-ui);
}

/* Elite Slider Styling */
.elite-slider {
 -webkit-appearance: none;
 flex: 1;
 height: 3px;
 background: #222;
 border-radius: 3px;
 outline: none;
}

.elite-slider::-webkit-slider-thumb {
 -webkit-appearance: none;
 width: 16px;
 height: 16px;
 background: var(--gold);
 border: 2px solid #0d0d0d;
 border-radius: 50%;
 cursor: pointer;
 transition: transform 0.2s;
}

.elite-slider::-webkit-slider-thumb:hover {
 transform: scale(1.2);
}

.cropper-actions-elite {
 display: flex;
 gap: 12px;
 margin-top: 5px;
}

.btn-elite-reset {
 flex: 1;
 background: transparent;
 border: 0.5px solid #333;
 color: #666;
 border-radius: 10px;
 padding: 14px;
 font-weight: 600;
 font-size: 12px;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 transition: all 0.3s;
}

.btn-elite-reset:hover {
 background: rgba(255,255,255,0.02);
 color: var(--ivory);
 border-color: #555;
}

.btn-elite-confirm {
 flex: 2;
 background: var(--gold);
 color: #0a0a0a;
 border: none;
 border-radius: 10px;
 padding: 14px;
 font-weight: 600;
 font-size: 12px;
 text-transform: uppercase;
 letter-spacing: 1px;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 10px;
 transition: all 0.3s;
}

.btn-elite-confirm:hover {
 background: #d4b358;
 transform: translateY(-2px);
 box-shadow: 0 10px 20px rgba(198,168,106,0.2);
}

/* Bottom Corners using cropper-face pseudos */
.cropper-guide-center {
  content: " \;
 position: absolute;
 width: 14px;
 height: 14px;
 border: 2px solid #F5D98B;
 z-index: 1000;
 background: transparent !important;
}

/* Bottom Left */
.cropper-face::before {
 bottom: -2px; left: -2px;
 border-top: 0; border-right: 0;
 top: auto !important; height: 14px !important; width: 14px !important;
}

/* Bottom Right */
.cropper-face::after {
 bottom: -2px; right: -2px;
 border-top: 0; border-left: 0;
 top: auto !important; left: auto !important; height: 14px !important; width: 14px !important;
}

/* CLEAN ELITE CROPPER REFINEMENTS */
.cropper-dashed { border-color: rgba(201,168,76,0.2) !important; }
.cropper-center { display: block !important; }
.cropper-center::before, .cropper-center::after { background-color: var(--gold) !important; opacity: 0.4; }

/* Ensure crosshair is subtle */
.cropper-dashed.dashed-h, .cropper-dashed.dashed-v {
  border: none !important;
  background: rgba(201,168,76,0.15);
}
.cropper-dashed.dashed-h { height: 1px !important; }
.cropper-dashed.dashed-v { width: 1px !important; }

/* Fixed Corners Logic */
.cropper-view-box { outline: 1px solid rgba(201,168,76,0.4) !important; }
.cropper-line { background-color: transparent !important; }
.cropper-point { background-color: transparent !important; opacity: 1 !important; }

/* Custom Corner Markers on Points */
.cropper-point.point-nw { border-top: 2px solid #F5D98B; border-left: 2px solid #F5D98B; width: 14px !important; height: 14px !important; left: -2px !important; top: -2px !important; }
.cropper-point.point-ne { border-top: 2px solid #F5D98B; border-right: 2px solid #F5D98B; width: 14px !important; height: 14px !important; right: -2px !important; top: -2px !important; }
.cropper-point.point-sw { border-bottom: 2px solid #F5D98B; border-left: 2px solid #F5D98B; width: 14px !important; height: 14px !important; left: -2px !important; bottom: -2px !important; }
.cropper-point.point-se { border-bottom: 2px solid #F5D98B; border-right: 2px solid #F5D98B; width: 14px !important; height: 14px !important; right: -2px !important; bottom: -2px !important; }


@media (max-width: 480px) {
  .elite-cropper-container {
    border-radius: 0;
    border-left: none;
    border-right: none;
    max-width: 100%;
  }
  .cropper-footer {
    padding: 20px 15px;
  }
}

/* LUXURY RANGE SLIDER STYLES - v2 */
input#crop-zoom-front {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 100% !important;
  background: transparent !important;
  height: 24px !important;
  margin: 0 !important;
  outline: none !important;
}

/* Chrome, Safari, Edge, Opera */
input#crop-zoom-front::-webkit-slider-runnable-track {
  width: 100% !important;
  height: 4px !important;
  cursor: pointer !important;
  background: rgba(198,168,106,0.2) !important;
  border-radius: 2px !important;
  border: none !important;
}

input#crop-zoom-front::-webkit-slider-thumb {
  height: 20px !important;
  width: 20px !important;
  border-radius: 50% !important;
  background: #C9A84C !important; /* var(--gold) */
  cursor: pointer !important;
  -webkit-appearance: none !important;
  margin-top: -8px !important;
  box-shadow: 0 0 15px rgba(198,168,106,0.4) !important;
  border: 2px solid #000 !important;
  transition: all 0.3s ease !important;
}

input#crop-zoom-front:hover::-webkit-slider-thumb {
  background: #D4B87A !important; /* var(--gold-light) */
  transform: scale(1.1) !important;
  box-shadow: 0 0 20px rgba(198,168,106,0.6) !important;
}

/* Firefox */
input#crop-zoom-front::-moz-range-track {
  width: 100% !important;
  height: 4px !important;
  cursor: pointer !important;
  background: rgba(198,168,106,0.2) !important;
  border-radius: 2px !important;
  border: none !important;
}

input#crop-zoom-front::-moz-range-thumb {
  height: 20px !important;
  width: 20px !important;
  border-radius: 50% !important;
  background: #C9A84C !important;
  cursor: pointer !important;
  border: 2px solid #000 !important;
  box-shadow: 0 0 15px rgba(198,168,106,0.4) !important;
  transition: all 0.3s ease !important;
}

input#crop-zoom-front::-moz-range-thumb:hover {
  background: #D4B87A !important;
  transform: scale(1.1) !important;
}

/* NEW CUSTOM LUXURY CROPPER STYLES */
.canvas-wrap {
  background: #0d0d0d;
  border-radius: 4px;
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  margin: 0 auto;
  border: 1px solid rgba(198,168,106,0.15);
}
.canvas-wrap.dragging { cursor: grabbing; }
#photo-img {
  position: absolute;
  transform-origin: center center;
  pointer-events: none;
  display: block;
}
.crop-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.crop-box {
  position: absolute;
  border: 1.5px solid var(--gold);
  pointer-events: none;
}
.crop-box::before,
.crop-box::after {
  content: " \;
 position: absolute;
 background: rgba(201,168,76,0.18);
}
.crop-box::before {
 width: 1px;
 height: 100%;
 left: 33.33%;
 top: 0;
 box-shadow: 33.33% 0 0 0 rgba(201,168,76,0.18);
}
.crop-box::after {
 height: 1px;
 width: 100%;
 top: 33.33%;
 left: 0;
 box-shadow: 0 33.33% 0 0 rgba(201,168,76,0.18);
}
.crop-box .corner {
 position: absolute;
 width: 14px;
 height: 14px;
}
.corner.tl { top: -1px; left: -1px; border-top: 2.5px solid var(--gold); border-left: 2.5px solid var(--gold); }
.corner.tr { top: -1px; right: -1px; border-top: 2.5px solid var(--gold); border-right: 2.5px solid var(--gold); }
.corner.bl { bottom: -1px; left: -1px; border-bottom: 2.5px solid var(--gold); border-left: 2.5px solid var(--gold); }
.corner.br { bottom: -1px; right: -1px; border-bottom: 2.5px solid var(--gold); border-right: 2.5px solid var(--gold); }
.center-icon {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 pointer-events: none;
 opacity: 0.5;
}
.center-icon svg {
 width: 48px;
 height: 48px;
 fill: none;
 stroke: var(--gold);
 stroke-width: 1.5;
}
.slider-row {
 display: flex;
 align-items: center;
 gap: 12px;
 width: 100%;
 max-width: 400px;
 margin: 0 auto;
}
.slider-label {
 font-size: 10px;
 font-weight: 600;
 letter-spacing: 0.12em;
 color: var(--gold);
 text-transform: uppercase;
 width: 80px;
 flex-shrink: 0;
}
.slider-track {
 flex: 1;
 position: relative;
 height: 20px;
 display: flex;
 align-items: center;
}
.slider-track input[type=range] {
 -webkit-appearance: none;
 appearance: none;
 width: 100%;
 height: 2px;
 background: rgba(198,168,106,0.2);
 border-radius: 2px;
 outline: none;
 cursor: pointer;
}
.slider-track input[type=range]::-webkit-slider-thumb {
 -webkit-appearance: none;
 width: 14px;
 height: 14px;
 border-radius: 50%;
 background: #2a2a2a;
 border: 2px solid var(--gold);
 cursor: pointer;
 transition: all 0.15s;
 box-shadow: 0 0 10px rgba(198,168,106,0.3);
}
