/* ── Nakshatra Calculator Pro — Frontend Styles ─────────────────────── */
:root {
  --ncp-navy:        #1F4E79;
  --ncp-navy-dark:   #0B1F3A;
  --ncp-blue:        #2E75B6;
  --ncp-blue-light:  #D6E4F0;
  --ncp-orange:      #C55A11;
  --ncp-orange-light:#FCE4D6;
  --ncp-gold:        #FCD34D;
  --ncp-green:       #375623;
  --ncp-green-light: #E2EFDA;
  --ncp-purple:      #4B3080;
  --ncp-red:         #C00000;
  --ncp-gray-50:     #F9FAFB;
  --ncp-gray-100:    #F3F4F6;
  --ncp-gray-200:    #E5E7EB;
  --ncp-gray-500:    #6B7280;
  --ncp-gray-700:    #374151;
  --ncp-gray-800:    #1F2937;
  --ncp-radius:      16px;
  --ncp-shadow:      0 4px 20px rgba(0,0,0,0.08);
  --ncp-shadow-lg:   0 8px 40px rgba(0,0,0,0.14);
}

/* ── Wrapper ─────────────────────────────────────────────────────────── */
.ncp-wrap { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--ncp-gray-800); max-width: 640px; margin: 0 auto; }
.ncp-wrap * { box-sizing: border-box; }

/* ── Hero Header ─────────────────────────────────────────────────────── */
.ncp-hero {
  background: linear-gradient(160deg, var(--ncp-navy-dark) 0%, var(--ncp-navy) 60%, #163456 100%);
  border-radius: var(--ncp-radius);
  padding: 36px 28px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.ncp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='400' height='200' viewBox='0 0 400 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='30' r='1' fill='white' opacity='0.4'/%3E%3Ccircle cx='120' cy='80' r='0.5' fill='white' opacity='0.3'/%3E%3Ccircle cx='200' cy='20' r='1.5' fill='white' opacity='0.2'/%3E%3Ccircle cx='320' cy='60' r='1' fill='white' opacity='0.35'/%3E%3Ccircle cx='380' cy='100' r='0.5' fill='white' opacity='0.25'/%3E%3Ccircle cx='80' cy='150' r='1' fill='white' opacity='0.3'/%3E%3Ccircle cx='260' cy='140' r='1.5' fill='white' opacity='0.2'/%3E%3Ccircle cx='160' cy='170' r='0.5' fill='white' opacity='0.4'/%3E%3Ccircle cx='350' cy='180' r='1' fill='white' opacity='0.25'/%3E%3C/svg%3E") center/cover;
  pointer-events: none;
}
.ncp-hero-icon { font-size: 48px; margin-bottom: 12px; display: block; }
.ncp-hero-title { font-size: 24px; font-weight: 700; color: #fff; margin: 0 0 6px; font-family: Georgia, serif; }
.ncp-hero-sub { font-size: 13px; color: #93C5FD; margin: 0; }

/* ── Form Card ───────────────────────────────────────────────────────── */
.ncp-card {
  background: #fff;
  border-radius: var(--ncp-radius);
  box-shadow: var(--ncp-shadow);
  overflow: hidden;
  margin-bottom: 16px;
}
.ncp-card-body { padding: 20px 22px; }

/* ── Form Fields ─────────────────────────────────────────────────────── */
.ncp-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ncp-gray-500);
  margin-bottom: 6px;
}
.ncp-label .ncp-optional { font-weight: 400; color: var(--ncp-blue); text-transform: none; margin-left: 4px; }
.ncp-input, .ncp-select {
  width: 100%;
  border: 1.5px solid var(--ncp-gray-200);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--ncp-gray-800);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  font-family: inherit;
}
.ncp-input:focus, .ncp-select:focus {
  border-color: var(--ncp-blue);
  box-shadow: 0 0 0 3px rgba(46,117,182,0.12);
}
.ncp-input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ncp-field { margin-bottom: 16px; }
.ncp-input-icon { position: relative; }
.ncp-input-icon .ncp-input { padding-left: 38px; }
.ncp-input-icon .ncp-icon-prefix { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); font-size: 15px; }

