/* ============================================================
   SORA LIFE Creator Program — editorial-tech system
   ------------------------------------------------------------
   RESET of the previous direction, which leaned on the vocabulary that
   reads as machine-generated: 18–26px card radii, 999px pills, a
   violet→cobalt gradient on every control, a glow under every module, an
   icon bubble in every metric, and one rounded card per number.

   This system is architectural instead:

     geometry   0–4px radii. No pills. Rules and grids do the work that
                border-plus-shadow used to.
     structure  data BANDS with internal dividers, not one card per figure
     colour     carried by thin rules, labels, figures and side accents.
                Exactly ONE gradient surface per page — the share band.
     type       Inter, tight tracking, a real editorial scale
     density    mobile is compact: rows and 2-up grids, never a 200px-tall
                panel wrapped around "₹0"

   Scoped to .crp / .crob throughout; the storefront is untouched.
   ============================================================ */

.crp, .crob {
  --c-paper:   #FFFFFF;
  --c-canvas:  #F7F7F5;
  --c-ink:     #111111;
  --c-ink-2:   #3D3D3D;
  --c-ink-3:   #6D6D6D;
  --c-rule:    #E2E2DE;
  --c-rule-2:  #CFCFC9;

  --c-violet:  #6437FF;
  --c-cobalt:  #1E5EFF;
  --c-emerald: #00A878;
  --c-amber:   #F28C28;
  --c-coral:   #E34B63;

  --r: 2px;   /* the only radius in the system */
}

/* ---- Typography ------------------------------------------------------
   The serif is retired inside the portal only. Scoped, so the storefront
   keeps its editorial identity. */
.crp, .crob {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--c-ink-2);
  -webkit-font-smoothing: antialiased;
}
.crp .serif, .crob .serif,
.crp h1, .crp h2, .crp h3, .crob h1, .crob h2, .crob h3 {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--c-ink); font-weight: 700; letter-spacing: -0.03em;
}
.crp .crp__h1, .crp h1, .crob h1 {
  font-size: clamp(28px, 4.4vw, 48px); line-height: 1.02; font-weight: 800;
  letter-spacing: -0.04em; margin: 0 0 8px;
}
.crp h2, .crob h2 { font-size: clamp(18px, 2.2vw, 22px); line-height: 1.15; }
.crp .crp__lede, .crp .crp__meta, .crp .crp__foot-note, .crp .muted, .crob .muted {
  color: var(--c-ink-3); font-size: 14px; line-height: 1.55;
}

/* One label style across every band, table head and field. */
.ck-metric__label, .ck-band__label, .ck-section__title,
.crp .crp__field > span, .crp .crp__panel table th {
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--c-ink-3);
}

/* ---- Canvas + shell --------------------------------------------------- */
.crp { background: var(--c-canvas); }
.crp .crp__top { background: var(--c-paper); border-bottom: 1px solid var(--c-rule); backdrop-filter: none; }
.crp .crp__brand-mark {
  border-radius: var(--r); background: var(--c-ink); color: #fff; box-shadow: none;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
.crp .crp__brand strong {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
.crp .crp__brand em { color: var(--c-violet); letter-spacing: .14em; }
.crp .crp__top-right .btn { min-height: 44px; }

/* ---- Navigation: rectangular, rail-marked active --------------------- */
.crp .crp__nav-wrap { min-width: 0; }
.crp .crp__nav { gap: 0; border-bottom: 1px solid var(--c-rule); }
.crp .crp__navitem {
  border: 0; border-radius: 0; background: transparent; color: var(--c-ink-3);
  flex: 0 0 auto;
  font-weight: 600; font-size: 13px; min-height: 44px; padding: 11px 14px;
  border-bottom: 2px solid transparent;
  transition: color .14s ease, border-color .14s ease, background .14s ease;
}
.crp .crp__navitem:hover { color: var(--c-ink); background: rgba(0,0,0,.03); transform: none; }
.crp .crp__navitem.active {
  color: var(--c-ink); background: transparent; box-shadow: none;
  border-bottom-color: var(--c-violet);
}
@media (max-width: 1019px) {
  .crp .crp__nav-wrap {
    display: grid; grid-template-columns: minmax(0, 1fr) 26px;
    border-bottom: 1px solid var(--c-rule);
  }
  .crp .crp__nav {
    min-width: 0; padding-inline-end: 26px; scroll-padding-inline-end: 26px;
    border-bottom: 0; overscroll-behavior-inline: contain;
  }
  .crp .crp__nav-cue {
    display: grid; place-items: center; min-height: 44px;
    border-left: 1px solid var(--c-rule-2);
    background: var(--c-canvas); color: var(--c-violet);
    font-size: 21px; font-weight: 700; line-height: 1;
    pointer-events: none;
  }
}
@media (min-width: 1020px) {
  .crp .crp__nav-cue { display: none; }
  /* Desktop becomes a true vertical rail. */
  .crp .crp__nav {
    flex-direction: column; align-items: stretch; gap: 0;
    border-bottom: 0; border-right: 1px solid var(--c-rule);
  }
  .crp .crp__navitem {
    justify-content: flex-start; border-bottom: 0;
    border-left: 2px solid transparent; padding: 11px 16px;
  }
  .crp .crp__navitem.active { border-left-color: var(--c-violet); background: rgba(100,55,255,.05); }
}

/* ---- Section heading -------------------------------------------------- */
.ck-section { margin-top: 34px; }
.ck-section__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding-bottom: 9px; margin-bottom: 0; border-bottom: 1px solid var(--c-ink); flex-wrap: wrap;
}
.ck-section__title { margin: 0; }
.ck-section__sub { margin: 7px 0 0; font-size: 13px; color: var(--c-ink-3); flex-basis: 100%; }
.ck-section__link {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-violet); white-space: nowrap; padding: 0; background: none; border-radius: 0;
  border-bottom: 1px solid transparent;
}
.ck-section__link:hover { border-bottom-color: var(--c-violet); background: none; }

