/* ═══════════════════════════════════════════════════════
   XODE SHARED DESIGN TOKENS  —  matches the XODE editor
   ═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Cabinet+Grotesk:wght@700;800;900&family=Montserrat:ital,wght@0,400;0,600;0,700;1,700;1,800;1,900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg-0:  #0B0C0F;
  --bg-1:  #131419;
  --bg-2:  #1A1C22;
  --bg-3:  #22242C;
  --bg-4:  #2A2D36;
  --border-1: #2B2E37;
  --border-2: #383B46;
  --text-0: #F5F5F7;
  --text-1: #C7C9D1;
  --text-2: #8B8D98;
  --text-3: #5A5C66;
  --violet:      #7C5CFF;
  --violet-dim:  #5B42C9;
  --violet-glow: rgba(124,92,255,0.22);
  --amber:       #FFB454;
  --amber-glow:  rgba(255,180,84,0.18);
  --success: #4ADE80;
  --danger:  #FF6B6B;
  --font-display: 'Cabinet Grotesk', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-caption: 'Montserrat', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --grad: linear-gradient(90deg, #7C5CFF 0%, #FFB454 100%);
  --grad-diag: linear-gradient(135deg, #7C5CFF 0%, #FFB454 100%);
  --max-w: 1160px;
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-0);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a  { color: var(--violet); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── GRADIENT UTILITIES ── */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-border {
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.grad-border::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: var(--grad);
  z-index: -1;
}

/* ── GRADIENT GLOW DIVIDERS ── */
.grad-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--amber), transparent);
  border: none;
  opacity: 0.5;
}

/* ── CAPTION STYLE (Montserrat Bold Italic) ── */
.caption {
  font-family: var(--font-caption);
  font-style: italic;
  font-weight: 800;
  color: var(--text-2);
  font-size: 13px;
  letter-spacing: .02em;
  line-height: 1.8;
}

/* ── CONTAINER ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  background: var(--violet); border: none; border-radius: var(--r-md);
  color: #fff; font-family: var(--font-body);
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all .18s; text-decoration: none; white-space: nowrap;
  box-shadow: 0 0 0 0 var(--violet-glow);
}
.btn-primary:hover {
  background: #8C6FFF;
  box-shadow: 0 0 0 5px var(--violet-glow);
  text-decoration: none; transform: translateY(-1px);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: transparent; border: 1px solid var(--border-2);
  border-radius: var(--r-md); color: var(--text-1);
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .15s; text-decoration: none;
}
.btn-ghost:hover { background: var(--bg-3); color: var(--text-0); text-decoration: none; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-xl { padding: 15px 30px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; display: inline-flex; }
.btn-amber {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  background: var(--amber); border: none; border-radius: var(--r-md);
  color: #0B0C0F; font-family: var(--font-body);
  font-size: 14px; font-weight: 800; cursor: pointer;
  transition: all .15s; text-decoration: none;
}
.btn-amber:hover { background: #FFC073; text-decoration: none; transform: translateY(-1px); }

/* ── NAVIGATION (shared across all pages) ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(11,12,15,.88);
  border-bottom: 1px solid var(--border-1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  height: 68px; display: flex; align-items: center;
}
/* LOGO — bigger, no container box */
.nav-logo {
  display: flex; align-items: center; margin-right: auto;
  text-decoration: none; gap: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 900; font-size: 28px;
  line-height: .95;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.02em;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 15px; border-radius: var(--r-sm);
  color: var(--text-2); font-size: 14px; font-weight: 500;
  text-decoration: none; transition: all .13s;
}
.nav-link:hover { color: var(--text-0); background: var(--bg-3); text-decoration: none; }
.nav-link.active { color: var(--text-0); }
.nav-cta { margin-left: 16px; }