/* ── Time Unknown ────────────────────────────────────────────────────── */
.ncp-time-unknown { display: flex; align-items: center; gap: 8px; margin-top: 6px; cursor: pointer; }
.ncp-time-unknown input[type="checkbox"] { width: 14px; height: 14px; accent-color: var(--ncp-blue); }
.ncp-time-unknown span { font-size: 12px; color: var(--ncp-gray-500); }
.ncp-noon-notice {
  background: #FFFBEB; border: 1px solid #FDE68A; border-radius: 10px;
  padding: 10px 14px; margin-top: 8px; display: flex; gap: 8px; align-items: flex-start;
}
.ncp-noon-notice p { font-size: 12px; color: #92400E; margin: 0; line-height: 1.5; }

/* ── Gender buttons ──────────────────────────────────────────────────── */
.ncp-gender-row { display: flex; gap: 8px; }
.ncp-gender-btn {
  flex: 1; padding: 10px; border-radius: 12px; border: 1.5px solid var(--ncp-gray-200);
  background: var(--ncp-gray-50); color: var(--ncp-gray-500); font-size: 13px;
  font-weight: 600; cursor: pointer; transition: all 0.15s; font-family: inherit;
}
.ncp-gender-btn.active { background: var(--ncp-blue-light); border-color: var(--ncp-blue); color: var(--ncp-navy); }

/* ── CTA Button ──────────────────────────────────────────────────────── */
.ncp-btn-primary {
  width: 100%; padding: 16px; border-radius: 14px; border: none;
  background: linear-gradient(135deg, var(--ncp-navy), var(--ncp-blue));
  color: #fff; font-size: 16px; font-weight: 700; cursor: pointer;
  box-shadow: 0 4px 20px rgba(31,78,121,0.35);
  transition: transform 0.12s, box-shadow 0.12s;
  font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.ncp-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(31,78,121,0.45); }
.ncp-btn-primary:active { transform: translateY(0); }
.ncp-btn-primary.loading { opacity: 0.7; pointer-events: none; }
.ncp-btn-primary .ncp-spin { animation: ncp-spin 1s linear infinite; }
@keyframes ncp-spin { to { transform: rotate(360deg); } }

/* ── Tool pills ──────────────────────────────────────────────────────── */
.ncp-tool-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 20px; }
.ncp-tool-pill {
  padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--ncp-gray-200);
  background: var(--ncp-gray-50); cursor: pointer; transition: all 0.15s;
}
.ncp-tool-pill:hover { border-color: var(--ncp-blue); background: var(--ncp-blue-light); }
.ncp-tool-pill strong { display: block; font-size: 12px; color: var(--ncp-gray-700); }
.ncp-tool-pill span { font-size: 11px; color: var(--ncp-gray-500); }

