/* SoulMap by Sahil — soul.css */
:root {
  --bg:       #0e1424;
  --bg2:      #111827;
  --bg3:      #1a2238;
  --gold:     #d9b24a;
  --gold-lt:  #f5e08c;
  --gold-dim: rgba(217,178,74,0.08);
  --gold-bdr: rgba(217,178,74,0.16);
  --white:    #ffffff;
  --text:     #e8e0d0;
  --muted:    #5a5244;
  --font-cin: 'Cinzel', serif;
  --font-cor: 'Cormorant Garamond', Georgia, serif;
  --font-ui:  'Inter', -apple-system, sans-serif;
  --max:      1080px;
  --r:        6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-cor);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; }
img { display: block; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.sm-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 36px; height: 68px;
  background: rgba(14,20,36,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-bdr);
}
.sm-brand {
  display: flex; align-items: center; gap: 13px;
}
.sm-mark {
  width: 40px; height: 40px; flex-shrink: 0;
}
.sm-wordmark {
  display: flex; flex-direction: column; line-height: 1.2;
}
.sm-name {
  font-family: var(--font-ui);
  font-size: 19px; font-weight: 600; letter-spacing: -0.3px;
}
.sm-soul { color: var(--white); }
.sm-map  { color: var(--gold); }
.sm-sub  {
  font-family: var(--font-cor);
  font-size: 11.5px; font-weight: 300; font-style: normal;
  color: rgba(255,255,255,0.55); letter-spacing: 0.4px;
}
.sm-sub-dash { color: var(--gold); }
.sm-sub em   { font-style: italic; color: rgba(255,255,255,0.7); }

.sm-nav-links {
  display: flex; align-items: center; gap: 2px;
  margin-right: 8px;
}
.sm-nav-link {
  font-family: var(--font-ui);
  font-size: 12.5px; font-weight: 500;
  color: rgba(232,224,208,0.32);
  padding: 7px 13px; border-radius: var(--r);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.1px;
}
.sm-nav-link:hover { color: rgba(232,224,208,0.7); background: rgba(255,255,255,0.04); }
.sm-nav-link.sm-nav-active { color: var(--gold); }

.sm-btn-nav {
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 500;
  color: var(--gold);
  border: 1px solid rgba(217,178,74,0.35);
  padding: 9px 22px; border-radius: var(--r);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.sm-btn-nav:hover {
  background: var(--gold-dim);
  border-color: rgba(217,178,74,0.6);
  color: var(--gold-lt);
}

@media (max-width: 860px) { .sm-nav-links { display: none; } }
@media (max-width: 480px)  { .sm-btn-nav { padding: 8px 14px; font-size: 12px; } }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.sm-hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 110px 24px 80px;
  text-align: center;
}
.sm-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(217,178,74,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.sm-stars { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.sm-star {
  position: absolute; background: #fff; border-radius: 50%;
  animation: twinkle var(--dur, 5s) ease-in-out infinite var(--dl, 0s);
}
@keyframes twinkle {
  0%, 100% { opacity: var(--op, 0.35); }
  50%       { opacity: calc(var(--op, 0.35) * 0.3); }
}
.sm-hero-inner { position: relative; z-index: 1; max-width: 740px; }

.sm-eyebrow {
  font-family: var(--font-cin);
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); opacity: 0.8; margin-bottom: 32px;
}
.sm-hero-h1 {
  font-family: var(--font-cor);
  font-size: clamp(50px, 8.5vw, 92px);
  font-weight: 300; line-height: 1.08;
  color: var(--white); letter-spacing: -0.5px;
  margin-bottom: 30px;
}
.sm-hero-sub {
  font-family: var(--font-cor);
  font-size: clamp(17px, 2.5vw, 21px);
  font-weight: 300; font-style: italic;
  color: rgba(232,224,208,0.65); line-height: 1.65;
  margin-bottom: 48px;
}
.sm-btn-primary {
  display: inline-block;
  font-family: var(--font-ui); font-size: 15px; font-weight: 600;
  color: var(--bg); background: var(--gold);
  padding: 15px 38px; border-radius: var(--r);
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
}
.sm-btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }
.sm-hero-scroll {
  display: block; margin-top: 24px;
  font-family: var(--font-cor); font-size: 13px; font-style: italic;
  color: rgba(232,224,208,0.32); letter-spacing: 0.3px;
  transition: color 0.2s;
}
.sm-hero-scroll:hover { color: rgba(232,224,208,0.6); }

/* ═══════════════════════════════════════
   SHARED
═══════════════════════════════════════ */
.sm-container { max-width: var(--max); margin: 0 auto; padding: 0 36px; }
.sm-section-label {
  font-family: var(--font-cin);
  font-size: 9.5px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); opacity: 0.72; margin-bottom: 18px;
}
.sm-section-h2 {
  font-family: var(--font-cor);
  font-size: clamp(30px, 4vw, 46px); font-weight: 300;
  color: var(--white); margin-bottom: 56px; letter-spacing: 0.2px;
}
.sm-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bdr), transparent);
}