/* ── SHARED FOOTER ── */
footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border-1);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 900; font-size: 32px;
  line-height: .95;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px; display: block;
}
.footer-desc {
  font-size: 13.5px; color: var(--text-2);
  line-height: 1.7; max-width: 260px; margin-bottom: 22px;
}
.footer-caption {
  font-family: var(--font-caption);
  font-style: italic; font-weight: 700;
  font-size: 12px; color: var(--text-3);
  margin-bottom: 18px; letter-spacing: .04em;
}
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--bg-3); border: 1px solid var(--border-1);
  display: grid; place-items: center; color: var(--text-2);
  transition: all .15s; cursor: pointer;
}
.footer-social:hover { background: var(--bg-4); color: var(--text-0); border-color: var(--violet); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col-title {
  font-family: var(--font-caption); font-style: italic; font-weight: 800;
  font-size: 11px; color: var(--violet);
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13.5px; color: var(--text-2);
  text-decoration: none; transition: color .13s;
}
.footer-links a:hover { color: var(--text-0); }
.newsletter-desc {
  font-size: 13px; color: var(--text-2);
  line-height: 1.65; margin-bottom: 16px;
}
.newsletter-form { display: flex; gap: 8px; margin-bottom: 20px; }
.newsletter-input {
  flex: 1; background: var(--bg-4); border: 1px solid var(--border-2);
  border-radius: var(--r-md); color: var(--text-0);
  font-size: 13px; padding: 10px 13px; outline: none;
  font-family: var(--font-body); transition: border-color .15s;
}
.newsletter-input::placeholder { color: var(--text-3); }
.newsletter-input:focus { border-color: var(--violet); box-shadow: 0 0 0 3px var(--violet-glow); }
.newsletter-btn {
  padding: 10px 18px; background: var(--violet); border: none;
  border-radius: var(--r-md); color: #fff; font-size: 13px;
  font-weight: 700; cursor: pointer; transition: background .15s;
  font-family: var(--font-body); white-space: nowrap;
}
.newsletter-btn:hover { background: #8C6FFF; }
.contact-detail-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-2); margin-bottom: 8px;
}
.contact-detail-item svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--violet); }
.contact-detail-item a { color: var(--text-2); text-decoration: none; }
.contact-detail-item a:hover { color: var(--violet); }
.footer-bottom {
  border-top: 1px solid var(--border-1); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12.5px; color: var(--text-3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12.5px; color: var(--text-3); text-decoration: none; }
.footer-legal a:hover { color: var(--text-2); }

/* ── EYEBROW ── */
.eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 500; color: var(--violet);
  letter-spacing: .12em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content:''; display:block; width:20px; height:1px; background:var(--violet); }

/* ── RESPONSIVE ── */
@media (max-width:900px){
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width:600px){
  .container { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   HAMBURGER MENU
   ═══════════════════════════════════════════════════════ */
.hamburger-wrap {
  position: relative; margin-left: 10px;
}
.hamburger-btn {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--bg-3); border: 1px solid var(--border-2);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px; cursor: pointer;
  transition: all .15s; flex-shrink: 0;
}
.hamburger-btn:hover { background: var(--bg-4); border-color: var(--violet); }
.hamburger-btn.open { background: var(--violet-glow); border-color: rgba(124,92,255,.5); }
.hb-line {
  display: block; width: 17px; height: 1.8px;
  background: var(--text-1); border-radius: 2px;
  transition: all .22s ease;
  transform-origin: center;
}
.hamburger-btn.open .hb-line:nth-child(1) { transform: translateY(6.8px) rotate(45deg); background: var(--violet); }
.hamburger-btn.open .hb-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open .hb-line:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); background: var(--violet); }

/* Dropdown panel */
.hamburger-panel {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 240px;
  background: var(--bg-2); border: 1px solid var(--border-1);
  border-radius: var(--r-lg); padding: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,.55), 0 0 0 1px var(--border-1);
  display: none; z-index: 300;
  animation: panel-in .18s ease;
}
.hamburger-panel.open { display: block; }
@keyframes panel-in {
  from { opacity: 0; transform: translateY(-8px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Panel section header */
.hpanel-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  color: var(--text-3); letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 10px 4px;
}

/* Panel link */
.hpanel-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--r-md);
  color: var(--text-1); text-decoration: none;
  font-size: 13.5px; font-weight: 600; transition: all .12s;
}
.hpanel-link:hover { background: var(--bg-3); color: var(--text-0); text-decoration: none; }
.hpanel-link.active-link { color: var(--violet); }
.hpanel-link-icon {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--bg-4); border: 1px solid var(--border-1);
  transition: all .12s;
}
.hpanel-link:hover .hpanel-link-icon { background: var(--violet-glow); border-color: rgba(124,92,255,.4); }
.hpanel-link-icon svg { width: 14px; height: 14px; color: var(--text-2); }
.hpanel-link:hover .hpanel-link-icon svg { color: var(--violet); }
.hpanel-link-text {}
.hpanel-link-name { font-size: 13.5px; font-weight: 700; color: inherit; }
.hpanel-link-desc { font-family: var(--font-caption); font-style: italic; font-weight: 700; font-size: 10.5px; color: var(--text-3); margin-top: 1px; }
.hpanel-divider { height: 1px; background: var(--border-1); margin: 6px 0; }

/* Highlighted (About Us) entry */
.hpanel-link.featured { background: var(--violet-glow); border: 1px solid rgba(124,92,255,.3); margin: 4px 0; }
.hpanel-link.featured .hpanel-link-name { color: var(--violet); }
.hpanel-link.featured:hover { background: rgba(124,92,255,.28); }

