/* ======================================================================
   MANVERSE — SHARED STYLESHEET
   Used by both the landing page (body.page-landing) and the
   registration page (body.page-registration).
   ====================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root{
  --ink: #1C1B19;
  --cream: #FAF6EF;
  --tan: #EBDCC7;
  --tan-soft: #F2E8D6;
  --white: #FFFFFF;
  --grey: #4A4A4A;
  --grey-soft: #857F6E;
  --muted: #B7AF9E;
  --muted-dim: #8C866F;
  --gold: #DA9316;
  --gold-soft: #E7B458;
  --rust: #B66A2E;
  --olive: #6E6A48;
  --line-light: rgba(28,27,25,0.10);
  --line-dark: rgba(255,255,255,0.09);
  --max: 1180px;

  /* legacy aliases (used by registration-page rules) */
  --bg: var(--cream);
  --card: var(--white);
  --primary: var(--ink);
  --secondary: var(--grey);
  --accent: var(--gold);
  --border: var(--line-light);
  --text: var(--ink);
  --text-light: var(--grey);
  --shadow: 0 20px 50px -20px rgba(28,27,25,.28);
}

/* ---------- RESET & BASE ---------- */
*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; scroll-padding-top:80px; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}
body{
  font-family:'Inter', system-ui, sans-serif;
  background:var(--cream);
  color:var(--ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
.wrap{ max-width:var(--max); margin:0 auto; padding:0 32px; }
section{ position:relative; }
h1,h2,h3{ font-weight:800; letter-spacing:-0.02em; line-height:1.1; }
p{ line-height:1.7; }

/* ---------- SHARED: LOGO MARK ---------- */
.logo{
  display:flex; align-items:center; gap:10px;
  font-weight:800; font-size:16.5px; color:var(--cream); letter-spacing:-0.01em;
}
.logo .ring{
  width:26px; height:26px; border-radius:50%;
  border:2.5px solid var(--gold);
  position:relative; flex:none;
}
.logo .ring::after{
  content:""; position:absolute; inset:6px; border-radius:50%; background:var(--gold);
}

/* ---------- SHARED: BUTTONS ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:16px 32px; border-radius:100px; font-weight:700; font-size:15px;
  cursor:pointer; border:1.5px solid transparent; font-family:inherit;
  transition:transform .25s cubic-bezier(.2,.8,.3,1.3), box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px) scale(1.03); }
.btn:active{ transform:translateY(0) scale(0.98); }

/* landing button variants */
.btn-gold{ background:var(--gold); color:var(--ink); box-shadow:0 10px 24px -10px rgba(218,147,22,0.5); }
.btn-gold:hover{ background:var(--gold-soft); box-shadow:0 14px 28px -10px rgba(218,147,22,0.6); }
.btn-outline-dark{ border-color:rgba(255,255,255,0.28); color:var(--cream); }
.btn-outline-dark:hover{ border-color:var(--cream); background:rgba(255,255,255,0.06); }

/* registration button variants */
.btn-primary{ background:var(--gold); color:var(--ink); box-shadow:0 14px 30px -12px rgba(218,147,22,.55); }
.btn-primary:hover{ background:var(--gold-soft); }
.btn-secondary{ background:var(--tan-soft); color:var(--ink); }
.btn-secondary:hover{ background:var(--tan); }

/* ---------- SHARED: FOOTER ---------- */
footer{
  background:var(--ink); color:var(--muted);
  padding:44px 0;
}
footer .wrap, .footer-inner{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:18px;
}
.f-brand{ display:flex; flex-direction:column; gap:4px; }
.f-brand strong{ color:var(--cream); font-size:16px; font-weight:800; }
.f-brand span{ font-size:13.5px; }
.f-right{ font-size:13.5px; text-align:right; }
.f-right a{ color:var(--gold-soft); font-weight:600; transition:color .2s ease; }
.f-right a:hover{ color:var(--gold); }
@media (max-width:620px){
  footer .wrap, .footer-inner{ flex-direction:column; align-items:flex-start; text-align:left; }
  .f-right{ text-align:left; }
}

/* ======================================================================
   LANDING PAGE ONLY  (active when <body class="page-landing">)
   ====================================================================== */

  /* ---------- SCROLL REVEAL ---------- */
  .reveal{
    opacity:0; transform:translateY(22px);
    transition:opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
    will-change:opacity, transform;
  }
  .reveal.in-view{ opacity:1; transform:translateY(0); }

  /* ---------- COMMON SECTION HEADING ---------- */
  .eyebrow{
    display:inline-flex; align-items:center; gap:9px;
    font-size:12.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
    color:var(--gold);
  }
  .eyebrow::before{
    content:""; width:6px; height:6px; border-radius:50%;
    background:var(--gold); box-shadow:0 0 0 3px rgba(218,147,22,0.20);
    flex:none;
  }

  .section-head{ text-align:center; max-width:700px; margin:0 auto 58px; }
  .section-head .eyebrow{ margin-bottom:16px; }
  .section-head h2{ font-size:clamp(28px,3.6vw,40px); margin-bottom:14px; }
  .section-head .section-desc{ font-size:16.5px; line-height:1.7; margin:0; }
  .section-head.on-light h2{ color:var(--ink); }
  .section-head.on-light .section-desc{ color:var(--grey); }
  .section-head.on-dark h2{ color:var(--cream); }
  .section-head.on-dark .section-desc{ color:var(--muted); }

  /* ---------- NAV ---------- */
  header{
    position:sticky; top:0; z-index:100;
    /* background:rgba(23,22,20,0.92); */
    background: radial-gradient(560px 420px at 78% 0%, rgba(218,147,22,0.16), transparent 65%), var(--ink);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--line-dark);
  }
  nav.wrap{
    display:flex; align-items:center; justify-content:space-between;
    height:76px;
  }
  .nav-links{ display:flex; align-items:center; gap:36px; }
  .nav-links a{
    font-size:14.5px; font-weight:600; color:var(--muted);
    transition:color .2s ease; position:relative; padding-bottom:4px;
  }
  .nav-links a::after{
    content:""; position:absolute; left:0; bottom:0; height:1.5px; width:100%;
    background:var(--gold); transform:scaleX(0); transform-origin:right;
    transition:transform .3s cubic-bezier(.2,.7,.3,1);
  }
  .nav-links a:hover{ color:var(--cream); }
  .nav-links a:hover::after{ transform:scaleX(1); transform-origin:left; }
  .nav-links a.active{ color:var(--gold); }
  .nav-links a.active::after{ transform:scaleX(1); transform-origin:left; }
  .nav-links a.nav-links-gold{ color:var(--gold-soft); }
  .nav-links a.nav-links-gold:hover{ color:var(--gold); }
  .nav-right{ display:flex; align-items:center; gap:22px; }
  .nav-cta{
    background:var(--gold); color:var(--ink); font-weight:700; font-size:14px;
    padding:11px 22px; border-radius:100px; transition:background .2s ease, transform .25s cubic-bezier(.2,.8,.3,1.3);
  }
  .nav-cta:hover{ background:var(--gold-soft); transform:translateY(-1px) scale(1.03); }

  /* ---------- HERO (banner — the only dark section) ---------- */
  .page-landing .hero {
    background:
      radial-gradient(560px 420px at 78% 0%, rgba(218,147,22,0.16), transparent 65%),
      var(--ink);
    color:var(--cream);
    padding:110px 0 0;
    overflow:hidden;
  }
  .page-landing .hero-rings {
    position:absolute; right:-140px; top:60px; width:520px; height:520px;
    pointer-events:none; opacity:.55;
    animation:spin-slow 100s linear infinite;
    transform-origin:50% 50%;
  }
  @keyframes spin-slow{ to{ transform:rotate(360deg); } }
  .page-landing .hero-rings circle:nth-child(4) { animation:pulse-ring 4.5s ease-in-out infinite; transform-origin:260px 260px; }
  @keyframes pulse-ring{ 0%,100%{ opacity:1; } 50%{ opacity:.35; } }
  .page-landing .hero-inner { position:relative; z-index:2; max-width:760px; }
  .page-landing .hero h1 {
    font-size:clamp(38px, 5.2vw, 62px);
    margin-bottom:26px;
    opacity:0; transform:translateY(16px);
    animation:hero-in .8s cubic-bezier(.2,.7,.3,1) .1s forwards;
  }
  .page-landing .hero .lede {
    font-size:18px; color:var(--muted); max-width:600px; margin-bottom:38px;
    opacity:0; transform:translateY(16px);
    animation:hero-in .8s cubic-bezier(.2,.7,.3,1) .25s forwards;
  }
  .page-landing .hero-actions {
    display:flex; gap:16px; flex-wrap:wrap; margin-bottom:70px;
    opacity:0; transform:translateY(16px);
    animation:hero-in .8s cubic-bezier(.2,.7,.3,1) .4s forwards;
  }
  @keyframes hero-in{ to{ opacity:1; transform:translateY(0); } }

  /* ---------- HERO BODY (its own standalone section, split from the dark hero) ---------- */
  .page-landing .hero-body-section {
    position:relative;
    overflow:hidden;
    background:
      radial-gradient(600px 320px at 10% 0%, rgba(218,147,22,0.12), transparent 60%),
      var(--tan-soft);
    border-top:1px solid rgba(218,147,22,0.28);
    border-bottom:1px solid var(--line-light);
    padding:64px 0 72px;
  }
  .page-landing .hero-body {
    position:relative; z-index:2;
    display:flex; flex-direction:column; gap:48px;
  }
  .page-landing .hero-body > div:first-child {
    max-width:720px; margin:0 auto; text-align:center;
  }
  .page-landing .hero-body > div:first-child p { color:var(--grey); font-size:14px; margin-bottom:16px; }
  .page-landing .hero-callout {
    background:linear-gradient(120deg, var(--gold) 0%, var(--gold-soft) 100%);
    border-radius:26px;
    padding:56px 64px;
    text-align:center;
    box-shadow:0 30px 60px -24px rgba(218,147,22,0.45);
  }
  .page-landing .hero-callout .tag {
    font-weight:800; font-size:clamp(22px, 2.6vw, 30px); color:var(--ink); margin-bottom:16px; display:block;
  }
  .page-landing .hero-callout p {
    color:rgba(28,27,25,0.72); font-size:17px; margin:0 auto; max-width:640px;
  }

  /* ---------- QUOTE / TESTIMONIAL ---------- */
  .quote-section{
    background:var(--tan);
    padding:90px 0;
    text-align:center;
  }
  .quote-mark{
    font-family:Georgia, serif; font-size:60px; color:var(--rust); line-height:1;
    margin-bottom:6px;
  }
  .quote-section blockquote{
    font-size:clamp(22px,3vw,32px); font-weight:700; letter-spacing:-0.01em;
    max-width:780px; margin:0 auto 30px; line-height:1.35; color:var(--ink);
  }
  .quote-divider{
    width:52px; height:3px; background:var(--gold); margin:0 auto 30px; border-radius:3px;
    transform:scaleX(0); transition:transform .6s cubic-bezier(.2,.7,.3,1) .2s;
  }
  .quote-divider.in-view{ transform:scaleX(1); }
  .quote-section .sub{
    max-width:640px; margin:0 auto 16px; color:var(--grey); font-size:16px;
  }
  .quote-section .sub strong{ color:var(--ink); }

  /* ---------- STATS (light) ---------- */
  .stats-section{
    background:var(--cream);
    padding:96px 0;
  }
  .stats-grid{
    display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; text-align:left;
  }
  .stat-card{
    background:var(--white);
    border:1px solid var(--line-light);
    border-radius:18px; padding:32px 28px;
    transition:border-color .25s ease, transform .3s cubic-bezier(.2,.8,.3,1.2), box-shadow .3s ease;
  }
  .stat-card:hover{ border-color:rgba(218,147,22,0.4); transform:translateY(-6px); box-shadow:0 20px 36px -22px rgba(28,27,25,0.25); }
  .stat-num{
    font-size:42px; font-weight:900; color:var(--gold); letter-spacing:-0.02em; margin-bottom:10px;
    font-variant-numeric:tabular-nums;
  }
  .stat-card:nth-child(2) .stat-num{ color:var(--rust); }
  .stat-card:nth-child(3) .stat-num{ color:var(--olive); }
  .stat-label{ font-weight:700; font-size:13.5px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:14px; color:var(--ink); }
  .stat-card p{ color:var(--grey); font-size:14.5px; margin-bottom:16px; }
  .stat-source{
    font-size:12px; color:var(--grey-soft); border-top:1px solid var(--line-light); padding-top:14px;
  }

  /* ---------- DIMENSIONS (light) ---------- */
  .dims-section{
    background:var(--white);
    padding:100px 0;
  }
  .dims-grid{
    margin-top:60px;
    display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
  }
  .dim-card{
    background:var(--tan-soft);
    border:1px solid var(--line-light);
    border-radius:18px; padding:34px 30px;
    transition:transform .3s cubic-bezier(.2,.8,.3,1.2), border-color .25s ease, box-shadow .3s ease;
  }
  .dim-card:hover{ transform:translateY(-6px); border-color:rgba(218,147,22,0.4); box-shadow:0 20px 36px -22px rgba(28,27,25,0.2); }
  .dim-icon{
    width:46px; height:46px; border-radius:12px;
    background:rgba(218,147,22,0.14); color:var(--gold);
    display:flex; align-items:center; justify-content:center; margin-bottom:22px;
    transition:transform .3s ease;
  }
  .dim-card:hover .dim-icon{ transform:scale(1.08) rotate(-4deg); }
  .dim-card h3{ font-size:19px; color:var(--ink); margin-bottom:12px; font-weight:700; }
  .dim-card > p{ color:var(--grey); font-size:14.5px; margin-bottom:20px; }
  .pill-list{ display:flex; flex-wrap:wrap; gap:8px; }
  .pill{
    display:inline-flex; align-items:center; gap:6px;
    font-size:13px; font-weight:600; color:var(--ink);
    background:var(--white); border:1px solid var(--line-light);
    padding:7px 12px; border-radius:100px;
    transition:border-color .2s ease, background .2s ease;
  }
  .pill:hover{ border-color:var(--gold); background:rgba(218,147,22,0.06); }
  .pill::before{
    content:""; width:6px; height:6px; border-radius:50%; border:1.4px solid var(--gold); flex:none;
  }

  /* ---------- PRIVATE BETA (light) ---------- */
  .beta-section{
    background:var(--tan-soft);
    padding:100px 0;
    text-align:center;
  }
  .beta-lock{
    width:56px; height:56px; border-radius:16px;
    background:rgba(218,147,22,0.14); color:var(--gold);
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 24px;
  }
  .beta-grid{
    display:grid; grid-template-columns:repeat(2,1fr); gap:20px; max-width:820px; margin:0 auto;
    text-align:left;
  }
  .beta-card{
    background:var(--white); border:1px solid var(--line-light);
    border-radius:16px; padding:26px 28px;
    transition:transform .3s cubic-bezier(.2,.8,.3,1.2), border-color .25s ease;
  }
  .beta-card:hover{ transform:translateY(-4px); border-color:rgba(218,147,22,0.4); }
  .beta-card h4{ font-size:16px; color:var(--rust); margin-bottom:10px; font-weight:700; }
  .beta-card p{ color:var(--grey); font-size:14.5px; margin:0; }

  /* ---------- MEMBERSHIP STEPS (light) ---------- */
  .steps-section{ background:var(--cream); padding:100px 0; }
  .steps-grid{
    display:grid; grid-template-columns:repeat(4,1fr); gap:22px;
    counter-reset:step;
  }
  .step-card{
    background:var(--white); border:1px solid var(--line-light); border-radius:18px; padding:30px 26px;
    position:relative; transition:transform .3s cubic-bezier(.2,.8,.3,1.2), box-shadow .3s ease;
  }
  .step-card:hover{ transform:translateY(-6px); box-shadow:0 20px 36px -22px rgba(28,27,25,0.22); }
  .step-num{
    width:42px; height:42px; border-radius:50%;
    border:1.5px solid var(--gold); color:var(--gold);
    display:flex; align-items:center; justify-content:center;
    font-weight:800; font-size:15px; margin-bottom:22px;
    transition:background .25s ease, color .25s ease;
  }
  .step-card:hover .step-num{ background:var(--gold); color:var(--white); }
  .step-card h3{ font-size:17px; margin-bottom:10px; font-weight:700; }
  .step-card p{ font-size:14.5px; color:var(--grey); margin:0; }

  /* ---------- FAQ (light, custom animated accordion) ---------- */
  .faq-section{ background:var(--tan); padding:100px 0; }
  .faq-list{ max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
  .faq-item{
    background:var(--white); border:1px solid var(--line-light); border-radius:14px;
    overflow:hidden; transition:border-color .25s ease, box-shadow .25s ease;
  }
  .faq-item.open{ border-color:var(--gold); box-shadow:0 12px 28px -18px rgba(28,27,25,0.3); }
  .faq-q{
    all:unset; box-sizing:border-box;
    display:flex; align-items:center; justify-content:space-between; gap:20px;
    width:100%; cursor:pointer;
    padding:20px 26px; font-weight:700; font-size:16px; color:var(--ink);
  }
  .faq-plus{
    flex:none; width:26px; height:26px; border-radius:50%;
    border:1.5px solid var(--grey-soft); position:relative;
    transition:transform .3s cubic-bezier(.2,.7,.3,1), border-color .25s ease, background .25s ease;
  }
  .faq-plus::before, .faq-plus::after{
    content:""; position:absolute; background:var(--ink); top:50%; left:50%;
    transform:translate(-50%,-50%);
  }
  .faq-plus::before{ width:10px; height:1.6px; }
  .faq-plus::after{ width:1.6px; height:10px; transition:opacity .2s ease; }
  .faq-item.open .faq-plus{ transform:rotate(135deg); background:var(--gold); border-color:var(--gold); }
  .faq-item.open .faq-plus::before, .faq-item.open .faq-plus::after{ background:var(--ink); }
  .faq-a-wrap{
    max-height:0; overflow:hidden;
    transition:max-height .4s cubic-bezier(.2,.7,.3,1);
  }
  .faq-a{ color:var(--grey); font-size:15px; padding:0 26px 22px; max-width:640px; }

  /* ---------- FOOTER (bookend dark) ---------- */
  .page-landing footer{ border-top:1px solid var(--line-dark); }

  /* ---------- LOGIN MODAL ---------- */
  .modal-overlay{
    position:fixed; inset:0; z-index:1000;
    background:rgba(20,19,17,0.6);
    backdrop-filter:blur(6px);
    display:flex; align-items:center; justify-content:center;
    padding:24px;
    opacity:0; pointer-events:none;
    transition:opacity .3s ease;
  }
  .modal-overlay.open{ opacity:1; pointer-events:auto; }
  .modal-card{
    background:var(--white); border-radius:22px;
    width:100%; max-width:420px;
    padding:40px 36px 36px;
    position:relative;
    box-shadow:0 30px 70px -20px rgba(20,19,17,0.45);
    transform:translateY(18px) scale(0.97); opacity:0;
    transition:transform .35s cubic-bezier(.2,.8,.3,1.2), opacity .3s ease;
  }
  .modal-overlay.open .modal-card{ transform:translateY(0) scale(1); opacity:1; }
  .modal-close{
    position:absolute; top:20px; right:20px;
    width:34px; height:34px; border-radius:50%; border:1px solid var(--line-light);
    background:var(--cream); color:var(--grey);
    display:flex; align-items:center; justify-content:center; cursor:pointer;
    transition:background .2s ease, transform .2s ease;
  }
  .modal-close:hover{ background:var(--tan-soft); transform:rotate(90deg); }
  .modal-ring{
    width:46px; height:46px; border-radius:14px;
    background:rgba(218,147,22,0.14); color:var(--gold);
    display:flex; align-items:center; justify-content:center; margin-bottom:22px;
  }
  .modal-card h3{ font-size:22px; margin-bottom:8px; }
  .modal-card .modal-sub{ color:var(--grey); font-size:14.5px; margin-bottom:28px; line-height:1.6; }
  .modal-card .modal-sub strong{ color:var(--ink); }
  .modal-field{ margin-bottom:20px; }
  .modal-field label{ display:block; font-size:13px; font-weight:700; color:var(--ink); margin-bottom:8px; }
  .modal-field input[type="email"]{
    width:100%; padding:13px 16px; border-radius:12px; border:1.5px solid var(--line-light);
    font-family:inherit; font-size:15px; color:var(--ink); background:var(--cream);
    transition:border-color .2s ease, background .2s ease;
  }
  .modal-field input[type="email"]:focus{ outline:none; border-color:var(--gold); background:var(--white); }
  .modal-submit{ width:100%; justify-content:center; }
  .modal-note{ font-size:12.5px; color:var(--grey-soft); margin-top:16px; text-align:center; }

  .otp-row{ display:flex; gap:10px; margin-bottom:22px; }
  .otp-row input{
    width:100%; aspect-ratio:1; text-align:center; font-size:20px; font-weight:700;
    border-radius:12px; border:1.5px solid var(--line-light); background:var(--cream); color:var(--ink);
    transition:border-color .2s ease, background .2s ease;
  }
  .otp-row input:focus{ outline:none; border-color:var(--gold); background:var(--white); }
  .modal-resend{ font-size:13.5px; color:var(--grey); text-align:center; margin-top:2px; }
  .modal-resend button{
    all:unset; color:var(--gold); font-weight:700; cursor:pointer; border-bottom:1px solid transparent;
  }
  .modal-resend button:hover{ border-bottom-color:var(--gold); }
  .modal-back{
    all:unset; cursor:pointer; display:inline-flex; align-items:center; gap:6px;
    font-size:13px; font-weight:600; color:var(--grey-soft); margin-bottom:18px;
    transition:color .2s ease;
  }
  .modal-back:hover{ color:var(--ink); }

  .modal-step{ display:none; }
  .modal-step.active{ display:block; }

  .modal-success{ text-align:center; }
  .modal-success .success-icon{
    width:60px; height:60px; border-radius:50%; margin:0 auto 22px;
    background:rgba(218,147,22,0.14); color:var(--gold);
    display:flex; align-items:center; justify-content:center;
    animation:pop-in .4s cubic-bezier(.2,.8,.3,1.3);
  }
  @keyframes pop-in{ 0%{ transform:scale(0.6); opacity:0; } 100%{ transform:scale(1); opacity:1; } }
  .modal-success h3{ margin-bottom:10px; }
  .modal-success p{ color:var(--grey); font-size:14.5px; margin-bottom:26px; }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 980px){
    .steps-grid{ grid-template-columns:1fr 1fr; }
    .beta-grid{ grid-template-columns:1fr; }
    .nav-links{ display:none; }
  }
  @media (max-width: 860px){
    .stats-grid{ grid-template-columns:1fr; }
    .dims-grid{ grid-template-columns:1fr; }
  }
  @media (max-width: 620px){
    .wrap{ padding:0 20px; }
    .steps-grid{ grid-template-columns:1fr; }
    .page-landing .hero { padding-top:90px; }
    .page-landing .hero-actions { margin-bottom:50px; }
    .quote-section, .stats-section, .dims-section, .beta-section, .steps-section, .faq-section, .page-landing .hero-body-section{ padding:64px 0; }
    .page-landing .hero-callout{ padding:36px 28px; }
    footer .wrap{ flex-direction:column; align-items:flex-start; text-align:left; }
    footer .f-right{ text-align:left; }
    .nav-cta{ padding:9px 16px; font-size:13px; }
    .page-landing .hero-rings { width:380px; height:380px; right:-160px; }
  }

/* ======================================================================
   REGISTRATION PAGE ONLY  (active when <body class="page-registration">)
   ====================================================================== */
body.page-registration::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(218,147,22,.10), transparent 35%), radial-gradient(circle at bottom right, rgba(182,106,46,.07), transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* ---------- SITE HEADER (matches ManVerse nav) ---------- */
.site-header{
    position:sticky; top:0; z-index:200;
    background:rgba(23,22,20,0.94);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--line-dark);
}
.header-inner{
    max-width:1400px; margin:0 auto; padding:0 40px;
    height:72px; display:flex; align-items:center; justify-content:space-between;
}
.header-tag{
    font-size:13px; font-weight:600; color:var(--muted);
    padding:8px 16px; border:1px solid var(--line-dark); border-radius:999px;
}

