/* ============================================================
   NIKA BRAND SYSTEM — Azure + Cerise
   Built 2026-07-14. Replaces the indigo/lime (#6467F2/#E7FAB5)
   direction locked in NIKA_BRAND_STYLE_GUIDE_20260613.md.
   Palette verified against NIKA COLORS.png swatch + the Claude
   Design azure variant of Ask Nika App.dc.html.
   Structure (cards, pills, tables, badges) mirrors the existing
   accounts.css/admin.css DNA on purpose — so the live product
   surfaces can pick this up as a token swap later, not a rebuild.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400;1,6..72,500&family=Hanken+Grotesk:wght@400;500;600;700;800&display=swap');

:root {
  /* Primary — Azure */
  --azure:        #75a3bd;
  --azure-deep:   #1b4e75;
  --azure-tint:   #cddce4;
  --azure-soft:   #e9f1f5;   /* section washes, chip backgrounds */
  --azure-hover:  #5f8ba6;

  /* Secondary — Cerise (sparing: CTAs of consequence, "paid" boundary) */
  --cerise:       #c14c78;
  --cerise-deep:  #9c3860;
  --cerise-soft:  #f8e9ef;

  /* Tertiary — Gold (very sparing: premium/credit highlights) */
  --gold:         #f0c987;
  --gold-soft:    #fbf3e0;

  /* Neutrals — warm cream + ink, verified against NIKA COLORS.png */
  --ink:          #141413;
  --ink-soft:     #46423b;
  --muted:        #6b665e;
  --muted-soft:   #9c968c;
  --cream:        #faf9f5;
  --cream-2:      #f4f3ee;
  --white:        #ffffff;
  --border:       rgba(20,20,19,.10);
  --border-soft:  rgba(20,20,19,.07);

  --radius-lg:    22px;
  --radius:       16px;
  --radius-sm:    10px;
  --shadow:       0 24px 50px -30px rgba(20,20,19,.30);
  --shadow-sm:    0 1px 3px rgba(20,20,19,.07), 0 1px 2px rgba(20,20,19,.05);

  --serif: 'Newsreader', serif;
  --sans:  'Hanken Grotesk', -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--azure-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -.02em; margin: 0; color: var(--ink); }
p { margin: 0 0 .9em; color: var(--muted); }
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--azure-deep); margin: 0 0 14px; display: inline-block;
}
.container { max-width: 1120px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ---- Logo ---- */
.nika-logo { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--ink); }
.nika-logo:hover { text-decoration: none; }
.nika-logo img.logo-img { height: 30px; width: auto; display: block; mix-blend-mode: multiply; }
.nika-logo .tag {
  font-family: var(--sans); font-style: normal; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--azure);
  background: var(--azure-soft); padding: 3px 8px; border-radius: 999px; margin-left: 2px;
}

/* ---- Nav ---- */
.nk-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; border-bottom: 1px solid var(--border-soft);
}
.nk-nav-links { display: flex; align-items: center; gap: 30px; font-size: 15px; color: var(--ink-soft); }
.nk-nav-links a { color: var(--ink-soft); font-weight: 500; }
.nk-nav-links a:hover { color: var(--azure-deep); text-decoration: none; }
.nk-nav-right { display: flex; align-items: center; gap: 18px; }
.nk-nav-right .signin { color: var(--ink-soft); font-weight: 500; font-size: 15px; }
.nk-nav-right .signin:hover { color: var(--azure-deep); text-decoration: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 15px; cursor: pointer;
  padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; transition: transform .12s ease, filter .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; filter: brightness(.97); }