/* ---- DATA BAND -------------------------------------------------------
   The replacement for card soup: one rectangular panel, internal 1px
   dividers, figures on a shared baseline. Four numbers occupy one band
   instead of four 180px boxes. */
.ck-band {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--c-paper); border: 1px solid var(--c-rule); border-radius: var(--r);
}
.ck-band__cell {
  position: relative; min-width: 0; padding: 16px 16px 15px;
  border-right: 1px solid var(--c-rule); border-bottom: 1px solid var(--c-rule);
}
.ck-band__cell:nth-child(2n) { border-right: 0; }
.ck-band__cell:nth-last-child(-n+2) { border-bottom: 0; }
.ck-band__label { display: block; margin-bottom: 7px; }
.ck-band__fig {
  font-weight: 800; letter-spacing: -.035em; font-variant-numeric: tabular-nums;
  font-size: clamp(24px, 4vw, 32px); line-height: 1.02; color: var(--c-ink);
  overflow-wrap: anywhere;
}
.ck-band__hint { margin: 6px 0 0; font-size: 12px; line-height: 1.45; color: var(--c-ink-3); }
/* A 26px top rule is the only decoration a cell gets. */
.ck-band__cell[data-tone]::before { content: ''; position: absolute; inset: 0 auto auto 0; width: 26px; height: 2px; }
.ck-band__cell[data-tone="info"]::before  { background: var(--c-cobalt); }
.ck-band__cell[data-tone="brand"]::before { background: var(--c-violet); }
.ck-band__cell[data-tone="hold"]::before  { background: var(--c-amber); }
.ck-band__cell[data-tone="ok"]::before    { background: var(--c-emerald); }
.ck-band__cell[data-tone="bad"]::before   { background: var(--c-coral); }
.ck-band__cell[data-tone] { padding-top: 22px; }