.container {
    max-width: 1400px;
    margin: auto;
    padding: 40px;
}
/* HERO */

.page-registration .hero {
    background: linear-gradient(135deg, var(--ink), #33291f);
    border-radius: 28px;
    padding: 80px;
    color: var(--cream);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.page-registration .hero::before {
    content:"";
    position:absolute; inset:0;
    background: radial-gradient(480px 360px at 82% 0%, rgba(218,147,22,.18), transparent 65%);
    pointer-events:none;
}
.page-registration .hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 1px solid rgba(218,147,22,.18);
    background: transparent;
}
.page-registration .hero-rings {
    position:absolute; right:-60px; bottom:-140px; width:420px; height:420px;
    pointer-events:none; opacity:.5;
    animation: spin-slow 110s linear infinite;
}
@keyframes spin-slow{ to{ transform:rotate(360deg); } }
.page-registration .hero-eyebrow {
    position:relative; z-index:2;
    display:inline-flex; align-items:center; gap:9px;
    font-size:12.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
    color:var(--gold-soft); margin-bottom:18px;
}
.page-registration .hero-eyebrow::before {
    content:""; width:6px; height:6px; border-radius:50%;
    background:var(--gold); box-shadow:0 0 0 3px rgba(218,147,22,.28); flex:none;
}
.page-registration .hero h1 {
    position:relative; z-index:2;
    font-size: 58px;
    font-weight: 800;
    letter-spacing:-0.02em;
    margin-bottom: 16px;
}
.page-registration .hero p {
    position:relative; z-index:2;
    font-size: 18px;
    max-width: 800px;
    color: var(--muted);
}
/* STEPPER */
.stepper-wrap{
    margin-bottom:30px;
}
.step-label{
    display:flex; align-items:center; justify-content:space-between;
    margin-bottom:12px;
    font-size:13px; font-weight:700; color:var(--grey-soft); letter-spacing:.02em;
}
.step-label span{ color:var(--gold); }
/* PROGRESS */

.progress-bar {
    height: 8px;
    background: var(--tan);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 30px;
}
.progress-fill {
    width: 16.6%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-soft));
    transition: width .4s cubic-bezier(.2,.7,.3,1);
    border-radius:999px;
}
/* TABS */

.tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 6px;
    background: var(--tan-soft);
    border-radius: 999px;
    margin-bottom: 0;
}
.tabs::-webkit-scrollbar {
height:0;
}
.tab-btn {
    border: none;
    padding: 14px 24px;
    background: transparent;
    color: var(--grey);
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    border-radius: 999px;
    transition: .25s;
    white-space: nowrap;
    font-family: inherit;
}
.tab-btn:hover {
    color: var(--ink);
    background: rgba(255,255,255,.5);
}
.tab-btn.active {
    background: var(--ink);
    color: var(--cream);
    box-shadow: 0 10px 22px -10px rgba(28,27,25,.35);
    position: relative;
    top: 0;
}
/* CARD */

.form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid var(--line-light);
    box-shadow: var(--shadow);
    margin-top:22px;
    position:relative;
    overflow:hidden;
}
.form-wrapper::before{
    content:"";
    position:absolute; top:0; left:0; right:0; height:4px;
    background: linear-gradient(90deg, var(--gold), var(--rust), var(--olive));
}
.tab-content {
    display: none;
    animation: fade .4s cubic-bezier(.2,.7,.3,1);
}
.tab-content.active {
    display: block;
}
@keyframes fade {
from {
opacity:0;
transform:translateY(14px);
}
to {
opacity:1;
transform:translateY(0);
}
}
.section-title {
    font-size: 34px;
    font-weight: 800;
    letter-spacing:-0.02em;
    margin-bottom: 8px;
    color: var(--ink);
    position:relative;
    padding-top:18px;
}
.section-title::before{
    content:"";
    position:absolute; top:0; left:0;
    width:44px; height:3px; border-radius:3px;
    background: var(--gold);
}
.section-subtitle {
    color: var(--text-light);
    margin-bottom: 35px;
}
/* GRID */

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.form-group {
    margin-bottom: 26px;
}
label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--ink);
}
label small{
    font-weight:500; color:var(--grey-soft);
}
input, select, textarea {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid var(--line-light);
    background: var(--cream);
    font-size: 15px;
    font-family: inherit;
    color: var(--ink);
    transition: .25s;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 5px rgba(218,147,22,.12);
}
textarea {
    resize: vertical;
    min-height: 120px;
}
/* OPTION PILLS */