.btn:active { transform: translateY(1px); }
.btn-azure { background: var(--azure-deep); color: #fff; }
.btn-azure:hover { background: #163f5f; }
.btn-cerise { background: var(--cerise); color: #fff; }
.btn-cerise:hover { background: var(--cerise-deep); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { background: var(--cream-2); }
.btn-white { background: #fff; color: var(--ink); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---- Chips / badges ---- */
.chip {
  display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600;
  padding: 6px 13px; border-radius: 999px; background: var(--azure-soft); color: var(--azure-deep);
}
.chip-cerise { background: var(--cerise-soft); color: var(--cerise-deep); }
.chip-gold { background: var(--gold-soft); color: #8a6a1f; }
.chip-outline { background: transparent; border: 1px solid var(--border); color: var(--ink-soft); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--azure); flex: none; }

/* ---- Cards ---- */
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.card-lg { padding: 34px; border-radius: var(--radius-lg); }
.card-flat { border-radius: var(--radius); border: 1px solid var(--border); padding: 24px; background: var(--white); }

/* ---- Sections ---- */
section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-wash { background: var(--azure-soft); }
.section-ink { background: var(--ink); color: var(--cream); }
.section-ink h2, .section-ink h1 { color: var(--cream); }
.section-ink p { color: rgba(250,249,245,.72); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-head h2 { font-size: 40px; line-height: 1.1; }
.section-head p { font-size: 18px; margin-top: 14px; }

/* ---- Feature / stat grids ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
@media (max-width: 860px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.icon-tile {
  width: 42px; height: 42px; border-radius: 12px; background: var(--azure-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.icon-tile .dot-lg { width: 15px; height: 15px; border-radius: 50%; background: var(--azure); }
.icon-tile.cerise { background: var(--cerise-soft); }
.icon-tile.cerise .dot-lg { background: var(--cerise); }
.icon-tile.gold { background: var(--gold-soft); }
.icon-tile.gold .dot-lg { background: #c99a3a; }

/* ---- Trust strip ---- */
.trust-strip {
  background: var(--azure-soft); border-radius: var(--radius-lg); padding: 30px 38px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.trust-item { display: flex; gap: 12px; align-items: center; font-size: 15px; color: var(--azure-deep); }
.trust-item strong { color: var(--ink); }

/* ---- Footer ---- */
.nk-footer { padding: 60px 0 50px; border-top: 1px solid var(--border-soft); }
.nk-footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.nk-footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--muted); }
.nk-footer-col strong { color: var(--ink); font-weight: 600; margin-bottom: 4px; }
.nk-footer-col a { color: var(--muted); }
.nk-footer-col a:hover { color: var(--azure-deep); }
.nk-footer-bottom { font-size: 13px; color: var(--muted-soft); margin-top: 40px; }

/* ---- Forms ---- */
input, select, textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 16px;
}
input::placeholder, textarea::placeholder { color: var(--muted-soft); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--azure); box-shadow: 0 0 0 3px var(--azure-soft); }
label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin: 0 0 6px; }
textarea { resize: vertical; min-height: 120px; }

/* ---- Pricing / credit cards ---- */
.plan-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; }
.plan-card.featured { border: 1.5px solid var(--azure-deep); box-shadow: var(--shadow); position: relative; }
.plan-name { font-family: var(--serif); font-size: 26px; margin-bottom: 4px; }
.plan-price { font-size: 40px; font-weight: 700; font-family: var(--sans); letter-spacing: -.02em; }
.plan-price small { font-size: 15px; font-weight: 500; color: var(--muted); }
.plan-list { list-style: none; margin: 20px 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.plan-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); }
.plan-list li::before { content: "✓"; flex: none; width: 18px; height: 18px; border-radius: 50%; background: var(--azure-soft); color: var(--azure-deep); font-size: 11px; display: flex; align-items: center; justify-content: center; margin-top: 2px; }

.credit-opt { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 18px 14px; text-align: center; cursor: pointer; background: var(--white); }
.credit-opt.sel { border-color: var(--azure-deep); box-shadow: 0 0 0 1px var(--azure-deep) inset; background: var(--azure-soft); }
.credit-amt { font-size: 20px; font-weight: 700; }
.credit-price { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ---- FAQ / accordion ---- */
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; cursor: pointer; font-weight: 500; font-size: 17px; }
.faq-a { padding: 0 0 22px; color: var(--muted); font-size: 15px; max-width: 680px; }

/* ---- Support category cards ---- */
.support-search {
  max-width: 640px; margin: 0 auto 46px; position: relative;
}
.support-search input { padding: 16px 20px 16px 46px; border-radius: 999px; font-size: 16px; }
.cat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.cat-card .icon-tile { margin-bottom: 14px; }
.cat-card h3 { font-size: 18px; font-family: var(--sans); font-weight: 700; margin-bottom: 4px; }
.cat-card .count { font-size: 13px; color: var(--muted-soft); }

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.small { font-size: 13px; color: var(--muted-soft); }

