/* =========================================================
   ROYAL TOKENIZATION — page-specific styles (loaded after styles.css)
   ========================================================= */

/* ---------- Chairman quote ---------- */
.royal-quote-band{ background:var(--purple-950); padding:80px 0; text-align:center; }
.royal-quote-band .container{ max-width:820px; }
.royal-quote-band p{
  font-family:var(--font-display); font-style:italic; color:var(--gold-200);
  font-size:clamp(1.2rem,2.6vw,1.65rem); line-height:1.65; margin:0 0 16px;
}
.royal-quote-band span{
  display:block; color:#d9cdec; font-size:0.8rem; letter-spacing:0.12em;
  text-transform:uppercase; font-weight:600;
}

/* ---------- Intro ---------- */
.royal-intro{ background:var(--cream); }
.royal-intro .section-eyebrow{ color:var(--gold-700); }
.royal-intro p + p{ margin-top:16px; }

/* ---------- Vision band ---------- */
.royal-vision{ background:linear-gradient(135deg,var(--purple-800),var(--purple-950)); padding:80px 0; text-align:center; }
.royal-vision .container{ max-width:780px; }
.royal-vision .section-eyebrow{ color:var(--gold-400); }
.royal-vision p{
  color:#fff; font-family:var(--font-display); font-style:italic;
  font-size:clamp(1.2rem,2.6vw,1.6rem); line-height:1.6; margin-top:16px;
}

/* ---------- How It Works (steps) ---------- */
.royal-steps{ background:var(--cream); }
.royal-steps .section-eyebrow{ color:var(--gold-700); }
.steps-list{ counter-reset:royal-step; max-width:780px; margin:36px auto 0; }
.step-item{
  position:relative; display:flex; gap:20px; padding:22px 0;
  border-bottom:1px solid rgba(59,17,112,0.12);
}
.step-item:last-child{ border-bottom:none; }
.step-num{
  flex-shrink:0; width:44px; height:44px; border-radius:50%;
  background:var(--purple-950); color:var(--gold-400);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:1.05rem;
}
.step-item p{ margin:0; padding-top:8px; font-size:1rem; line-height:1.6; }

/* ---------- Strategic Benefits ---------- */
.royal-benefits{ background:var(--purple-950); }
.royal-benefits .section-eyebrow{ color:var(--gold-400); }
.royal-benefits h2{ color:#fff; }
.benefit-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:36px; }
.benefit-pill{
  background:rgba(255,255,255,0.04); border:1px solid rgba(234,200,115,0.2);
  border-radius:var(--radius); padding:22px 20px; text-align:center;
  color:#e3d9f5; font-size:0.92rem; line-height:1.5;
  transition:transform .3s ease, background .3s ease, border-color .3s ease;
}
.benefit-pill:hover{ transform:translateY(-6px); background:rgba(234,200,115,0.08); border-color:var(--gold-400); }

/* ---------- Platform Features ---------- */
.royal-features{ background:var(--cream); }
.royal-features .section-eyebrow{ color:var(--gold-700); }
.feature-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:36px; }
.feature-card{
  background:#fff; border-radius:var(--radius); padding:26px 24px;
  box-shadow:0 16px 34px -22px rgba(23,4,48,0.4); display:flex; align-items:center; gap:16px;
  transition:transform .35s ease, box-shadow .35s ease;
}
.feature-card:hover{ transform:translateY(-6px); box-shadow:0 22px 44px -20px rgba(23,4,48,0.5); }
.feature-icon{
  flex-shrink:0; width:42px; height:42px; border-radius:50%;
  background:linear-gradient(135deg,var(--gold-200),var(--gold-600));
  display:flex; align-items:center; justify-content:center; color:var(--purple-950);
}
.feature-icon svg{ width:20px; height:20px; }
.feature-card h4{ font-size:0.98rem; color:var(--purple-900); margin:0; line-height:1.4; }

/* ---------- Platform Integrates ---------- */
.royal-integrates{ background:var(--cream); padding-top:0; text-align:center; }
.royal-integrates .section-eyebrow{ color:var(--gold-700); }

/* ---------- Mission CTA ---------- */
.royal-mission{ background:var(--purple-950); padding:100px 0; text-align:center; }
.royal-mission .section-eyebrow{ color:var(--gold-400); }
.royal-mission h2{ color:#fff; margin:14px 0 20px; }
.royal-mission p{ color:#d9cdec; max-width:640px; margin:0 auto 34px; font-size:1.05rem; line-height:1.7; }

/* ---------- Responsive ---------- */
@media (max-width:960px){
  .benefit-grid{ grid-template-columns:repeat(2,1fr); }
  .feature-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  .royal-quote-band{ padding:60px 0; }
  .royal-vision{ padding:60px 0; }
  .benefit-grid{ grid-template-columns:1fr; }
  .feature-grid{ grid-template-columns:1fr; }
  .royal-mission{ padding:70px 0; }
  .step-item{ gap:14px; }
}