.option-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.option-pill {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: var(--cream);
    border: 1px solid var(--line-light);
    border-radius: 999px;
    cursor: pointer;
    transition: .25s;
}
.option-pill:hover {
    background: var(--white);
    border-color: rgba(218,147,22,.35);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -14px rgba(28,27,25,.18);
}
.option-pill:has(input:checked){
    border-color: var(--gold);
    background: rgba(218,147,22,.08);
}
.option-pill input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--gold);
}
.option-pill span {
    line-height: 1.5;
    color: var(--ink);
}
/* BUTTONS */

.actions {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.btn-secondary {
    background: var(--tan-soft);
    color: var(--ink);
}
.btn-secondary:hover{ background:var(--tan); }
.btn-primary {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 14px 30px -12px rgba(218,147,22,.55);
}
.btn-primary:hover{ background: var(--gold-soft); }

/* RESPONSIVE */

@media(max-width:768px) {
.header-inner{ padding:0 20px; }
.container {
    padding: 20px;
}
.page-registration .hero {
    padding: 40px 28px;
}
.page-registration .hero h1 {
    font-size: 38px;
}
.form-wrapper {
    padding: 25px;
}
.actions{ flex-direction:column-reverse; gap:14px; }
.actions .btn{ width:100%; }
}
.placeholder-dropdown {
    height: 56px;
    background: var(--cream);
    color: var(--grey-soft);
    font-style: italic;
}
.required::after {
    content: " *";
    color: var(--rust);
    font-size: 14px;
    vertical-align: top;
}
.expert-section {
    margin-bottom: 40px;
}
.expert-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
}
.expert-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 2fr 2fr 60px;
    gap: 12px;
    margin-bottom: 12px;
    align-items: center;
    background: var(--cream);
    border: 1px solid var(--line-light);
    border-radius: 16px;
    padding: 10px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.expert-row:hover{
    border-color: rgba(218,147,22,.35);
    box-shadow: 0 12px 24px -18px rgba(28,27,25,.25);
}
.expert-row input{
    background: var(--white);
}
.add-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 12px;
    background: var(--ink);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s ease, transform .2s ease;
}
.add-btn:hover {
    background: var(--gold);
    color: var(--ink);
}
.remove-btn{
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 12px;
    background: var(--tan-soft);
    color: var(--ink);
    font-size: 22px;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s ease, color .2s ease;
}
.remove-btn:hover{
    background: var(--rust);
    color: var(--white);
}
.category-box {
    background: var(--tan-soft);
    border: 1px solid var(--line-light);
    border-left: 3px solid var(--gold);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 24px;
    transition: transform .25s cubic-bezier(.2,.8,.3,1.2), box-shadow .25s ease;
}
.category-box:hover{
    transform: translateY(-3px);
    box-shadow: 0 16px 30px -20px rgba(28,27,25,.25);
}
.category-box h4 {
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 18px;
    font-weight: 700;
}
.section-note {
    color: var(--grey-soft);
    margin-bottom: 30px;
    font-size: 14px;
}

/* ---------- SITE FOOTER (matches ManVerse footer) ---------- */
.site-footer{
    background: var(--ink); color: var(--muted);
    padding: 44px 0; margin-top:40px;
}
.footer-inner{
    max-width:1400px; margin:0 auto; padding:0 40px;
    display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:18px;
}
@media (max-width:620px){
  .footer-inner{ flex-direction:column; align-items:flex-start; text-align:left; }
  .footer-inner .f-right{ text-align:left; }
}