/* ═══════════════════════════════════════
   INTRO
═══════════════════════════════════════ */
.sm-intro { padding: 108px 0; }
.sm-intro-quote {
  font-family: var(--font-cor);
  font-size: clamp(20px, 2.8vw, 27px); font-weight: 300; font-style: italic;
  color: var(--gold-lt); line-height: 1.75;
  border-left: 2px solid rgba(217,178,74,0.5); padding-left: 28px;
  margin-bottom: 36px; max-width: 700px;
}
.sm-intro-body {
  font-family: var(--font-cor);
  font-size: 19px; font-weight: 300;
  color: var(--text); line-height: 1.88; max-width: 660px;
}

/* ═══════════════════════════════════════
   SESSIONS
═══════════════════════════════════════ */
.sm-sessions { padding: 108px 0; background: var(--bg2); }
.sm-sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(234px, 1fr));
  gap: 18px;
}
.sm-session-card {
  border: 1px solid var(--gold-bdr);
  background: rgba(14,20,36,0.6);
  padding: 34px 28px 28px;
  border-radius: 8px;
  display: flex; flex-direction: column;
  color: inherit;
  transition: border-color 0.22s, background 0.22s, transform 0.18s;
}
.sm-session-card:hover {
  border-color: rgba(217,178,74,0.38);
  background: rgba(217,178,74,0.05);
  transform: translateY(-3px);
}
.sm-session-icon { font-size: 22px; margin-bottom: 18px; }
.sm-session-name {
  font-family: var(--font-cin); font-size: 13px; font-weight: 400;
  color: var(--gold-lt); letter-spacing: 0.3px; margin-bottom: 10px;
}
.sm-session-desc {
  font-family: var(--font-cor); font-size: 15.5px; font-weight: 300;
  color: rgba(232,224,208,0.65); line-height: 1.72; flex: 1; margin-bottom: 24px;
}
.sm-session-foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--gold-bdr); padding-top: 16px;
}
.sm-session-dur {
  font-family: var(--font-ui); font-size: 11.5px;
  color: rgba(217,178,74,0.55); letter-spacing: 0.3px;
}
.sm-session-arrow {
  font-size: 13px; color: var(--gold); opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}
.sm-session-card:hover .sm-session-arrow { opacity: 1; transform: translateX(3px); }

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.sm-how { padding: 108px 0; }
.sm-steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; position: relative;
}
.sm-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(100% / 6 + 8px);
  right: calc(100% / 6 + 8px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bdr) 20%, var(--gold-bdr) 80%, transparent);
}
.sm-step { padding: 0 32px; text-align: center; }
.sm-step-num {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid var(--gold-bdr);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-cin); font-size: 13px; color: var(--gold);
  background: var(--bg); position: relative; z-index: 1;
}
.sm-step-title {
  font-family: var(--font-cin); font-size: 12.5px; font-weight: 400;
  color: var(--white); letter-spacing: 0.3px; margin-bottom: 10px;
}
.sm-step-desc {
  font-family: var(--font-cor); font-size: 15.5px; font-weight: 300;
  color: rgba(232,224,208,0.6); line-height: 1.72;
}

/* ═══════════════════════════════════════
   VOICE NOTE
═══════════════════════════════════════ */
.sm-voice { padding: 108px 0; background: var(--bg2); }
.sm-voice-inner { max-width: 640px; }
.sm-voice-quote {
  font-family: var(--font-cor);
  font-size: clamp(22px, 3vw, 32px); font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.6; margin-bottom: 28px;
}
.sm-voice-body {
  font-family: var(--font-cor); font-size: 17px; font-weight: 300;
  color: rgba(232,224,208,0.65); line-height: 1.88; margin-bottom: 36px;
}
.sm-channels { display: flex; gap: 10px; flex-wrap: wrap; }
.sm-channel {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-ui); font-size: 12.5px; font-weight: 500;
  color: rgba(232,224,208,0.6);
  border: 1px solid var(--gold-bdr); padding: 7px 16px; border-radius: 100px;
}

/* ═══════════════════════════════════════
   ECOSYSTEM
═══════════════════════════════════════ */
.sm-ecosystem { padding: 108px 0; }
.sm-eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}
.sm-eco-card {
  border: 1px solid var(--gold-bdr);
  background: var(--gold-dim);
  padding: 32px 28px;
  border-radius: 10px;
  display: flex; flex-direction: column;
  color: inherit;
  transition: border-color 0.22s, background 0.22s, transform 0.18s;
  position: relative;
}
.sm-eco-card:hover {
  border-color: rgba(217,178,74,0.35);
  background: rgba(217,178,74,0.06);
  transform: translateY(-4px);
}
.sm-eco-reading {
  border-color: rgba(217,178,74,0.3);
  background: rgba(217,178,74,0.07);
  transform: translateY(-6px);
}
.sm-eco-reading:hover { transform: translateY(-10px); }

.sm-eco-tag {
  font-family: var(--font-ui); font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(217,178,74,0.55);
  margin-bottom: 22px;
}
.sm-eco-tag-gold { color: var(--gold); }