/* Bottom card inside panel */
.hpanel-card {
  margin-top: 6px; padding: 12px; border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(124,92,255,.12), rgba(255,180,84,.06));
  border: 1px solid rgba(124,92,255,.2);
}
.hpanel-card-title {
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  color: var(--text-0); margin-bottom: 3px;
}
.hpanel-card-cap {
  font-family: var(--font-caption); font-style: italic; font-weight: 700;
  font-size: 10.5px; color: var(--text-3); margin-bottom: 10px; line-height: 1.7;
}
.hpanel-card-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; background: var(--violet); border: none;
  border-radius: var(--r-sm); color: #fff; font-size: 12px; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: background .13s;
}
.hpanel-card-btn:hover { background: #8C6FFF; text-decoration: none; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — mobile-first overhaul
   ═══════════════════════════════════════════════════════ */
/* Fluid type helpers */
html { font-size: 16px; }

/* Mobile: < 480px */
@media (max-width: 479px) {
  html { font-size: 14px; }
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; height: 58px; }
  .nav-links  { display: none; }
  .nav-cta    { padding: 8px 12px; font-size: 12px; }
  .nav-logo-text { font-size: 22px; }
  .hamburger-btn { width: 36px; height: 36px; }
  .hamburger-panel { min-width: 260px; right: -4px; }
  .btn-primary, .btn-ghost, .btn-amber { padding: 11px 18px; font-size: 13px; }
  section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo-text { font-size: 26px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-btn { width: 100%; justify-content: center; }
}

/* Mobile landscape: 480–767px */
@media (max-width: 767px) {
  .container { padding: 0 20px; }
  .nav-links  { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  section { padding: 64px 0; }
  /* Two-col grids → single col */
  .story-grid,
  .pitch-grid,
  .why-grid,
  .why-hire-grid,
  .team-grid,
  .contact-grid,
  .testi-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .prof-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .topic-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .counter-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .feat-inner { flex-wrap: wrap; }
  .feat-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid var(--border-1); }
  .feat-item:last-child, .feat-item:nth-last-child(-n+2):nth-child(odd) { border-bottom: none; }
  .about-hero-stats { flex-direction: column; }
  .about-stat { border-right: none; border-bottom: 1px solid var(--border-1); padding: 16px; }
  .about-stat:last-child { border-bottom: none; }
  .process-step { flex-wrap: wrap; gap: 12px; }
  .collab-logos { flex-wrap: wrap; }
  .collab-logo-item { border-right: none; flex: 1 1 45%; text-align: center; }
  .hero-inner { grid-template-columns: 1fr !important; gap: 40px; }
  .hero-visual { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .about-cta-caption { font-size: 13px; }
  .team-card-body { padding: 24px 18px; }
  .team-skills { gap: 5px; }
  .why-hire-grid { grid-template-columns: 1fr; }
  .name-row { grid-template-columns: 1fr; }
}

/* Tablet: 768–1023px */
@media (max-width: 1023px) {
  .nav-links { gap: 2px; }
  .nav-link  { padding: 6px 10px; font-size: 13px; }
  .container { padding: 0 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section { padding: 80px 0; }
  .prof-grid    { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .topic-grid   { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .why-hire-grid { grid-template-columns: repeat(2,1fr); }
  .feat-inner   { flex-wrap: wrap; }
  .feat-item    { flex: 1 1 45%; }
  .counter-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .story-visual { display: none; }
}

/* Large desktop: 1280px+ */
@media (min-width: 1280px) {
  :root { --max-w: 1240px; }
}

/* Ensure all images scale */
img, video, iframe { max-width: 100%; height: auto; }

/* Prevent horizontal overflow everywhere */
* { box-sizing: border-box; }
body { overflow-x: hidden; }

/* Fluid embedded elements */
.editor-frame, .mini-browser, .contact-form-card, .info-card,
.team-card, .why-card, .topic-card, .prof-card { max-width: 100%; }

/* ═══════════════════════════════════════════════════════
   AUTH / USER BADGE STYLES
   ═══════════════════════════════════════════════════════ */
#xode-user-badge { display: flex; align-items: center; }

.xode-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-2); border: 1px solid var(--border-1);
  border-radius: 100px; padding: 5px 14px 5px 5px;
  position: relative; cursor: default;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.xode-badge-av {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--violet); object-fit: cover;
}
.xode-badge-info { display: flex; flex-direction: column; gap: 3px; }
.xode-badge-name { font-size: 12px; font-weight: 700; color: var(--text-0); }
.xode-badge-count { display: flex; align-items: center; gap: 6px; font-size: 10px; color: var(--text-3); }
.xode-bar-track { width: 48px; height: 3px; background: var(--bg-4); border-radius: 100px; overflow: hidden; }
.xode-bar-fill  { height: 100%; border-radius: 100px; transition: width .4s ease; }
.xode-badge-menu-btn {
  background: none; border: none; cursor: pointer; color: var(--text-2);
  display: flex; align-items: center; padding: 2px; transition: color .12s;
}
.xode-badge-menu-btn:hover { color: var(--text-0); }

/* Dropdown */
.xode-badge-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 180px; background: var(--bg-2); border: 1px solid var(--border-1);
  border-radius: var(--r-md); padding: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5); z-index: 999;
  animation: xode-dd-in .15s ease;
}
.xode-badge-dropdown.open { display: block; }
@keyframes xode-dd-in { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }
.xode-dd-item {
  display: block; width: 100%; padding: 9px 12px; border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600; color: var(--text-1); text-decoration: none;
  background: none; border: none; cursor: pointer; text-align: left;
  transition: background .12s, color .12s;
}
.xode-dd-item:hover { background: var(--bg-3); color: var(--text-0); text-decoration: none; }
.xode-dd-item.upgrade { color: var(--violet); }
.xode-dd-item.upgrade:hover { background: var(--violet-glow); }
.xode-dd-item.signout:hover { color: var(--danger); }
.xode-dd-item.pro-label { color: var(--success); cursor: default; font-style: italic; }
.xode-dd-divider { height: 1px; background: var(--border-1); margin: 4px 0; }

/* ═══════════════════════════════════════════════════════
   PAYMENT MODAL
   ═══════════════════════════════════════════════════════ */
.xode-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.75); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 20px;
}
.xode-modal-overlay.open { display: flex; animation: modal-fade-in .2s ease; }
@keyframes modal-fade-in { from{opacity:0} to{opacity:1} }