@media (min-width: 720px) {
  .ck-band { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .ck-band--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ck-band__cell { border-bottom: 0; padding: 20px 20px 19px; }
  .ck-band__cell[data-tone] { padding-top: 26px; }
  .ck-band__cell:nth-child(2n) { border-right: 1px solid var(--c-rule); }
  .ck-band__cell:last-child { border-right: 0; }
  .ck-band--3 .ck-band__cell:nth-child(3n) { border-right: 0; }
}

/* ---- BALANCE: one dominant figure, then a ruled row ------------------ */
.ck-balance {
  background: var(--c-paper); border: 1px solid var(--c-rule); border-radius: var(--r);
  border-top: 3px solid var(--c-emerald);
}
.ck-balance__main { padding: 22px 20px 20px; border-bottom: 1px solid var(--c-rule); }
.ck-balance__fig {
  font-weight: 800; letter-spacing: -.045em; font-variant-numeric: tabular-nums;
  font-size: clamp(38px, 7vw, 58px); line-height: 1; color: var(--c-ink); margin-top: 8px;
}
.ck-balance__hint { margin: 10px 0 0; font-size: 13px; color: var(--c-ink-3); max-width: 52ch; }
.ck-balance__row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ck-balance__row .ck-band__cell { border-bottom: 0; padding: 14px 16px; }
.ck-balance__row .ck-band__cell:last-child { border-right: 0; }
.ck-balance__row .ck-band__fig { font-size: clamp(18px, 3vw, 24px); }

/* ---- SHARE BAND: the ONE gradient surface on the page ---------------- */
.ck-share {
  position: relative; overflow: hidden; border-radius: var(--r);
  padding: clamp(22px, 3.4vw, 34px); color: #fff;
  background: linear-gradient(101deg, #6437FF 0%, #4B2AE0 46%, #111111 100%);
  box-shadow: none;
}
.ck-share__eyebrow {
  display: block; margin-bottom: 14px; padding: 0; background: none; border-radius: 0;
  backdrop-filter: none;
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.ck-share__title {
  font-size: clamp(24px, 3.4vw, 36px); font-weight: 800; letter-spacing: -.04em;
  line-height: 1.04; margin: 0 0 10px; color: #fff;
}
.ck-share__sub { margin: 0 0 20px; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.82); max-width: 58ch; }
.ck-share__url {
  display: block; padding: 13px 14px; margin-bottom: 12px; border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.22); background: rgba(0,0,0,.22); backdrop-filter: none;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12.5px;
  color: #fff; overflow-wrap: anywhere;
}
.ck-share__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.ck-share__code {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 16px;
  padding: 0; background: none; border: 0; border-radius: 0; backdrop-filter: none;
  font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.ck-share__code code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 700;
  font-size: 13px; color: #fff; letter-spacing: .06em; text-transform: none;
}

/* ---- IDENTITY HEADER -------------------------------------------------- */
.ck-idbar { border-bottom: 1px solid var(--c-ink); padding-bottom: 16px; margin-bottom: 22px; }
.ck-idbar__eyebrow {
  display: block; margin-bottom: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--c-violet);
}
.ck-idbar__name {
  font-size: clamp(28px, 4.4vw, 46px); font-weight: 800; letter-spacing: -.04em;
  line-height: 1; margin: 0; color: var(--c-ink);
}
.ck-idbar__meta { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 15px; }
.ck-idbar__k { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--c-ink-3); }
.ck-idbar__v { display: block; margin-top: 3px; font-size: 14px; font-weight: 700; color: var(--c-ink); letter-spacing: -.01em; }
.ck-idbar__v code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .04em; }