.sm-eco-icon { font-size: 26px; margin-bottom: 14px; }

.sm-eco-name {
  font-family: var(--font-cin); font-size: 13.5px; font-weight: 400;
  color: var(--gold-lt); letter-spacing: 0.3px; margin-bottom: 12px;
  line-height: 1.4;
}
.sm-eco-desc {
  font-family: var(--font-cor); font-size: 15.5px; font-weight: 300;
  color: rgba(232,224,208,0.6); line-height: 1.72; flex: 1; margin-bottom: 24px;
}
.sm-eco-foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--gold-bdr); padding-top: 14px;
  font-family: var(--font-ui); font-size: 11px;
  color: rgba(217,178,74,0.4); letter-spacing: 0.2px;
}
.sm-eco-arrow {
  font-size: 14px; color: var(--gold); opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}
.sm-eco-card:hover .sm-eco-arrow { opacity: 1; transform: translate(2px,-2px); }

@media (max-width: 768px) {
  .sm-eco-grid       { grid-template-columns: 1fr; }
  .sm-eco-reading    { transform: none; }
  .sm-eco-reading:hover { transform: translateY(-4px); }
  .sm-ecosystem      { padding: 72px 0; }
}

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.sm-cta {
  padding: 130px 24px;
  text-align: center;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(217,178,74,0.07) 0%, transparent 70%);
}
.sm-cta-h2 {
  font-family: var(--font-cor);
  font-size: clamp(36px, 5.5vw, 62px); font-weight: 300;
  color: var(--white); margin-bottom: 10px;
}
.sm-cta-sub {
  font-family: var(--font-cor); font-size: 19px; font-weight: 300; font-style: italic;
  color: rgba(232,224,208,0.42); margin-bottom: 48px;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.sm-footer {
  padding: 40px 36px;
  border-top: 1px solid var(--gold-bdr);
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.sm-footer-brand { display: flex; align-items: center; gap: 10px; }
.sm-footer-mark  { width: 26px; height: 26px; }
.sm-footer-name  { font-family: var(--font-ui); font-size: 14px; font-weight: 600; }
.sm-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.sm-footer-links a {
  font-family: var(--font-ui); font-size: 12.5px;
  color: rgba(232,224,208,0.35); transition: color 0.2s;
}
.sm-footer-links a:hover { color: var(--gold); }
.sm-footer-copy {
  font-family: var(--font-cor); font-size: 12.5px; font-style: italic;
  color: var(--muted); text-align: right;
  display: flex; flex-direction: column; gap: 2px;
}
.sm-footer-copy .sm-heart { color: #e03b3b; font-style: normal; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .sm-nav         { padding: 0 20px; }
  .sm-wordmark    { display: none; }
  .sm-container   { padding: 0 20px; }
  .sm-steps       { grid-template-columns: 1fr; }
  .sm-steps::before { display: none; }
  .sm-step        { padding: 28px 0; border-bottom: 1px solid var(--gold-bdr); }
  .sm-step:last-child { border-bottom: none; }
  .sm-intro       { padding: 72px 0; }
  .sm-sessions    { padding: 72px 0; }
  .sm-how         { padding: 72px 0; }
  .sm-voice       { padding: 72px 0; }
  .sm-cta         { padding: 90px 24px; }
  .sm-footer      { flex-direction: column; align-items: flex-start; padding: 32px 20px; }
  .sm-footer-copy { text-align: left; }
}
@media (max-width: 480px) {
  .sm-sessions-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   BOOK PAGE — WIZARD
═══════════════════════════════════════ */
.sm-page-hero {
  padding: 140px 24px 72px;
  text-align: center;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(217,178,74,0.06) 0%, transparent 65%);
}
.sm-page-hero .sm-eyebrow { margin-bottom: 18px; }
.sm-page-h1 {
  font-family: var(--font-cor);
  font-size: clamp(38px, 5.5vw, 60px); font-weight: 300;
  color: var(--white); letter-spacing: 0.2px; margin-bottom: 14px;
}
.sm-page-sub {
  font-family: var(--font-cor); font-size: 18px; font-weight: 300; font-style: italic;
  color: rgba(232,224,208,0.5);
}

/* Progress bar */
.sm-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 36px 24px;
  max-width: 520px; margin: 0 auto;
}
.sm-prog-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex: 1;
  position: relative;
}
.sm-prog-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 19px; left: 50%; right: -50%;
  height: 1px;
  background: var(--gold-bdr);
  z-index: 0;
}
.sm-prog-step.active:not(:last-child)::after,
.sm-prog-step.done:not(:last-child)::after {
  background: rgba(217,178,74,0.4);
}
.sm-prog-dot {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-cin); font-size: 12px;
  border: 1px solid var(--gold-bdr);
  color: rgba(217,178,74,0.4);
  background: var(--bg);
  position: relative; z-index: 1;
  transition: all 0.3s ease;
}
.sm-prog-step.active .sm-prog-dot {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217,178,74,0.12);
}
.sm-prog-step.done .sm-prog-dot {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--bg);
}
.sm-prog-label {
  font-family: var(--font-ui); font-size: 10px; font-weight: 500;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: rgba(217,178,74,0.35);
  white-space: nowrap;
}
.sm-prog-step.active .sm-prog-label { color: var(--gold); }
.sm-prog-step.done  .sm-prog-label { color: rgba(217,178,74,0.55); }