/* ---- Help articles ---- */
.breadcrumb { font-size: 13px; color: var(--muted-soft); margin-bottom: 18px; }
.breadcrumb a { color: var(--muted-soft); }
.breadcrumb a:hover { color: var(--azure-deep); }
.article-hero { padding: 44px 0 8px; }
.article-hero .eyebrow { display: block; }
.article-hero h1 { font-size: 38px; line-height: 1.15; max-width: 780px; }
.article-hero .dek { font-size: 17px; color: var(--muted); max-width: 640px; margin-top: 14px; }
.article-wrap { display: grid; grid-template-columns: 1fr 220px; gap: 56px; align-items: flex-start; }
@media (max-width: 900px) { .article-wrap { grid-template-columns: 1fr; } .article-toc { display:none; } }
.article-body { max-width: 700px; }
.article-body h2 { font-size: 24px; margin: 40px 0 14px; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 17px; font-family: var(--sans); font-weight: 700; margin: 26px 0 8px; color: var(--ink); }
.article-body p { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 14px; }
.article-body ul, .article-body ol { margin: 0 0 16px; padding-left: 22px; }
.article-body li { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 8px; }
.article-body a { color: var(--azure-deep); text-decoration: underline; text-decoration-color: var(--azure-tint); }
.article-body strong { color: var(--ink); }
.article-body table { width: 100%; border-collapse: collapse; margin: 10px 0 20px; font-size: 14.5px; }
.article-body th, .article-body td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border-soft); color: var(--ink-soft); }
.article-body th { color: var(--ink); font-weight: 700; background: var(--cream-2); }
.article-toc { position: sticky; top: 30px; display: flex; flex-direction: column; gap: 9px; font-size: 13.5px; }
.article-toc a { color: var(--muted); }
.article-toc a:hover { color: var(--azure-deep); }
.article-toc .toc-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-soft); margin-bottom: 4px; }

/* ---- Callouts ---- */
.callout { border-radius: var(--radius); padding: 18px 20px; margin: 20px 0; font-size: 14.5px; border: 1px solid var(--border); }
.callout-truth { background: var(--azure-soft); border-color: var(--azure-tint); }
.callout-truth .callout-label { color: var(--azure-deep); }
.callout-flag { background: var(--gold-soft); border-color: #e9d19c; }
.callout-flag .callout-label { color: #8a6a1f; }
.callout-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.callout p { margin-bottom: 0; color: var(--ink-soft); }
.callout p + p { margin-top: 8px; }

/* ---- Related / next articles ---- */
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 14px; }
@media (max-width: 860px) { .related-grid { grid-template-columns: 1fr; } }
.related-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: block; color: inherit; }
.related-card:hover { border-color: var(--azure); text-decoration: none; }
.related-card .k { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--azure-deep); }
.related-card h4 { font-family: var(--sans); font-size: 15px; font-weight: 700; margin: 6px 0 0; color: var(--ink); }

/* ============================================================
   MARKETING SITE ADDITIONS — 2026-07-31 (web.edge.mc build)
   Corporate/SEO property extensions on top of the 0714 Azure
   system above. Reuses every existing token/class; nothing here
   redefines --azure/--cerise/--gold etc.
   ============================================================ */

/* ---- Mobile nav ---- */
.nk-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: 8px; }
.nk-nav-toggle .bar { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; }
@media (max-width: 760px) {
  .nk-nav { position: relative; flex-wrap: wrap; }
  .nk-nav-toggle { display: block; order: 2; }
  .nk-nav-right { order: 3; }
  .nk-nav-links {
    display: none; flex-direction: column; align-items: flex-start; gap: 16px;
    position: absolute; top: 64px; left: 0; right: 0; background: var(--white);
    padding: 20px 24px; border: 1px solid var(--border-soft); border-top: none;
    border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow); z-index: 30;
  }
  .nk-nav-links.open { display: flex; }
}

/* ---- TRACY placeholder blocks (copy/number pending, never invented) ---- */
.tracy-placeholder {
  border: 1.5px dashed var(--muted-soft); border-radius: var(--radius);
  background: var(--cream-2); padding: 14px 16px; font-size: 13px; color: var(--muted);
}
.tracy-placeholder strong { color: var(--ink-soft); }

/* ---- Front-door / doorway cards (product.html) ---- */
.doorway-card { display: flex; flex-direction: column; height: 100%; }
.doorway-card .icon-tile { margin-bottom: 18px; }
.doorway-step { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.doorway-step .num {
  flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--azure-deep);
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700;
}

/* ---- Stat / evidence blocks (grounding.html) ---- */
.stat-card { text-align: center; padding: 26px 18px; }
.stat-num { font-family: var(--serif); font-size: 36px; color: var(--azure-deep); }
.stat-label { font-size: 13.5px; color: var(--muted); margin-top: 6px; }

/* ---- Honest / verified badges ---- */
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.badge-honest {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600;
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--border); color: var(--ink-soft); background: var(--white);
}
.badge-honest .dot { background: var(--ok, #3f7d52); }

/* ---- Skill cards (skills.html) ---- */
.skill-card { display: flex; flex-direction: column; gap: 6px; }
.skill-card .k { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--azure-deep); }