/* ---- Status chips: rectangular, outlined ----------------------------- */
.crp .crp__pill, .ck-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 8px; border-radius: var(--r); border: 1px solid currentColor;
  background: transparent; box-shadow: none;
  font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap;
}
.crp .crp__pill.is-ok,   .ck-pill.ck-tone-ok    { color: #00795A; background: rgba(0,168,120,.07); }
.crp .crp__pill.is-warn, .ck-pill.ck-tone-hold  { color: #A8600F; background: rgba(242,140,40,.09); }
.crp .crp__pill.is-bad,  .ck-pill.ck-tone-bad   { color: #B22B42; background: rgba(227,75,99,.08); }
.ck-pill.ck-tone-brand   { color: #4A24CC; background: rgba(100,55,255,.07); }
.ck-pill.ck-tone-info    { color: #1345C4; background: rgba(30,94,255,.07); }
.ck-pill.ck-tone-neutral { color: var(--c-ink-2); background: rgba(0,0,0,.04); }
.ck-pill__dot { display: none; }

/* ---- Buttons: rectangular -------------------------------------------- */
.crp .btn, .crob .btn {
  border-radius: var(--r); font-weight: 700; min-height: 46px; font-size: 13px;
  box-shadow: none; transition: background .14s ease, color .14s ease, border-color .14s ease;
}
.crp .btn:not(.btn-light):not(.btn-outline) { background: var(--c-ink); color: #fff; border: 1px solid var(--c-ink); }
.crp .btn:not(.btn-light):not(.btn-outline):hover {
  background: var(--c-violet); border-color: var(--c-violet); transform: none; filter: none;
}
.crp .btn-light { background: transparent; color: var(--c-ink); border: 1px solid var(--c-rule-2); }
.crp .btn-light:hover { border-color: var(--c-ink); background: transparent; transform: none; }
.crp .btn:focus-visible, .crob .btn:focus-visible { outline: 2px solid var(--c-violet); outline-offset: 2px; }
.crp .btn-xs { min-height: 32px; padding: 0 10px; font-size: 11px; }
/* Inverted inside the share band. */
.crp .ck-share__actions .btn { background: #fff; color: var(--c-ink); border: 1px solid #fff; }
.crp .ck-share__actions .btn:hover { background: rgba(255,255,255,.86); border-color: rgba(255,255,255,.86); }
.crp .ck-share__actions .btn-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.crp .ck-share__actions .btn-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.crp .ck-share__code .btn-xs { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }

/* ---- CHECKLIST: numbered rows ---------------------------------------- */
.ck-steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--c-rule); }
.ck-step {
  position: relative; display: grid; grid-template-columns: 26px 1fr auto;
  gap: 14px; align-items: baseline; padding: 15px 2px;
  border: 0; border-bottom: 1px solid var(--c-rule); background: none; border-radius: 0;
  box-shadow: none; transition: none;
}
.ck-step:hover { transform: none; box-shadow: none; }
.ck-step__mark {
  width: auto; height: auto; border-radius: 0; background: none; box-shadow: none;
  font-size: 12px; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--c-ink-3);
}
.ck-step.is-done { background: none; }
.ck-step.is-done .ck-step__mark { color: var(--c-emerald); background: none; }
.ck-step__body h3 { margin: 0 0 3px; font-size: 14px; font-weight: 700; letter-spacing: -.015em; color: var(--c-ink); }
.ck-step__body p { margin: 0; font-size: 13px; line-height: 1.5; color: var(--c-ink-3); }
.ck-step__state {
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-ink-3); white-space: nowrap;
}
.ck-step.is-done .ck-step__state { color: var(--c-emerald); }
.ck-step.is-next .ck-step__state { color: var(--c-violet); }
.ck-step.is-next { box-shadow: inset 2px 0 0 var(--c-violet); padding-left: 12px; }

/* ---- Empty state: editorial panel ------------------------------------ */
.ck-empty {
  padding: 22px; text-align: left; border-radius: var(--r);
  background: #FBFBF8; border: 1px solid var(--c-rule);
  border-top: 2px solid var(--c-rule-2); box-shadow: none;
}
.ck-empty.ck-tone-brand { border-top-color: var(--c-violet); }
.ck-empty.ck-tone-info { border-top-color: var(--c-cobalt); }
.ck-empty.ck-tone-ok { border-top-color: var(--c-emerald); }
.ck-empty.ck-tone-hold { border-top-color: var(--c-amber); }
.ck-empty.ck-tone-bad { border-top-color: var(--c-coral); }
.ck-empty__ic { display: none; }
.ck-empty__eyebrow {
  display: block; margin: 0 0 9px; font-size: 10.5px; line-height: 1.25;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--c-ink-3);
}
.ck-empty__title { font-size: 18px; line-height: 1.2; font-weight: 700; letter-spacing: -.02em; margin: 0 0 9px; color: var(--c-ink); }
.ck-empty__body { margin: 0; max-width: 62ch; font-size: 13.5px; line-height: 1.6; color: var(--c-ink-3); }
.ck-empty__points { list-style: none; margin: 16px 0 0; padding: 0; display: block; max-width: none; text-align: left; }
.ck-empty__points li {
  display: grid; grid-template-columns: 16px 1fr; gap: 10px; align-items: baseline;
  padding: 9px 0; border-top: 1px solid var(--c-rule); border-radius: 0; background: none; border-left: 0;
  font-size: 13px; line-height: 1.5; color: var(--c-ink-2);
}
.ck-empty__points li::before { content: '—'; color: var(--c-violet); font-weight: 700; }
.ck-empty__points svg { display: none; }
.ck-empty__foot { margin-top: 18px; display: flex; gap: 8px; justify-content: flex-start; flex-wrap: wrap; }

/* ---- TIMELINE: How you earn ------------------------------------------ */
.crp-hiw { margin-top: 34px; padding: 0; border: 0; background: none; box-shadow: none; border-radius: 0; }
.crp-hiw__head { border-bottom: 1px solid var(--c-ink); padding-bottom: 11px; margin-bottom: 0; }
.crp .crp-hiw__title {
  /* `.crp h2` (0,1,1) outranked the bare class, capping this page title at
     22px. Scoped to match, so /creator/how-it-works gets a real title. */
  font-size: clamp(28px, 4.2vw, 44px); font-weight: 800;
  letter-spacing: -.04em; line-height: 1.03; margin: 0 0 8px; color: var(--c-ink);
}
.crp-hiw__lede { margin: 0; color: var(--c-ink-3); font-size: 13.5px; max-width: 62ch; }
.crp-hiw__steps { list-style: none; margin: 0; padding: 0; }
.crp-hiw__step {
  position: relative; display: grid; grid-template-columns: 46px 1fr; gap: 0 18px;
  align-items: start; padding: 20px 0; border: 0; border-bottom: 1px solid var(--c-rule);
  background: none; border-radius: 0; box-shadow: none; transition: none;
}
.crp-hiw__step:hover { transform: none; box-shadow: none; }
/* The connecting rule runs down the number column. */
.crp-hiw__step::after {
  content: ''; position: absolute; left: 15px; top: 44px; bottom: -1px;
  width: 1px; height: auto; background: var(--c-rule-2);
}
.crp-hiw__step:last-child { border-bottom: 0; }
.crp-hiw__step:last-child::after { display: none; }
.crp-hiw__num {
  position: relative; z-index: 1; display: block; width: auto; height: auto;
  border-radius: 0; background: var(--c-canvas); box-shadow: none; color: var(--c-ink);
  font-size: 15px; font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: -.02em;
  padding-bottom: 4px;
}
.crp-hiw__ic { display: none; }
.crp-hiw__body h3 {
  /* A step title is a title, not a label: 11px uppercase made all eight
     read as one undifferentiated run of micro-caps. */
  margin: 0 0 5px; font-size: 15.5px; font-weight: 700; letter-spacing: -.015em;
  text-transform: none; color: var(--c-ink);
}
.crp-hiw__step.is-brand .crp-hiw__body h3 { color: var(--c-violet); }
.crp-hiw__step.is-ok    .crp-hiw__body h3 { color: var(--c-emerald); }
.crp-hiw__step.is-warn  .crp-hiw__body h3 { color: var(--c-amber); }
.crp-hiw__body p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--c-ink-2); max-width: 68ch; }
.crp-hiw__foot {
  display: block; margin: 22px 0 0; padding: 14px 0 0; border-top: 1px solid var(--c-ink);
  border-radius: 0; background: none; color: var(--c-ink-3); font-size: 12.5px; line-height: 1.55;
}
.crp-hiw__foot svg { display: none; }