/* Wizard shell */
.sm-wizard { max-width: 720px; margin: 0 auto; padding: 0 24px 100px; }
.sm-step-panel { display: none; }
.sm-step-panel.active { display: block; }

/* Session cards in book */
.sm-book-cards {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 14px;
}
@media (max-width: 580px) { .sm-book-cards { grid-template-columns: 1fr; } }

.sm-book-card {
  border: 1px solid var(--gold-bdr);
  background: var(--gold-dim);
  padding: 26px 22px;
  border-radius: 8px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.18s;
  position: relative;
  user-select: none;
}
.sm-book-card:hover { border-color: rgba(217,178,74,0.35); background: rgba(217,178,74,0.06); transform: translateY(-2px); }
.sm-book-card.selected {
  border-color: var(--gold);
  background: rgba(217,178,74,0.09);
  transform: translateY(-2px);
}
.sm-book-card.selected::after {
  content: '✓';
  position: absolute; top: 14px; right: 16px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--bg);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.sm-book-card-icon { font-size: 20px; margin-bottom: 12px; }
.sm-book-card-name {
  font-family: var(--font-cin); font-size: 12px; color: var(--gold-lt);
  letter-spacing: 0.3px; margin-bottom: 8px;
}
.sm-book-card-desc {
  font-family: var(--font-cor); font-size: 14.5px; font-weight: 300;
  color: rgba(232,224,208,0.55); line-height: 1.65; margin-bottom: 16px;
}
.sm-book-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--gold-bdr); padding-top: 12px;
}
.sm-book-card-dur { font-family: var(--font-ui); font-size: 11px; color: rgba(217,178,74,0.5); }
.sm-book-card-price {
  font-family: var(--font-ui); font-size: 14px; font-weight: 600; color: var(--gold);
}

/* Form fields */
.sm-form-section { margin-bottom: 32px; }
.sm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .sm-form-row { grid-template-columns: 1fr; } }

.sm-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.sm-field label {
  font-family: var(--font-ui); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: rgba(217,178,74,0.65);
}
.sm-field input,
.sm-field textarea,
.sm-field select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(217,178,74,0.2);
  color: var(--white);
  font-family: var(--font-cor); font-size: 16px; font-weight: 300;
  padding: 12px 16px; border-radius: var(--r);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.sm-field input::placeholder,