.xode-modal-box {
  background: var(--bg-2); border: 1px solid var(--border-1);
  border-radius: var(--r-xl); padding: 40px; max-width: 460px; width: 100%;
  position: relative; box-shadow: 0 32px 80px rgba(0,0,0,.7);
  animation: modal-slide-in .22s ease;
}
@keyframes modal-slide-in { from{transform:translateY(20px);opacity:0} to{transform:translateY(0);opacity:1} }

.xode-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--bg-3); border: 1px solid var(--border-1);
  border-radius: 50%; width: 30px; height: 30px;
  color: var(--text-2); font-size: 13px; cursor: pointer;
  display: grid; place-items: center; transition: all .12s;
}
.xode-modal-close:hover { background: var(--bg-4); color: var(--text-0); }

/* Payment modal content */
.pm-header { text-align: center; margin-bottom: 28px; }
.pm-icon { font-size: 36px; margin-bottom: 12px; }
.pm-title { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--text-0); margin-bottom: 10px; }
.pm-sub  { font-size: 14px; color: var(--text-2); line-height: 1.7; }

.pm-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.pm-plan {
  border: 1.5px solid var(--border-2); border-radius: var(--r-lg); padding: 18px;
  cursor: pointer; position: relative; transition: all .15s; text-align: center;
}
.pm-plan:hover { border-color: var(--violet); }
.pm-plan.selected { border-color: var(--violet); background: var(--violet-glow); }
.pm-plan-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 9px; font-weight: 800;
  padding: 2px 8px; border-radius: 100px; letter-spacing: .06em; white-space: nowrap;
}
.pm-plan-label { font-size: 11px; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.pm-plan-price { font-family: var(--font-display); font-size: 30px; font-weight: 900; color: var(--text-0); line-height: 1; }
.pm-plan-price span { font-size: 16px; }
.pm-plan-per { font-size: 13px; font-weight: 400; color: var(--text-2); }
.pm-plan-cap { font-size: 11px; color: var(--text-3); margin-top: 4px; font-family: var(--font-caption); font-style: italic; font-weight: 700; }

.pm-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.pm-features li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-1); }
.pm-check { color: var(--success); font-weight: 800; flex-shrink: 0; }

.pm-pay-btn {
  width: 100%; padding: 14px; background: var(--violet); border: none;
  border-radius: var(--r-md); color: #fff; font-size: 15px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all .18s; box-shadow: 0 4px 20px rgba(124,92,255,.4);
  font-family: var(--font-body);
}
.pm-pay-btn:hover { background: #8C6FFF; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,92,255,.5); }
.pm-note { text-align: center; font-size: 11.5px; color: var(--text-3); margin-top: 12px; }

/* Success state */
.payment-success { text-align: center; }
.ps-icon  { font-size: 52px; margin-bottom: 16px; }
.ps-title { font-family: var(--font-display); font-size: 28px; font-weight: 900; color: var(--text-0); margin-bottom: 12px; }
.ps-sub   { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 28px; }

/* Toast reuse */
.xode-toast {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%);
  background: var(--bg-2); border: 1px solid var(--border-1);
  border-radius: 100px; padding: 10px 22px;
  font-size: 13px; font-weight: 600; color: var(--text-0);
  box-shadow: 0 4px 20px rgba(0,0,0,.4); z-index: 9999;
  white-space: nowrap; pointer-events: none;
}
.xode-toast-warn { border-color: var(--amber); color: var(--amber); }