/* ---- Panels, tables, fields ------------------------------------------ */
.crp .crp__panel {
  background: var(--c-paper); border: 1px solid var(--c-rule);
  border-radius: var(--r); box-shadow: none; padding: 20px;
}
.crp .crp__panel-h {
  font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--c-ink-3); padding-bottom: 9px; border-bottom: 1px solid var(--c-rule); margin-bottom: 14px;
}
.crp .crp__notice {
  border-radius: var(--r); border: 0; border-left: 3px solid var(--c-amber);
  background: rgba(242,140,40,.06); color: #8A5209; padding: 12px 14px; font-size: 13px;
}
.crp .crp__empty {
  border-radius: var(--r); border: 1px solid var(--c-rule); border-left: 3px solid var(--c-violet);
  background: var(--c-paper); text-align: left; padding: 20px;
}
.crp .crp__panel table th { padding-bottom: 9px; border-bottom: 1px solid var(--c-ink); }
.crp .crp__panel table td { font-size: 13.5px; border-bottom: 1px solid var(--c-rule); }
.crp .crp__kv dt { font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--c-ink-3); }
.crp .crp__kv dd { font-size: 14px; font-weight: 600; color: var(--c-ink); }

/* ---- KYC: numbered sections ------------------------------------------ */
.crp .ck-fieldset {
  margin: 26px 0 0; padding: 0; border: 0; border-top: 1px solid var(--c-ink); border-radius: 0;
}
.crp .ck-fieldset__legend {
  display: block; padding: 14px 0 0; margin: 0;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--c-ink);
}
.crp .ck-fieldset__legend::before {
  content: attr(data-step) ' — '; color: var(--c-violet); font-variant-numeric: tabular-nums;
}
.crp .ck-fieldset__ic { display: none; }
.crp .ck-fieldset__hint { margin: 7px 0 16px; font-size: 12.5px; line-height: 1.5; color: var(--c-ink-3); }
.crp .crp__form-note {
  display: block; padding: 11px 0 11px 12px; border-radius: 0; border: 0;
  border-left: 2px solid var(--c-cobalt); background: none;
  color: var(--c-ink-3); font-size: 12.5px; line-height: 1.5;
}
.crp .crp__form-note svg { display: none; }
.crp .crp__form-note code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: rgba(30,94,255,.07); padding: 1px 5px; border-radius: var(--r);
}
.crp .crp__kyc-msg {
  display: block; padding: 11px 0 11px 12px; border-radius: 0; border: 0;
  border-left: 2px solid var(--c-amber); background: none; color: #8A5209; font-size: 13px;
}
.crp .crp__kyc-msg svg { display: none; }
.crp .crp__kyc-msg.is-ok  { border-left-color: var(--c-emerald); color: #00795A; }
.crp .crp__kyc-msg.is-bad { border-left-color: var(--c-coral); color: #B22B42; }

.crp .crp__field > span { display: block; margin-bottom: 7px; }
.crp .crp__field input, .crp .crp__field select {
  min-height: 50px; border-radius: var(--r); border: 1px solid var(--c-rule-2);
  background: var(--c-paper); font-size: 14.5px;
  transition: border-color .14s ease, box-shadow .14s ease;
}
.crp .crp__field input:focus, .crp .crp__field select:focus {
  outline: none; border-color: var(--c-violet); box-shadow: inset 0 0 0 1px var(--c-violet);
}

/* Bank / UPI: rectangular tabs, not a pill switch. */
.crp .crp__seg {
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 0; padding: 0;
  border-radius: 0; background: none; border: 0; border-bottom: 1px solid var(--c-rule);
}
.crp .crp__seg button {
  min-height: 46px; padding: 0 4px; border: 0; border-radius: 0; background: none;
  color: var(--c-ink-3); font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; cursor: pointer; margin-bottom: -1px;
  border-bottom: 2px solid transparent;
  transition: color .14s ease, border-color .14s ease;
}
.crp .crp__seg button:hover:not(.active) { background: none; color: var(--c-ink); }
.crp .crp__seg button.active { background: none; color: var(--c-ink); border-bottom-color: var(--c-violet); box-shadow: none; }
.crp .crp__seg button:focus-visible { outline: 2px solid var(--c-violet); outline-offset: -2px; }

/* ---- List items: ruled rows ------------------------------------------ */
.crp .crp__list { border-top: 1px solid var(--c-rule); }
.crp .crp__item {
  border-radius: 0; background: none; border: 0; border-bottom: 1px solid var(--c-rule);
  box-shadow: none; padding: 16px 0; transition: background .14s ease;
}
.crp .crp__item::before { display: none; }
.crp .crp__item:hover { transform: none; box-shadow: none; background: rgba(0,0,0,.015); }
.crp .crp__item h3 { font-size: 14.5px; font-weight: 700; letter-spacing: -.015em; color: var(--c-ink); }
.crp .crp__item code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px;
  background: none; color: var(--c-violet); padding: 0; border-radius: 0; font-weight: 700;
}
.crp .crp__url {
  display: block; padding: 10px 12px; border: 1px solid var(--c-rule); border-radius: var(--r);
  background: var(--c-canvas); color: var(--c-ink-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px;
  font-weight: 400; overflow-wrap: anywhere;
}

/* ---- Identity block (Profile) ---------------------------------------- */
.ck-idcard {
  display: block; padding: 0 0 18px; border: 0; border-bottom: 1px solid var(--c-ink);
  border-radius: 0; background: none; box-shadow: none; color: var(--c-ink);
}
.ck-idcard__avatar { display: none; }
.ck-idcard__name { font-size: clamp(28px, 4.4vw, 44px); font-weight: 800; letter-spacing: -.04em; margin: 0 0 6px; color: var(--c-ink); }
.ck-idcard__email { margin: 0; font-size: 13.5px; color: var(--c-ink-3); }
.ck-idcard__tags { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.ck-idcard__code { display: inline-flex; align-items: center; gap: 10px; padding: 0; background: none; border: 0; border-radius: 0; backdrop-filter: none; }
.ck-idcard__code code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 700; font-size: 14px;
  color: var(--c-ink); letter-spacing: .06em;
}

/* ---- Account -> Creator seam ----------------------------------------- */
.crob input.input, .crob select.select { border-radius: var(--r); }
.crob .crob__status.is-active {
  border-radius: var(--r); border: 1px solid var(--c-rule); border-left: 3px solid var(--c-emerald);
  background: var(--c-paper); padding: 15px 17px; box-shadow: none;
}
.crob .crob__status.is-active svg { color: var(--c-emerald); }
.crob .crob__status.is-active strong { color: var(--c-ink); font-weight: 700; letter-spacing: -.015em; }
.crob .crob__linkcard {
  border-radius: var(--r); border: 1px solid var(--c-rule); border-left: 3px solid var(--c-violet);
  background: var(--c-paper); box-shadow: none; padding: 17px;
}
.crob .crob__linklabel { font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--c-violet); }
.crob .crob__link {
  border-radius: var(--r); border: 1px solid var(--c-rule); background: var(--c-canvas);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12.5px;
  color: var(--c-ink-2); overflow-wrap: anywhere;
}
.crob a.btn[href="/creator"], .crob a.btn-block {
  background: var(--c-ink); border: 1px solid var(--c-ink); color: #fff;
  border-radius: var(--r); min-height: 48px; font-weight: 700; box-shadow: none;
}
.crob a.btn[href="/creator"]:hover, .crob a.btn-block:hover { background: var(--c-violet); border-color: var(--c-violet); filter: none; }
.crob .crob__next {
  border-radius: var(--r); border: 0; border-left: 3px solid var(--c-emerald);
  background: rgba(0,168,120,.05); padding: 13px 15px; font-size: 13px; color: var(--c-ink-2);
}
.crob .crob__next svg { display: none; }
.crob .crob__next strong { color: #00795A; }
.crob .crob__next a { font-weight: 700; color: #00795A; }

/* ---- Earnings: financial hierarchy without another card grid -------- */
.crp .crp__earn-grid {
  gap: 0; margin-top: 30px; border-top: 1px solid var(--c-ink);
}
.crp .crp__earn-grid > .crp__panel {
  padding: 19px 0 0; border: 0; border-radius: 0; background: transparent;
}
.crp .crp__earn-grid > .crp__panel + .crp__panel {
  margin-top: 24px; padding-top: 19px; border-top: 1px solid var(--c-rule-2);
}

@media (min-width: 720px) {
  .crp .crp__earn-grid > .crp__panel { padding: 20px 24px 0 0; }
  .crp .crp__earn-grid > .crp__panel + .crp__panel {
    margin-top: 0; padding: 20px 0 0 24px;
    border-top: 0; border-left: 1px solid var(--c-rule);
  }
}

/* ---- Mobile density ---------------------------------------------------
   The previous build turned 390px into a stream of tall panels. Rows and
   2-up grids instead; "₹0" never gets 200px of height. */
@media (max-width: 719px) {
  .crp .crp__top-in { flex-wrap: nowrap; gap: 8px; padding-block: 8px; }
  .crp .crp__brand { min-width: 0; gap: 8px; }
  .crp .crp__brand-mark { width: 32px; height: 32px; flex: 0 0 32px; }
  .crp .crp__brand strong { font-size: 13.5px; }
  .crp .crp__brand em { font-size: 9px; letter-spacing: .13em; }
  .crp .crp__top-right { flex: none; gap: 0; }
  .crp .crp__who { display: none; }
  .crp .crp__top-right .btn { padding-inline: 13px; }
  .ck-section { margin-top: 26px; }
  .ck-band__cell { padding: 13px 13px 12px; }
  .ck-band__cell[data-tone] { padding-top: 19px; }
  .ck-band--3 .ck-band__cell:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: 0;
  }
  .ck-band--3 .ck-band__cell:nth-last-child(2) { border-bottom: 1px solid var(--c-rule); }
  .ck-band__fig { font-size: 22px; }
  .ck-band__hint { display: none; }   /* the label already carries it */
  .ck-balance__main { padding: 18px 15px 16px; }
  .ck-balance__row .ck-band__cell { padding: 11px 10px; }
  .ck-balance__row .ck-band__fig { font-size: 15px; }
  .ck-balance__row .ck-band__label { font-size: 10px; line-height: 1.3; letter-spacing: .05em; }
  .ck-share { padding: 20px 16px; }
  .ck-share__actions .btn { flex: 1 1 auto; min-height: 44px; padding-inline: 10px; }
  .ck-empty { padding: 19px 17px; }
  .ck-idbar__meta { gap: 12px 18px; }
  .crp-hiw__step { grid-template-columns: 34px 1fr; padding: 16px 0; }
  .crp-hiw__step::after { left: 11px; top: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  .crp *, .crob * { transition: none !important; }
}

/* ---- Share-band button contrast -------------------------------------
   The generic rule is `.crp .btn:not(.btn-light):not(.btn-outline)`, and
   each :not() argument contributes its own specificity — 0,4,1 — which
   beat the share override at 0,3,0, so the primary CTA rendered black on
   the violet band. Matching the :not() chain restores white. */
.crp .ck-share .ck-share__actions .btn:not(.btn-light):not(.btn-outline) {
  background: #fff; color: var(--c-ink); border: 1px solid #fff;
}
.crp .ck-share .ck-share__actions .btn:not(.btn-light):not(.btn-outline):hover {
  background: rgba(255,255,255,.86); border-color: rgba(255,255,255,.86);
}
.crp .ck-share .ck-share__code .btn:not(.btn-light):not(.btn-outline) {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45);
}
.crp .ck-share .ck-share__code .btn:not(.btn-light):not(.btn-outline):hover {
  background: rgba(255,255,255,.12); border-color: #fff;
}

/* ---- Payouts: the last three rounded surfaces -----------------------
   creator.css still shipped this page's own vocabulary — a 16px green
   GRADIENT balance card, a 14px banner, and a 38px rounded icon bubble.
   Recomposed here to match the balance/step language used everywhere
   else: rules and side accents, no second gradient, no bubble. */
.crp .crp__payout-bal {
  background: var(--c-paper); color: var(--c-ink);
  border: 1px solid var(--c-rule); border-top: 3px solid var(--c-emerald);
  border-radius: var(--r); padding: 20px; margin-bottom: 0;
}
.crp .crp__payout-bal-l {
  font-size: 11px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--c-ink-3); opacity: 1;
}
.crp .crp__payout-bal-v {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(32px, 5vw, 44px); font-weight: 800; letter-spacing: -.045em;
  line-height: 1.02; font-variant-numeric: tabular-nums; color: var(--c-ink); margin-top: 4px;
}
.crp .crp__payout-bal-meta {
  margin-top: 12px; padding-top: 11px; border-top: 1px solid var(--c-rule);
  font-size: 12px; color: var(--c-ink-3); opacity: 1;
}

/* Banner: tone moves from a tinted rounded box to a 3px side rule. */
.crp .crp__banner {
  border-radius: var(--r); border: 1px solid var(--c-rule);
  border-left: 3px solid var(--c-rule-2); background: var(--c-paper);
  padding: 15px 16px; gap: 11px; align-items: flex-start; margin-top: -1px;
}
.crp .crp__banner.is-ok   { border-left-color: var(--c-emerald); }
.crp .crp__banner.is-warn { border-left-color: var(--c-amber); }
.crp .crp__banner.is-live { border-left-color: var(--c-violet); background: var(--c-paper); }
.crp .crp__banner.is-bad  { border-left-color: var(--c-coral); }
.crp .crp__banner-txt strong {
  font-size: 14px; font-weight: 700; color: var(--c-ink); letter-spacing: -.01em;
}
.crp .crp__banner-txt p { font-size: 13px; color: var(--c-ink-3); }

/* The icon bubble is removed outright — the glyph carries the tone. */
.crp .crp__banner-icon,
.crp .crp__banner.is-ok .crp__banner-icon,
.crp .crp__banner.is-warn .crp__banner-icon,
.crp .crp__banner.is-live .crp__banner-icon {
  width: auto; height: auto; border-radius: 0; background: none;
  padding: 1px 0 0; place-items: start;
}
.crp .crp__banner.is-ok   .crp__banner-icon { color: var(--c-emerald); }
.crp .crp__banner.is-warn .crp__banner-icon { color: var(--c-amber); }
.crp .crp__banner.is-live .crp__banner-icon { color: var(--c-violet); }
.crp .crp__banner.is-bad  .crp__banner-icon { color: var(--c-coral); }
.crp .crp__banner.is-muted .crp__banner-icon { color: var(--c-ink-3); }

/* ---- Tables ---------------------------------------------------------
   `.ta-r` zeroed padding-right on EVERY right-aligned cell, so a numeric
   column ran straight into the next one ("AMOUNTSTATUS" in the payout
   history head). Only the final column should sit flush. */
.crp .crp__table { font-size: 13px; }
.crp .crp__table th {
  padding-bottom: 9px; border-bottom: 1px solid var(--c-ink); color: var(--c-ink-3);
}
.crp .crp__table td { padding: 11px 14px 11px 0; border-bottom: 1px solid var(--c-rule); color: var(--c-ink-2); }
.crp .crp__table tr:last-child td { border-bottom: 0; }
.crp .crp__table .ta-r, .crp .crp__table th.ta-r {
  padding-right: 18px; font-variant-numeric: tabular-nums;
}
.crp .crp__table .ta-r:last-child, .crp .crp__table th.ta-r:last-child { padding-right: 0; }
.crp .crp__table td.is-ok { color: var(--c-emerald); font-weight: 700; }

/* ---- Last serif figures ---------------------------------------------
   creator.css still set `--font-display` (the storefront serif) on six
   value elements. Inside the portal every FIGURE is Inter with tabular
   numerals, so columns of money line up. Storefront is untouched. */
.crp .crp__hist-amt, .crp .crp__bucket-v, .crp .crp__stat-v,
.crp .crp__big, .crp .crp__lc-campaign, .crob .crp__stat-v {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-variant-numeric: tabular-nums; letter-spacing: -.02em; color: var(--c-ink);
}
.crp .crp__hist-amt { font-weight: 700; }
.crp .crp__hist-amt.is-bad { color: var(--c-coral); }
.crp .crp__big { font-weight: 800; letter-spacing: -.04em; }
.crp .crp__lc-campaign { font-weight: 700; letter-spacing: -.01em; }