.sm-field textarea::placeholder { color: rgba(232,224,208,0.25); }
.sm-field input:focus,
.sm-field textarea:focus,
.sm-field select:focus {
  border-color: rgba(217,178,74,0.5);
  background: rgba(217,178,74,0.04);
}
.sm-field textarea { resize: vertical; min-height: 110px; }
.sm-field select option { background: #1a2238; color: #fff; }
.sm-field-hint {
  font-family: var(--font-cor); font-size: 13px; font-style: italic;
  color: rgba(232,224,208,0.3);
}

/* Delivery options */
.sm-delivery-opts { display: flex; flex-direction: column; gap: 12px; }
.sm-delivery-opt {
  border: 1px solid var(--gold-bdr);
  background: var(--gold-dim);
  padding: 18px 22px;
  border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; gap: 16px;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.sm-delivery-opt:hover { border-color: rgba(217,178,74,0.3); }
.sm-delivery-opt.selected { border-color: var(--gold); background: rgba(217,178,74,0.07); }
.sm-delivery-opt-icon { font-size: 20px; flex-shrink: 0; }
.sm-delivery-opt-name {
  font-family: var(--font-cin); font-size: 12px; color: var(--gold-lt);
  letter-spacing: 0.3px;
}
.sm-delivery-opt-hint {
  font-family: var(--font-cor); font-size: 14px; font-weight: 300;
  color: rgba(232,224,208,0.45);
}
.sm-delivery-input-wrap { margin-top: 12px; }

/* Review card */
.sm-review-card {
  border: 1px solid rgba(217,178,74,0.22);
  background: rgba(217,178,74,0.05);
  border-radius: 10px; padding: 30px;
  margin-bottom: 28px;
}
.sm-review-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(217,178,74,0.08);
  gap: 12px;
}
.sm-review-row:last-child { border-bottom: none; }
.sm-review-label {
  font-family: var(--font-ui); font-size: 11px; font-weight: 500;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: rgba(217,178,74,0.5); flex-shrink: 0;
}
.sm-review-val {
  font-family: var(--font-cor); font-size: 16px; font-weight: 300;
  color: var(--text); text-align: right;
}
.sm-review-total {
  border-top: 1px solid rgba(217,178,74,0.25) !important;
  border-bottom: none !important;
  padding-top: 18px !important; margin-top: 8px;
}
.sm-review-total .sm-review-label { color: var(--gold); font-size: 12px; }
.sm-review-total .sm-review-val {
  font-family: var(--font-ui); font-size: 22px; font-weight: 700; color: var(--gold);
}

/* Wizard nav buttons */
.sm-wiz-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 36px; gap: 12px;
}
.sm-btn-back {
  font-family: var(--font-ui); font-size: 13px; font-weight: 500;
  color: rgba(232,224,208,0.4);
  background: none; border: 1px solid rgba(232,224,208,0.1);
  padding: 12px 24px; border-radius: var(--r); cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.sm-btn-back:hover { color: rgba(232,224,208,0.7); border-color: rgba(232,224,208,0.25); }
.sm-btn-next {
  font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  color: var(--bg); background: var(--gold);
  border: none; padding: 13px 36px; border-radius: var(--r); cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-left: auto;
}
.sm-btn-next:hover { background: var(--gold-lt); transform: translateY(-1px); }
.sm-btn-next:disabled { opacity: 0.45; pointer-events: none; }

.sm-error-msg {
  font-family: var(--font-ui); font-size: 12px;
  color: #e88; margin-top: 6px; display: none;
}
.sm-field.has-error input,
.sm-field.has-error textarea,
.sm-field.has-error select { border-color: rgba(220,80,80,0.5); }
.sm-field.has-error .sm-error-msg { display: block; }

/* ═══════════════════════════════════════
   LEGAL PAGE — TABS
═══════════════════════════════════════ */
.sm-legal-tabs {
  display: flex; gap: 0; flex-wrap: wrap;
  border-bottom: 1px solid var(--gold-bdr);
  margin-bottom: 52px;
}
.sm-legal-tab {
  font-family: var(--font-ui); font-size: 12px; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: rgba(232,224,208,0.35);
  padding: 14px 22px; cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
  background: none; border-left: none; border-right: none; border-top: none;
  outline: none;
}
.sm-legal-tab:hover { color: rgba(217,178,74,0.7); }
.sm-legal-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
@media (max-width: 640px) { .sm-legal-tab { padding: 11px 14px; font-size: 11px; } }

.sm-legal-panel { display: none; }
.sm-legal-panel.active { display: block; }

.sm-legal-body { max-width: 720px; }
.sm-legal-body h2 {
  font-family: var(--font-cin); font-size: 14px; font-weight: 400;
  color: var(--gold-lt); letter-spacing: 1px; text-transform: uppercase;
  margin: 40px 0 14px;
}
.sm-legal-body h2:first-child { margin-top: 0; }
.sm-legal-body p {
  font-family: var(--font-cor); font-size: 16.5px; font-weight: 300;
  color: rgba(232,224,208,0.72); line-height: 1.85;
  margin-bottom: 16px;
}
.sm-legal-body ul {
  margin: 0 0 16px 20px;
  font-family: var(--font-cor); font-size: 16.5px; font-weight: 300;
  color: rgba(232,224,208,0.65); line-height: 1.85;
}
.sm-legal-body li { margin-bottom: 6px; }
.sm-legal-body strong { color: var(--text); font-weight: 400; }
.sm-legal-updated {
  font-family: var(--font-ui); font-size: 11px; font-weight: 500;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: rgba(217,178,74,0.35); margin-bottom: 36px;
}

/* ═══════════════════════════════════════
   CONFIRM PAGE
═══════════════════════════════════════ */
.sm-confirm-wrap {
  max-width: 580px; margin: 0 auto; padding: 0 24px 100px;
  text-align: center;
}
.sm-confirm-icon {
  width: 72px; height: 72px; border-radius: 50%;
  border: 1px solid rgba(217,178,74,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 28px;
  background: rgba(217,178,74,0.07);
}
.sm-confirm-h2 {
  font-family: var(--font-cor);
  font-size: clamp(28px, 4vw, 40px); font-weight: 300;
  color: var(--white); margin-bottom: 12px;
}
.sm-confirm-sub {
  font-family: var(--font-cor); font-size: 18px; font-weight: 300; font-style: italic;
  color: rgba(232,224,208,0.45); margin-bottom: 48px; line-height: 1.65;
}
.sm-confirm-ref {
  border: 1px solid rgba(217,178,74,0.22);
  background: rgba(217,178,74,0.05);
  border-radius: 10px; padding: 30px; margin-bottom: 36px;
  text-align: left;
}
.sm-confirm-steps {
  text-align: left;
  border: 1px solid var(--gold-bdr);
  background: var(--gold-dim);
  border-radius: 10px; padding: 28px;
  margin-bottom: 36px;
}
.sm-confirm-step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid rgba(217,178,74,0.07);
}
.sm-confirm-step:last-child { border-bottom: none; }
.sm-confirm-step-num {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--gold-bdr);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-cin); font-size: 11px; color: var(--gold);
  flex-shrink: 0;
}
.sm-confirm-step-text {
  font-family: var(--font-cor); font-size: 15.5px; font-weight: 300;
  color: rgba(232,224,208,0.65); line-height: 1.65; padding-top: 4px;
}