/* ── Results Sections ────────────────────────────────────────────────── */
.ncp-result-header {
  background: linear-gradient(135deg, var(--ncp-navy-dark), var(--ncp-navy));
  border-radius: var(--ncp-radius);
  padding: 20px 22px;
  margin-bottom: 12px;
}
.ncp-result-header .ncp-back { color: #93C5FD; font-size: 12px; cursor: pointer; margin-bottom: 12px; display: block; text-decoration: none; }
.ncp-user-row { display: flex; align-items: center; gap: 12px; }
.ncp-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.ncp-user-name { font-size: 16px; font-weight: 700; color: #fff; }
.ncp-user-sub { font-size: 11px; color: #93C5FD; }

/* ── Nakshatra Reveal ────────────────────────────────────────────────── */
.ncp-reveal-card {
  background: #fff; border-radius: var(--ncp-radius);
  box-shadow: var(--ncp-shadow); padding: 20px 22px; margin-bottom: 12px;
}
.ncp-reveal-main { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.ncp-nak-name { font-size: 30px; font-weight: 700; color: var(--ncp-navy); font-family: Georgia,serif; }
.ncp-nak-sub { font-size: 13px; color: var(--ncp-gray-500); margin-top: 2px; }
.ncp-nak-symbol { width: 60px; height: 60px; border-radius: 16px; background: var(--ncp-blue-light); display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.ncp-traits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ncp-trait-cell { background: #EFF6FF; border-radius: 10px; padding: 8px; text-align: center; }
.ncp-trait-cell .ncp-ti { font-size: 13px; }
.ncp-trait-cell .ncp-tl { font-size: 9px; color: var(--ncp-gray-500); margin: 2px 0; text-transform: uppercase; letter-spacing: 0.05em; }
.ncp-trait-cell .ncp-tv { font-size: 11px; font-weight: 700; color: var(--ncp-gray-700); }

/* ── Stats Hook ──────────────────────────────────────────────────────── */
.ncp-stats-card {
  background: linear-gradient(135deg, var(--ncp-navy), var(--ncp-blue));
  border-radius: var(--ncp-radius); padding: 20px 22px; margin-bottom: 12px;
}
.ncp-stats-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: #93C5FD; font-weight: 700; margin-bottom: 6px; }
.ncp-stats-lord { font-size: 12px; color: #BFDBFE; margin-bottom: 14px; }
.ncp-stat-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.ncp-stat-pct {
  flex-shrink: 0; min-width: 38px; height: 24px; border-radius: 99px;
  background: rgba(255,255,255,0.18); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.ncp-stat-text { font-size: 12px; color: #DBEAFE; line-height: 1.5; }
.ncp-stats-cta { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.2); }
.ncp-stats-q { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ncp-btn-unlock-white {
  width: 100%; padding: 11px; border-radius: 12px; border: none;
  background: rgba(255,255,255,0.95); color: var(--ncp-navy); font-weight: 700;
  font-size: 13px; cursor: pointer; font-family: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2); transition: transform 0.1s;
}
.ncp-btn-unlock-white:hover { transform: translateY(-1px); }

/* ── Score Bars ──────────────────────────────────────────────────────── */
.ncp-score-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--ncp-gray-100);
}
.ncp-score-row:last-child { border-bottom: none; }
.ncp-score-icon { font-size: 16px; width: 22px; flex-shrink: 0; }
.ncp-score-label { font-size: 12px; font-weight: 600; color: var(--ncp-gray-700); flex: 1; }
.ncp-score-bar-wrap { width: 80px; height: 6px; background: var(--ncp-gray-100); border-radius: 99px; overflow: hidden; }
.ncp-score-bar { height: 100%; border-radius: 99px; background: linear-gradient(90deg,var(--ncp-navy),var(--ncp-blue)); }
.ncp-score-num { font-size: 12px; font-weight: 700; color: var(--ncp-navy); width: 42px; text-align: right; }
.ncp-score-lock { font-size: 11px; color: var(--ncp-orange); font-weight: 600; border: 1px solid; border-radius: 99px; padding: 2px 8px; cursor: pointer; white-space: nowrap; }

/* ── Blur Teaser ─────────────────────────────────────────────────────── */
.ncp-teaser-wrap { position: relative; }
.ncp-teaser-content { filter: blur(3.5px); user-select: none; pointer-events: none; max-height: 70px; overflow: hidden; }
.ncp-teaser-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, white 65%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding-bottom: 12px;
}
.ncp-teaser-box {
  background: #fff; border-radius: 12px; padding: 10px 14px; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1); border: 1.5px solid var(--ncp-orange); max-width: 280px;
}
.ncp-teaser-box .ncp-lock-icon { font-size: 16px; }
.ncp-teaser-box .ncp-teaser-label { font-size: 11px; font-weight: 600; color: var(--ncp-gray-700); margin: 4px 0; }
.ncp-btn-teaser {
  display: inline-block; margin-top: 4px; padding: 6px 14px; border-radius: 8px;
  background: var(--ncp-orange); color: #fff; font-size: 11px; font-weight: 700;
  border: none; cursor: pointer; font-family: inherit;
}

/* ── Lucky Grid ──────────────────────────────────────────────────────── */
.ncp-lucky-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.ncp-lucky-cell { border-radius: 12px; padding: 10px 6px; text-align: center; }
.ncp-lucky-cell.free { background: #EFF6FF; border: 1px solid #BFDBFE; }
.ncp-lucky-cell.locked { background: var(--ncp-gray-100); border: 1px solid var(--ncp-gray-200); }
.ncp-lucky-cell .li { font-size: 18px; }
.ncp-lucky-cell .ll { font-size: 9px; color: var(--ncp-gray-500); margin: 2px 0; }
.ncp-lucky-cell .lv { font-size: 11px; font-weight: 700; color: var(--ncp-navy); }
.ncp-lucky-cell .lck { font-size: 10px; color: var(--ncp-orange); font-weight: 700; cursor: pointer; }

/* ── Dasha ───────────────────────────────────────────────────────────── */
.ncp-dasha-alert { background: #FFF7ED; border: 1px solid #FED7AA; border-radius: 12px; padding: 14px; margin-bottom: 14px; }
.ncp-dasha-alert .dal { font-size: 11px; color: #92400E; font-weight: 700; }
.ncp-dasha-alert .dam { font-size: 16px; font-weight: 800; color: #7C2D12; margin: 4px 0; }
.ncp-dasha-alert .das { font-size: 12px; color: #C05621; }
.ncp-dasha-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--ncp-gray-100); }
.ncp-dasha-row:last-child { border-bottom: none; }
.ncp-dasha-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ncp-dasha-dot.current { background: var(--ncp-orange); }
.ncp-dasha-dot.locked { background: var(--ncp-gray-200); }
.ncp-dasha-dot.past { background: var(--ncp-blue); }
.ncp-dasha-info { flex: 1; }
.ncp-dasha-planet { font-size: 13px; font-weight: 700; color: var(--ncp-gray-700); }
.ncp-dasha-planet.current { color: var(--ncp-orange); }
.ncp-dasha-period { font-size: 11px; color: var(--ncp-gray-500); }
.ncp-dasha-badge { background: #FEF3C7; color: #92400E; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 99px; margin-left: 6px; }
.ncp-dasha-lock-link { font-size: 11px; color: var(--ncp-orange); font-weight: 600; cursor: pointer; }

/* ── Price display ───────────────────────────────────────────────────── */
.ncp-price-wrap { display: inline-flex; align-items: center; gap: 6px; }
.ncp-price-regular { text-decoration: line-through; color: var(--ncp-gray-500); font-size: 13px; }
.ncp-price-offer { font-size: 16px; font-weight: 800; color: var(--ncp-orange); }

/* ── CTA Buttons ─────────────────────────────────────────────────────── */
.ncp-btn-cta {
  width: 100%; padding: 13px; border-radius: 12px; border: none;
  font-weight: 700; font-size: 13px; cursor: pointer; font-family: inherit;
  transition: transform 0.1s, box-shadow 0.1s; display: flex; align-items: center; justify-content: center; gap: 6px;
}
.ncp-btn-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,0.15); }
.ncp-btn-cta.orange { background: linear-gradient(135deg,#C55A11,#E07B39); color: #fff; }
.ncp-btn-cta.navy  { background: linear-gradient(135deg,var(--ncp-navy),var(--ncp-blue)); color: #fff; }
.ncp-btn-cta.purple{ background: linear-gradient(135deg,var(--ncp-purple),#7C3AED); color: #fff; }
.ncp-btn-cta.red   { background: linear-gradient(135deg,var(--ncp-red),#E53E3E); color: #fff; }
.ncp-btn-cta.gold  { background: linear-gradient(135deg,#FCD34D,#FBBF24); color: var(--ncp-navy); }
.ncp-btn-secondary {
  width: 100%; padding: 10px; border-radius: 12px; border: 1.5px solid var(--ncp-orange);
  background: #FFF7F0; color: var(--ncp-orange); font-weight: 700; font-size: 12px; cursor: pointer; font-family: inherit;
}

/* ── Blueprint CTA Strip ─────────────────────────────────────────────── */
.ncp-blueprint-strip {
  background: linear-gradient(135deg, var(--ncp-navy-dark), var(--ncp-navy));
  border-radius: var(--ncp-radius); padding: 22px; margin-bottom: 12px; text-align: center;
}
.ncp-bp-icon { font-size: 28px; margin-bottom: 10px; }
.ncp-bp-title { font-size: 18px; font-weight: 700; color: #fff; font-family: Georgia,serif; line-height: 1.3; margin-bottom: 8px; }
.ncp-bp-sub { font-size: 11px; color: #93C5FD; margin-bottom: 12px; }
.ncp-bp-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-bottom: 14px; }
.ncp-bp-tag { font-size: 10px; color: #BFDBFE; background: rgba(255,255,255,0.12); border-radius: 99px; padding: 3px 10px; }
.ncp-bp-note { font-size: 10px; color: #64748B; margin-top: 8px; font-style: italic; }

/* ── Compatibility ───────────────────────────────────────────────────── */
.ncp-compat-row { display: flex; gap: 8px; margin-bottom: 12px; }
.ncp-compat-chip { flex: 1; background: var(--ncp-green-light); border: 1px solid #B6E3A1; border-radius: 12px; padding: 10px 8px; text-align: center; }
.ncp-compat-chip .cc-n { font-size: 12px; font-weight: 700; color: var(--ncp-green); }
.ncp-compat-chip .cc-l { font-size: 10px; color: #4ADE80; }
.ncp-compat-alert { background: #FFF0F0; border: 1px solid #FCA5A5; border-radius: 12px; padding: 12px; margin-bottom: 12px; }
.ncp-compat-alert p { font-size: 12px; color: var(--ncp-red); margin: 0 0 4px; font-weight: 600; }
.ncp-compat-alert span { font-size: 11px; color: #DC2626; }

/* ── Gand Mool Alert ─────────────────────────────────────────────────── */
.ncp-gandmool-alert {
  background: #FFF8F0; border: 2px solid #FED7AA; border-radius: var(--ncp-radius);
  padding: 16px 18px; margin-bottom: 12px;
}
.ncp-gandmool-alert .gm-head { font-size: 14px; font-weight: 700; color: #92400E; margin-bottom: 8px; }
.ncp-gandmool-alert .gm-body { font-size: 12px; color: #78350F; line-height: 1.6; margin-bottom: 12px; }
.ncp-gandmool-alert .gm-famous { font-size: 11px; color: #92400E; background: rgba(254,215,170,0.5); border-radius: 8px; padding: 8px; margin-bottom: 12px; }

/* ── Sticky Footer ───────────────────────────────────────────────────── */
.ncp-sticky-footer {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 640px; background: #fff;
  border-top: 1px solid var(--ncp-gray-200); padding: 12px 16px;
  display: flex; align-items: center; gap: 12px; z-index: 100;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
}
.ncp-sticky-info { flex: 1; }
.ncp-sticky-info strong { display: block; font-size: 12px; color: var(--ncp-gray-700); }
.ncp-sticky-info span { font-size: 11px; color: var(--ncp-gray-500); }
.ncp-sticky-btn {
  flex-shrink: 0; padding: 10px 16px; border-radius: 12px; border: none;
  background: linear-gradient(135deg,var(--ncp-orange),#E07B39); color: #fff;
  font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit;
}

/* ── Popup ───────────────────────────────────────────────────────────── */
.ncp-popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  display: flex; align-items: flex-end; justify-content: center;
  z-index: 9999; backdrop-filter: blur(4px);
  animation: ncp-fade-in 0.2s ease;
}
@keyframes ncp-fade-in { from { opacity: 0; } to { opacity: 1; } }
.ncp-popup {
  width: 100%; max-width: 480px; margin: 0 12px 12px;
  background: #fff; border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: ncp-slide-up 0.3s cubic-bezier(0.34,1.56,0.64,1);
  max-height: 90vh; overflow-y: auto;
}
@keyframes ncp-slide-up { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.ncp-popup-header {
  background: linear-gradient(135deg, var(--ncp-navy-dark), var(--ncp-navy));
  padding: 22px 20px 18px; text-align: center; position: relative;
}
.ncp-popup-close {
  position: absolute; top: 12px; right: 12px; width: 28px; height: 28px;
  border-radius: 50%; background: rgba(255,255,255,0.15); border: none;
  color: #fff; font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.ncp-popup-moon { font-size: 32px; margin-bottom: 8px; }
.ncp-popup-headline { font-size: 17px; font-weight: 700; color: #fff; line-height: 1.3; font-family: Georgia,serif; }
.ncp-popup-body { padding: 18px 20px 20px; }
.ncp-popup-dasha { background: #FFF7ED; border: 1px solid #FED7AA; border-radius: 12px; padding: 12px; margin-bottom: 12px; }
.ncp-popup-dasha .pd-l { font-size: 11px; color: #92400E; font-weight: 700; }
.ncp-popup-dasha .pd-t { font-size: 13px; font-weight: 700; color: #7C2D12; margin: 4px 0; }
.ncp-popup-dasha .pd-s { font-size: 12px; color: #C05621; }
.ncp-popup-hook { background: #EFF6FF; border: 1px solid #BFDBFE; border-radius: 12px; padding: 12px; margin-bottom: 14px; }
.ncp-popup-hook .ph-l { font-size: 11px; color: var(--ncp-blue); font-weight: 700; }
.ncp-popup-hook .ph-t { font-size: 12px; color: var(--ncp-navy); font-style: italic; margin-top: 4px; }
.ncp-popup-summary { font-size: 12px; color: var(--ncp-gray-500); line-height: 1.6; margin-bottom: 14px; }
.ncp-popup-price-line { font-size: 12px; color: var(--ncp-gray-500); text-align: center; margin-bottom: 6px; }
.ncp-popup-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin: 10px 0; }
.ncp-popup-tag { font-size: 10px; color: var(--ncp-gray-400); background: var(--ncp-gray-100); border-radius: 99px; padding: 3px 10px; }
.ncp-popup-dismiss { display: block; text-align: center; font-size: 11px; color: var(--ncp-gray-400); margin-top: 10px; cursor: pointer; text-decoration: none; background: none; border: none; font-family: inherit; width: 100%; }
.ncp-popup-footer-note { font-size: 10px; color: var(--ncp-gray-300); text-align: center; margin-top: 8px; }

/* ── Checkout Modal ──────────────────────────────────────────────────── */
.ncp-checkout-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  display: flex; align-items: flex-end; justify-content: center;
  z-index: 9998; animation: ncp-fade-in 0.2s;
}
.ncp-checkout {
  width: 100%; max-width: 480px; background: #fff; border-radius: 24px 24px 0 0;
  padding: 0 0 20px; box-shadow: 0 -8px 40px rgba(0,0,0,0.2);
  animation: ncp-slide-up 0.25s ease; max-height: 85vh; overflow-y: auto;
}
.ncp-checkout-header { background: var(--ncp-navy); padding: 18px 20px; border-radius: 24px 24px 0 0; position: relative; }
.ncp-checkout-header h3 { color: #fff; font-size: 16px; font-weight: 700; margin: 0 30px 0 0; }
.ncp-checkout-header p { color: #93C5FD; font-size: 12px; margin: 4px 0 0; }
.ncp-checkout-close { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,0.15); border: none; color: #fff; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.ncp-checkout-body { padding: 18px 20px 0; }
.ncp-upi-price { text-align: center; margin-bottom: 18px; }
.ncp-upi-price .up-label { font-size: 12px; color: var(--ncp-gray-500); }
.ncp-upi-price .up-amount { font-size: 28px; font-weight: 800; color: var(--ncp-navy); }
.ncp-upi-price .up-strike { font-size: 14px; text-decoration: line-through; color: var(--ncp-gray-400); }
.ncp-upi-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.ncp-upi-option { border: 2px solid var(--ncp-gray-200); border-radius: 14px; padding: 14px; text-align: center; cursor: pointer; transition: all 0.15s; }
.ncp-upi-option:hover, .ncp-upi-option.active { border-color: var(--ncp-blue); background: var(--ncp-blue-light); }
.ncp-upi-option .uo-icon { font-size: 24px; margin-bottom: 6px; }
.ncp-upi-option .uo-label { font-size: 12px; font-weight: 700; color: var(--ncp-navy); }
.ncp-upi-option .uo-sub { font-size: 10px; color: var(--ncp-gray-500); }
.ncp-upi-id-box { background: #F0F9FF; border: 1.5px solid #BAE6FD; border-radius: 12px; padding: 14px; margin-bottom: 12px; }
.ncp-upi-id-box .uid-label { font-size: 11px; color: #0369A1; font-weight: 700; margin-bottom: 6px; }
.ncp-upi-id-box .uid-value { font-size: 18px; font-weight: 800; color: var(--ncp-navy); font-family: monospace; }
.ncp-upi-copy-btn { display: block; width: 100%; margin-top: 8px; padding: 8px; background: #0369A1; color: #fff; border: none; border-radius: 8px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: inherit; }
.ncp-upi-ref { margin-bottom: 12px; }
.ncp-upi-ref label { display: block; font-size: 11px; font-weight: 700; color: var(--ncp-gray-500); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.ncp-upi-ref input { width: 100%; border: 1.5px solid var(--ncp-gray-200); border-radius: 10px; padding: 10px 14px; font-size: 13px; font-family: inherit; outline: none; }
.ncp-upi-ref input:focus { border-color: var(--ncp-blue); box-shadow: 0 0 0 3px rgba(46,117,182,0.1); }
.ncp-upi-note { font-size: 11px; color: var(--ncp-gray-500); text-align: center; margin-bottom: 14px; line-height: 1.5; }

/* ── Section card header ─────────────────────────────────────────────── */
.ncp-section-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ncp-gray-500); font-weight: 700; margin-bottom: 4px; }
.ncp-section-title { font-size: 16px; font-weight: 700; color: var(--ncp-gray-700); margin-bottom: 16px; }
.ncp-section-badge { font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 99px; }

/* ── Gand Mool badge ─────────────────────────────────────────────────── */
.ncp-gm-badge { background: #FEF3C7; color: #92400E; }
.ncp-profile-badge { background: var(--ncp-purpleLight,#EAE3F5); color: var(--ncp-purple); }

/* ── Noon notice ─────────────────────────────────────────────────────── */
.ncp-noon-banner {
  background: #FFFBEB; border: 1px solid #FDE68A; border-radius: 10px;
  padding: 10px 14px; margin-bottom: 12px; display: flex; gap: 8px;
}
.ncp-noon-banner p { font-size: 12px; color: #92400E; margin: 0; line-height: 1.5; }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .ncp-traits-grid { grid-template-columns: repeat(3,1fr); }
  .ncp-lucky-grid  { grid-template-columns: repeat(4,1fr); }
  .ncp-input-row   { grid-template-columns: 1fr; }
}