/* ═══════════════════════════════════════
   SHARED FADE-IN
═══════════════════════════════════════ */
[data-fade] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-fade].sm-visible { opacity: 1; transform: none; }

/* GSAP initial state (index.php) */
[data-g] { opacity: 0; transform: translateY(32px); }

/* ═══════════════════════════════════════
   INTL-TEL-INPUT — DARK THEME
═══════════════════════════════════════ */
.iti { width: 100%; }
.iti__flag-container { border-right: 1px solid rgba(217,178,74,0.15); }
.iti__selected-country { background: rgba(255,255,255,0.04) !important; padding: 0 10px; border-radius: var(--r) 0 0 var(--r); }
.iti__selected-country:hover { background: rgba(217,178,74,0.07) !important; }
.iti__selected-dial-code { color: rgba(232,224,208,0.55); font-family: var(--font-ui); font-size: 14px; }
.iti__arrow { border-top-color: rgba(217,178,74,0.4); margin-left: 5px; }
.iti__arrow--up { border-bottom-color: rgba(217,178,74,0.4); }
.iti__country-list { background: #111827; border: 1px solid rgba(217,178,74,0.2); border-radius: var(--r); box-shadow: 0 8px 24px rgba(0,0,0,0.5); }
.iti__country { color: #e8e0d0; font-family: var(--font-ui); font-size: 13px; }
.iti__country.iti__highlight { background: rgba(217,178,74,0.1); }
.iti__country-name { color: #e8e0d0; }
.iti__dial-code { color: rgba(217,178,74,0.55); }
.iti__divider { border-bottom-color: rgba(217,178,74,0.1); }
.iti__search-input { background: #0e1424; border: 1px solid rgba(217,178,74,0.2); color: #e8e0d0; font-family: var(--font-ui); font-size: 13px; border-radius: 4px; }
.iti input { border-radius: var(--r) !important; }

/* ═══════════════════════════════════════
   INDEX — THREE.JS HOMEPAGE
═══════════════════════════════════════ */
#sm3-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none; display: block;
}
.sm-nav, .sm3-hero, .sm3-body, .sm3-cta, .sm-footer { position: relative; z-index: 1; }
.sm3-hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 110px 24px 80px; background: transparent;
}
.sm3-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 220px;
  background: linear-gradient(to bottom, transparent, rgba(14,20,36,0.97));
  pointer-events: none;
}
.sm3-hero-inner { position: relative; z-index: 1; max-width: 740px; }
.sm3-hero .sm-hero-h1 { text-shadow: 0 0 60px rgba(14,20,36,0.85), 0 2px 30px rgba(14,20,36,0.7); }
.sm3-hero .sm-hero-sub { text-shadow: 0 2px 20px rgba(14,20,36,0.9); }
.sm3-body > section,
.sm3-body > .sm-divider {
  background: rgba(12,17,30,0.93);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.sm3-body > .sm-divider { height: 1px; background: rgba(12,17,30,0.93); }
.sm3-body > section + section { border-top: 1px solid rgba(217,178,74,0.12); }
.sm3-cta { padding: 140px 24px; text-align: center; background: transparent; }
.sm3-cta .sm-eyebrow,
.sm3-cta .sm-cta-h2,
.sm3-cta .sm-cta-sub { text-shadow: 0 2px 30px rgba(14,20,36,0.95); }
.sm3-tilt { transform-style: preserve-3d; will-change: transform; transition: border-color 0.22s, background 0.22s; }
.sm3-tilt:hover { transform: none !important; }
.sm3-scroll-hint {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: scrollBounce 2s ease-in-out infinite;
}
.sm3-scroll-hint span { font-family: var(--font-cor); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(217,178,74,0.45); }
.sm3-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(217,178,74,0.5), transparent); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
.sm3-orbit-label {
  position: absolute; z-index: 2;
  font-family: var(--font-cin); font-size: 9px; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(217,178,74,0.3); top: 22%; right: 8%;
}
.sm3-body .sm-voice { background: rgba(12,17,30,0.93); }
.sm-footer { background: rgba(10,14,24,0.98) !important; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.ct-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; padding: 80px 0 100px; }
@media (max-width: 820px) { .ct-grid { grid-template-columns: 1fr; gap: 40px; } }
.ct-info-label { font-family: var(--font-cin); font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); opacity: 0.7; margin-bottom: 14px; }
.ct-info-h { font-family: var(--font-cor); font-size: clamp(30px,4vw,44px); font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 20px; }
.ct-info-body { font-family: var(--font-cor); font-size: 17px; font-weight: 300; color: rgba(232,224,208,0.55); line-height: 1.85; margin-bottom: 40px; }
.ct-channels { display: flex; flex-direction: column; gap: 14px; }
.ct-channel {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 8px;
  border: 1px solid var(--gold-bdr); background: var(--gold-dim);
  text-decoration: none; color: inherit; transition: border-color 0.2s, background 0.2s;
}
.ct-channel:hover { border-color: rgba(217,178,74,0.3); background: rgba(217,178,74,0.06); }
.ct-channel-icon { font-size: 18px; flex-shrink: 0; width: 36px; text-align: center; }
.ct-channel-name { font-family: var(--font-cin); font-size: 11.5px; color: var(--gold-lt); letter-spacing: 0.3px; margin-bottom: 2px; }
.ct-channel-val  { font-family: var(--font-cor); font-size: 14.5px; font-weight: 300; color: rgba(232,224,208,0.5); }
.ct-subject-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
@media (max-width: 480px) { .ct-subject-grid { grid-template-columns: 1fr; } }
.ct-subject-pill { display: none; }
.ct-subject-label {
  display: flex; flex-direction: column; justify-content: center; padding: 14px 18px; border-radius: 8px;
  border: 1px solid var(--gold-bdr); background: var(--gold-dim);
  cursor: pointer; transition: border-color 0.2s, background 0.2s; gap: 3px;
}
.ct-subject-pill:checked + .ct-subject-label { border-color: var(--gold); background: rgba(217,178,74,0.09); }
.ct-subject-pill-name { font-family: var(--font-cin); font-size: 11.5px; color: var(--gold-lt); letter-spacing: 0.3px; }
.ct-subject-pill-desc { font-family: var(--font-cor); font-size: 13px; font-weight: 300; color: rgba(232,224,208,0.4); }
.ct-success { text-align: center; padding: 56px 24px; border: 1px solid rgba(217,178,74,0.2); border-radius: 10px; background: rgba(217,178,74,0.04); }
.ct-success-icon { font-size: 36px; margin-bottom: 20px; }
.ct-success h2 { font-family: var(--font-cor); font-size: 32px; font-weight: 300; color: var(--white); margin-bottom: 10px; }
.ct-success p  { font-family: var(--font-cor); font-size: 17px; font-style: italic; color: rgba(232,224,208,0.45); line-height: 1.7; }

/* ═══════════════════════════════════════
   CTRL PANEL
═══════════════════════════════════════ */
.a-nav { position: sticky; top: 0; z-index: 50; background: rgba(14,20,36,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(217,178,74,0.14); display: flex; align-items: center; justify-content: space-between; padding: 0 28px; height: 58px; }
.a-nav-brand { font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.a-nav-brand img { width: 40px; height: 40px; }
.soul { color: #fff; } .map { color: #d9b24a; }
.a-nav-right { display: flex; align-items: center; gap: 16px; }
.a-nav-user { font-size: 12px; color: rgba(232,224,208,0.35); }
.a-nav-logout { font-size: 12px; color: rgba(217,178,74,0.5); border: 1px solid rgba(217,178,74,0.2); padding: 6px 14px; border-radius: 4px; transition: color 0.2s; }
.a-nav-logout:hover { color: #d9b24a; }
.a-wrap { max-width: 1100px; margin: 0 auto; padding: 36px 24px 80px; }
.a-flash { background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.25); color: #4ade80; padding: 12px 18px; border-radius: 6px; font-size: 13px; margin-bottom: 24px; }
.a-stats { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; margin-bottom: 32px; }
@media (max-width: 700px) { .a-stats { grid-template-columns: repeat(2,1fr); } }
.a-stat { background: #111827; border: 1px solid rgba(217,178,74,0.12); border-radius: 8px; padding: 18px 20px; }
.a-stat-n { font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.a-stat-l { font-size: 11px; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; color: rgba(232,224,208,0.35); }
.a-tabs { display: flex; gap: 0; border-bottom: 1px solid rgba(217,178,74,0.12); margin-bottom: 24px; overflow-x: auto; }
.a-tab { font-size: 12px; font-weight: 500; letter-spacing: 0.3px; color: rgba(232,224,208,0.35); padding: 11px 18px; border-bottom: 2px solid transparent; white-space: nowrap; transition: color 0.2s; }
.a-tab:hover { color: rgba(217,178,74,0.6); }
.a-tab.active { color: #d9b24a; border-bottom-color: #d9b24a; }
.a-tab-count { display: inline-block; background: rgba(217,178,74,0.1); color: rgba(217,178,74,0.6); font-size: 10px; padding: 1px 6px; border-radius: 100px; margin-left: 5px; }
.a-table-wrap { overflow-x: auto; }
.a-table { width: 100%; border-collapse: collapse; }
.a-table th { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(217,178,74,0.45); padding: 10px 14px; text-align: left; border-bottom: 1px solid rgba(217,178,74,0.1); white-space: nowrap; }
.a-table td { padding: 13px 14px; border-bottom: 1px solid rgba(217,178,74,0.06); vertical-align: middle; font-size: 13.5px; }
.a-table tr:hover td { background: rgba(217,178,74,0.03); }
.a-ref { color: #d9b24a; font-family: monospace; font-size: 13px; font-weight: 600; }
.a-sub { font-size: 12px; color: rgba(232,224,208,0.38); margin-top: 2px; }
.a-btn-sm { font-size: 12px; color: rgba(217,178,74,0.55); border: 1px solid rgba(217,178,74,0.18); padding: 5px 12px; border-radius: 4px; white-space: nowrap; transition: color 0.2s, border-color 0.2s; }
.a-btn-sm:hover { color: #d9b24a; border-color: rgba(217,178,74,0.4); }
.a-empty { padding: 60px 24px; text-align: center; color: rgba(232,224,208,0.25); font-style: italic; }
.a-foot { text-align: center; padding: 32px; font-size: 11px; color: rgba(232,224,208,0.2); border-top: 1px solid rgba(217,178,74,0.08); }
/* Detail page */
.a-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .a-detail-grid { grid-template-columns: 1fr; } }
.a-card { background: #111827; border: 1px solid rgba(217,178,74,0.14); border-radius: 10px; padding: 28px; }
.a-card h3 { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px; color: rgba(217,178,74,0.6); text-transform: uppercase; margin-bottom: 20px; }
.a-row { display: flex; justify-content: space-between; align-items: baseline; padding: 9px 0; border-bottom: 1px solid rgba(217,178,74,0.06); gap: 12px; }
.a-row:last-child { border: none; }
.a-lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: rgba(217,178,74,0.45); white-space: nowrap; }
.a-val { font-size: 14.5px; color: #e8e0d0; text-align: right; word-break: break-all; }
.a-val.gold { color: #d9b24a; font-weight: 700; font-size: 18px; }
.a-actions { display: flex; flex-direction: column; gap: 12px; }
.a-action-btn { display: block; width: 100%; padding: 12px 18px; border-radius: 6px; border: none; cursor: pointer; font-size: 13px; font-weight: 600; text-align: left; transition: opacity 0.15s; }
.a-action-btn:hover { opacity: 0.85; }
.a-action-btn.green  { background: rgba(74,222,128,0.12); color: #4ade80; border: 1px solid rgba(74,222,128,0.25); }
.a-action-btn.blue   { background: rgba(59,158,255,0.12); color: #3b9eff; border: 1px solid rgba(59,158,255,0.25); }
.a-action-btn.orange { background: rgba(232,160,32,0.12); color: #e8a020; border: 1px solid rgba(232,160,32,0.25); }
.a-action-btn.red    { background: rgba(248,113,113,0.12); color: #f87171; border: 1px solid rgba(248,113,113,0.25); }
.a-action-btn.grey   { background: rgba(255,255,255,0.05); color: rgba(232,224,208,0.5); border: 1px solid rgba(255,255,255,0.08); }
.a-action-btn.gold   { background: rgba(217,178,74,0.12); color: #d9b24a; border: 1px solid rgba(217,178,74,0.25); }
.a-textarea { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(217,178,74,0.18); color: #e8e0d0; font-family: inherit; font-size: 14px; padding: 10px 14px; border-radius: 6px; margin-top: 8px; resize: vertical; min-height: 72px; outline: none; }
.a-textarea:focus { border-color: rgba(217,178,74,0.4); }
.a-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 200; align-items: center; justify-content: center; }
.a-modal.open { display: flex; }
.a-modal-box { background: #111827; border: 1px solid rgba(217,178,74,0.2); border-radius: 10px; padding: 32px; max-width: 420px; width: 90%; }
.a-modal-box h4 { color: #fff; font-size: 17px; margin-bottom: 8px; }
.a-modal-box p { color: rgba(232,224,208,0.55); font-size: 14px; margin-bottom: 18px; line-height: 1.6; }
.a-modal-btns { display: flex; gap: 10px; justify-content: flex-end; }
.a-modal-btn { padding: 10px 20px; border-radius: 6px; border: none; cursor: pointer; font-size: 13px; font-weight: 600; }
.a-modal-btn.cancel       { background: rgba(255,255,255,0.07); color: rgba(232,224,208,0.5); }
.a-modal-btn.confirm-green { background: #4ade80; color: #0a2015; }
.a-modal-btn.confirm-blue  { background: #3b9eff; color: #08192a; }
.a-modal-btn.confirm-gold  { background: #d9b24a; color: #0e1424; }
.a-modal-btn.confirm-red   { background: #f87171; color: #2a0a0a; }
.a-note-box { background: rgba(217,178,74,0.06); border-left: 3px solid rgba(217,178,74,0.4); padding: 14px 18px; border-radius: 0 6px 6px 0; font-size: 14px; font-style: italic; color: rgba(232,224,208,0.65); line-height: 1.7; }
/* Login box */
.a-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.a-login-box { background: #111827; border: 1px solid rgba(217,178,74,0.18); border-radius: 12px; padding: 48px 40px; max-width: 360px; width: 100%; }
.a-login-logo { margin-bottom: 32px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.a-login-logo .sm-mark { width: 52px !important; height: 52px !important; }
.a-login-logo-name { font-size: 22px; font-weight: 700; }
.a-login-err { background: rgba(220,80,80,0.1); border: 1px solid rgba(220,80,80,0.3); color: #f88; font-size: 13px; padding: 10px 14px; border-radius: 6px; margin-bottom: 18px; }
