/* ============================================================
   TRONIEX TECHNOLOGIES — Design Tokens
   colors_and_type.css
   Single source of truth for color + type foundations.
   Colors sampled from official brand assets (Brand Guidelines v1.1).
   ------------------------------------------------------------
   FONTS (brand-specified):
   Headings  -> Satoshi Bold (Fontshare / Indian Type Foundry)
   Body      -> DM Sans (Google Fonts)
   Satoshi is loaded from the Fontshare CDN; DM Sans from
   Google Fonts. If self-hosting, drop the woff2 files in
   fonts/ and replace the @import rules below.
   ============================================================ */
:root {
  /* ---------- BRAND COLOR — Troniex Blue ---------- */
  --troniex-blue:        #0068C7;  /* the single hero color */
  --troniex-blue-600:    #0068C7;  /* base / default */
  --troniex-blue-700:    #0056A6;  /* hover */
  --troniex-blue-800:    #00478B;  /* active / press */
  --troniex-blue-500:    #2A82D6;  /* lighter accent */
  --troniex-blue-400:    #5BA0E0;  /* tint */
  --troniex-blue-100:    #D4E0EE;  /* pale blue — UI accent surface */
  --troniex-blue-50:     #EAF2FB;  /* faint blue wash for soft cards */

  /* ---------- NEUTRALS ---------- */
  --white:               #FFFFFF;
  --black:               #000000;
  --ink:                 #0A0A0A;  /* headlines */
  --ink-soft:            #1A1D22;  /* dark sections, near-black panels */
  --body:                #4A4F57;  /* body copy */
  --body-soft:           #6B7280;  /* secondary / muted text */
  --hairline:            #E4E9F0;  /* borders, dividers */
  --surface:             #F4F7FC;  /* cool off-white page wash */
  --surface-2:           #FFFFFF;  /* raised card surface */

  /* ---------- SEMANTIC / FUNCTIONAL ---------- */
  --success:             #4CB57D;  /* positive ticks, confirmations ONLY */
  --success-bg:          #E6F4EC;
  /* NOTE: brand has no orange/red. Use sparingly + only for true system states. */
  --danger:              #D14343;
  --warning:             #C8862B;

  /* ---------- SEMANTIC TEXT ROLES ---------- */
  --fg-1:                var(--ink);       /* primary text / headlines */
  --fg-2:                var(--body);      /* body */
  --fg-3:                var(--body-soft); /* muted / captions */
  --fg-brand:            var(--troniex-blue);
  --fg-on-brand:         var(--white);

  /* ---------- BACKGROUND ROLES ---------- */
  --bg-page:             var(--surface);
  --bg-card:             var(--white);
  --bg-tint:             var(--troniex-blue-50);
  --bg-chip:             var(--troniex-blue-100);
  --bg-dark:             var(--ink-soft);

  /* ---------- TYPE FAMILIES ---------- */
  --font-display: 'Satoshi', system-ui, -apple-system, sans-serif; /* headings — Satoshi Bold */
  --font-body:    'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif; /* body */
  --font-mono:    'SFMono-Regular', 'JetBrains Mono', ui-monospace, 'Menlo', monospace;

  /* ---------- TYPE SCALE (desktop) ---------- */
  --fs-display:  clamp(3rem, 6vw, 4.5rem);   /* 48–72px hero */
  --fs-h1:       clamp(2.25rem, 4vw, 3rem);  /* 36–48px */
  --fs-h2:       2.25rem;   /* 36 */
  --fs-h3:       1.625rem;  /* 26 */
  --fs-h4:       1.25rem;   /* 20 */
  --fs-lead:     1.25rem;   /* 20 intro paragraph */
  --fs-body:     1.0625rem; /* 17 */
  --fs-small:    0.9375rem; /* 15 */
  --fs-caption:  0.8125rem; /* 13 */
  --fs-eyebrow:  0.8125rem; /* 13 — uppercase label */

  /* ---------- WEIGHTS ---------- */
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-extra:    800;

  /* ---------- LINE HEIGHTS ---------- */
  --lh-tight:    1.08;
  --lh-snug:     1.25;
  --lh-normal:   1.6;

  /* ---------- LETTER SPACING ---------- */
  --ls-tight:    -0.02em;   /* large display headings */
  --ls-normal:   0;
  --ls-eyebrow:  0.14em;    /* uppercase eyebrows / wordmark feel */

  /* ---------- RADII (rounded, pill-forward brand) ---------- */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-pill: 999px;

  /* ---------- SPACING SCALE (4pt base) ---------- */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  /* ---------- SHADOWS (soft, cool-tinted — premium glassy feel) ---------- */
  --shadow-xs:  0 1px 2px rgba(10, 40, 80, 0.05);
  --shadow-sm:  0 2px 8px rgba(10, 50, 100, 0.06);
  --shadow-md:  0 8px 24px rgba(0, 104, 199, 0.08), 0 2px 6px rgba(10, 40, 80, 0.05);
  --shadow-lg:  0 18px 48px rgba(0, 104, 199, 0.12), 0 4px 12px rgba(10, 40, 80, 0.06);
  --shadow-blue:0 12px 30px rgba(0, 104, 199, 0.28);  /* glow under blue CTAs */

  /* ---------- GLASS (frosted panels) ---------- */
  --glass-bg:     rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.8);
  --glass-blur:   16px;

  /* ---------- GRADIENTS ---------- */
  --grad-icy:   linear-gradient(160deg, #FFFFFF 0%, #EAF2FB 55%, #D4E0EE 100%);
  --grad-blue:  linear-gradient(135deg, #0068C7 0%, #0056A6 100%);
  --grad-dark:  linear-gradient(160deg, #10243B 0%, #0A0A0A 100%);

  /* ---------- MOTION ---------- */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:   140ms;
  --dur-base:   240ms;
  --dur-slow:   420ms;
}

/* ============================================================
   SEMANTIC TYPE CLASSES
   ============================================================ */
.t-eyebrow {
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--fg-brand);
}
.t-display {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--fg-1);
  text-wrap: balance;
}
.t-h1 { font-family: var(--font-display); font-size: var(--fs-h1); font-weight: var(--fw-bold);   line-height: var(--lh-tight); letter-spacing: var(--ls-tight); color: var(--fg-1); text-wrap: balance; }
.t-h2 { font-family: var(--font-display); font-size: var(--fs-h2); font-weight: var(--fw-bold);   line-height: var(--lh-snug);  letter-spacing: var(--ls-tight); color: var(--fg-1); text-wrap: balance; }
.t-h3 { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: var(--fw-semibold);line-height: var(--lh-snug);  color: var(--fg-1); }
.t-h4 { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: var(--fw-semibold);line-height: var(--lh-snug);  color: var(--fg-1); }
.t-lead { font-family: var(--font-body); font-size: var(--fs-lead); font-weight: var(--fw-regular); line-height: var(--lh-normal); color: var(--fg-2); }
.t-body { font-family: var(--font-body); font-size: var(--fs-body); font-weight: var(--fw-regular); line-height: var(--lh-normal); color: var(--fg-2); }
.t-small { font-family: var(--font-body); font-size: var(--fs-small); line-height: var(--lh-normal); color: var(--fg-2); }
.t-caption { font-family: var(--font-body); font-size: var(--fs-caption); line-height: var(--lh-snug); color: var(--fg-3); }
.t-mono { font-family: var(--font-mono); font-size: var(--fs-small); color: var(--fg-2); }

/* Brand signature: highlighted keyword inside a heading */
.t-highlight { color: var(--fg-brand); }

/* ============================================================
   Platform Launch Checklist — programmatic SEO article template
   Troniex Technologies. Styling layer on top of brand tokens
   (assets/troniex-tokens.css). All theming flows through the
   --art-* variables so the Tweaks panel can override live.
   ============================================================ */

:root {
  /* themable knobs (Tweaks panel overrides these on :root) */
  --art-font-display: var(--font-display);
  --art-font-body: var(--font-body);
  --art-accent: var(--troniex-blue);
  --art-accent-700: color-mix(in srgb, var(--art-accent), #000 16%);
  --art-accent-800: color-mix(in srgb, var(--art-accent), #000 30%);
  --art-accent-100: color-mix(in srgb, var(--art-accent), #fff 78%);
  --art-accent-50: color-mix(in srgb, var(--art-accent), #fff 90%);
  --art-radius: 18px;          /* card radius */
  --art-radius-sm: 12px;
  --art-pill: 999px;
  --art-pad: 28px;             /* density: card padding */
  --art-gap: 18px;             /* density: stack gap */
  --art-measure: 720px;       /* article reading column */

  /* phase accents (within the blue family) */
  --p1: #00478B;
  --p2: #0068C7;
  --p3: #2A82D6;
  --p4: #5BA0E0;
}


img { max-width: 100%; display: block; }
a { color: var(--art-accent); text-decoration: none; }
::selection { background: var(--art-accent-100); color: var(--art-accent-800); }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- reading progress bar ---------- */
.progress-rail {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  z-index: 70; background: transparent; pointer-events: none;
}
.progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--art-accent), var(--art-accent-700));
  box-shadow: 0 0 12px rgba(0,104,199,.5);
  transition: width .1s linear;
}

/* ---------- floating pill nav ---------- */
.nav-shell {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; justify-content: center; padding: 20px;
  transition: padding .3s var(--ease-out);
}
.nav-shell.scrolled { padding: 12px 20px; }
.nav {
  width: 100%; max-width: 1120px; display: flex; align-items: center;
  justify-content: space-between; gap: 18px;
  padding: 9px 9px 9px 22px; border-radius: var(--art-pill);
  background: rgba(255,255,255,0.74);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease-out);
}
.nav-shell.scrolled .nav { box-shadow: var(--shadow-md); }
.nav-logo img { height: 25px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 9px 15px; border-radius: var(--art-pill); font-size: 14px;
  font-weight: 600; color: var(--body); transition: background .15s, color .15s;
}
.nav-links a:hover { color: var(--ink); background: var(--art-accent-50); }
.nav-links a.active { color: var(--art-accent-800); background: var(--art-accent-100); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: var(--art-font-body); font-weight: 600; font-size: 14px;
  border-radius: var(--art-pill); border: 1px solid transparent;
  padding: 11px 20px; transition: all .18s var(--ease-out); white-space: nowrap;
}
.btn i, .btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--art-accent); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--art-accent-700); transform: translateY(-1px); }
.btn-primary:active { background: var(--art-accent-800); transform: translateY(0) scale(.985); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--hairline); box-shadow: var(--shadow-xs); }
.btn-ghost:hover { border-color: var(--art-accent-100); color: var(--art-accent-800); transform: translateY(-1px); }
.btn-lg { padding: 14px 26px; font-size: 15px; }

/* ---------- eyebrow / chips ---------- */
.eyebrow {
  font-family: var(--art-font-display); font-size: 13px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--art-accent);
}
.chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px;
  border-radius: var(--art-pill); background: var(--art-accent-100);
  color: var(--art-accent-800); font-size: 13px; font-weight: 600;
}
.chip i { width: 15px; height: 15px; }
.hl { color: var(--art-accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: 150px 0 60px; }
.hero.bg-gradient { background: var(--grad-icy); }
.hero.bg-solid { background: var(--surface); }
.hero.bg-dark { background: var(--grad-dark); }
.hero.bg-dark .hero-h1, .hero.bg-dark .hero-sub { color: #fff; }
.hero.bg-dark .hero-sub { color: rgba(255,255,255,.7); }
.hero.bg-dark .eyebrow { color: var(--p4); }
.hero-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-blob.a { top: -120px; right: -60px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(0,104,199,.14), transparent 70%); }
.hero-blob.b { bottom: -160px; left: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(212,224,238,.55), transparent 70%); }

.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero-h1 {
  font-family: var(--art-font-display); font-weight: 700;
  font-size: clamp(2.3rem, 4.4vw, 3.4rem); line-height: 1.06;
  letter-spacing: -.02em; color: var(--ink); text-wrap: balance; margin: 18px 0 0;
}
.hero-sub {
  font-family: var(--art-font-body); font-size: 19px; line-height: 1.6;
  color: var(--body); margin-top: 20px; max-width: 540px; text-wrap: pretty;
}
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }

/* shield-framed visual + float cards */
.hero-visual { position: relative; justify-self: center; }
/* .shield-frame {
  position: relative; width: 330px; height: 360px; border-radius: var(--r-xl);
  background: rgba(255,255,255,0.55); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center;
} */
/* .shield-frame img { width: 168px; filter: drop-shadow(0 18px 40px rgba(0,104,199,.25)); } */
.float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 11px 15px; border-radius: 15px; background: #fff;
  box-shadow: var(--shadow-md); border: 1px solid var(--hairline);
}
.float-card .ic { width: 34px; height: 34px; border-radius: 10px; background: var(--art-accent-50);
  color: var(--art-accent); display: flex; align-items: center; justify-content: center; flex: none; }
.float-card .ic i { width: 18px; height: 18px; }
.float-card .big { font-family: var(--art-font-display); font-weight: 700; font-size: 17px; color: var(--ink); line-height: 1; }
.float-card .small { font-size: 12px; color: var(--body-soft); margin-top: 3px; }

/* hero meta stat row variant (when shield hidden) */
.hero-statrow { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 34px; }
.hero-statrow .s .n { font-family: var(--art-font-display); font-weight: 800; font-size: 30px; color: var(--art-accent); line-height: 1; }
.hero-statrow .s .l { font-size: 13px; color: var(--body-soft); margin-top: 6px; }

/* ============================================================
   ARTICLE LAYOUT (TOC sidebar + body)
   ============================================================ */
.article-area { padding: 56px 0 40px; }
.article-grid { display: grid; grid-template-columns: 248px minmax(0, 1fr); gap: 56px; align-items: start; }
.article-grid.no-toc { grid-template-columns: minmax(0,1fr); max-width: 820px; margin: 0 auto; }

/* sticky TOC */
.toc { position: sticky; top: 96px; align-self: start; background-color: transparent; border-radius: .5rem; z-index: 10;}
.toc-toggle { display: none;}
.toc-label { font-family: var(--art-font-display); font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--body-soft); padding: 14px 0px; }
.toc-list { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--hairline); }
.toc-list li a {
  display: block; padding: 8px 0 8px 16px; margin-left: -2px; border-left: 2px solid transparent;
  font-size: 13.5px; font-weight: 500; color: var(--body-soft); line-height: 1.35;
  transition: color .15s, border-color .15s;
}
.toc-list li a:hover { color: var(--ink); }
.toc-list li a.active { color: var(--art-accent); border-left-color: var(--art-accent); font-weight: 600; }
.toc-progress { margin-top: 20px; padding: 14px 16px; border-radius: var(--art-radius-sm);
  background: #fff; border: 1px solid var(--hairline); box-shadow: var(--shadow-xs); }
.toc-progress .tp-top { display: flex; justify-content: space-between; align-items: baseline; }
.toc-progress .tp-n { font-family: var(--art-font-display); font-weight: 800; font-size: 22px; color: var(--ink); }
.toc-progress .tp-lab { font-size: 11.5px; color: var(--body-soft); }
.toc-bar { height: 6px; border-radius: 999px; background: var(--art-accent-50); margin-top: 9px; overflow: hidden; }
.toc-bar > span { display: block; height: 100%; border-radius: 999px; background: var(--art-accent); transition: width .3s var(--ease-out); }

/* article body */
.article-body { max-width: var(--art-measure); }
.article-body h1.title {
  font-family: var(--art-font-display); font-weight: 700; font-size: clamp(2rem, 3.4vw, 2.7rem);
  line-height: 1.12; letter-spacing: -.02em; color: var(--ink); margin: 0; text-wrap: balance;
}
.article-body h2 {
  font-family: var(--art-font-display); font-weight: 700; font-size: 1.7rem;
  line-height: 1.2; letter-spacing: -.01em; color: var(--ink); margin: 0 0 4px;
  text-wrap: balance;
}
.article-body p { font-size: var(--fs-body); line-height: 1.66; color: var(--body); margin: 0 0 14px; text-wrap: pretty; }
.article-body p strong { color: var(--ink); }
.lead { font-size: 1.18rem; line-height: 1.6; color: var(--body); }

/* freshness block */
.freshness {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin: 18px 0 0; padding: 12px 16px; border-radius: var(--art-radius-sm);
  background: var(--art-accent-50); border: 1px solid var(--art-accent-100);
  font-size: 13.5px; color: var(--body);
}
.freshness .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); flex: none;
  box-shadow: 0 0 0 4px rgba(76,181,125,.18); }
.freshness b { color: var(--ink); }

/* TL;DR */
.tldr {
  margin: 26px 0; padding: var(--art-pad); border-radius: var(--art-radius);
  background: #fff; border: 1px solid var(--hairline); box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.tldr::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--art-accent); }
.tldr .tldr-h { display: flex; align-items: center; gap: 9px; font-family: var(--art-font-display);
  font-weight: 700; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.tldr .tldr-h i { width: 18px; height: 18px; color: var(--art-accent); }
.tldr ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tldr li { display: flex; gap: 12px; font-size: 15.5px; line-height: 1.5; color: var(--body); }
.tldr li i { width: 18px; height: 18px; color: var(--art-accent); flex: none; margin-top: 3px; }

/* ---------- section heading block ---------- */
.sec { margin-top: 52px; scroll-margin-top: 90px; }
.sec-head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
.phase-badge {
  flex: none; width: 52px; height: 52px; border-radius: 15px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: #fff; font-family: var(--art-font-display);
  box-shadow: var(--shadow-sm);
}
.phase-badge .pn { font-size: 9px; font-weight: 700; letter-spacing: .1em; opacity: .85; text-transform: uppercase; }
.phase-badge .pv { font-size: 22px; font-weight: 800; line-height: 1; }
.sec-head .meta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 7px; font-size: 13px; color: var(--body-soft); }
.sec-head .meta span { display: inline-flex; align-items: center; gap: 5px; }
.sec-head .meta i { width: 14px; height: 14px; }

/* ---------- phase overview table ---------- */
.ptable-wrap { margin: 22px 0; border-radius: var(--art-radius); overflow: hidden; width: 100%; max-width: 100%;
  border: 1px solid var(--hairline); box-shadow: var(--shadow-sm); background: #fff; scrollbar-width: none;}
table.data { width: 100%; border-collapse: collapse; font-size: 14px; }
table.data thead th {
  background: var(--ink-soft); color: #fff; text-align: left; padding: 13px 16px;
  font-family: var(--art-font-display); font-weight: 600; font-size: 12.5px; letter-spacing: .03em;
}
table.data td { padding: 13px 16px; border-top: 1px solid var(--hairline); color: var(--body); vertical-align: top; line-height: 1.45; }
table.data tbody tr:nth-child(even) { background: var(--surface); }
table.data .pcell { display: flex; align-items: center; gap: 9px; font-weight: 700; color: var(--ink); font-family: var(--art-font-display); }
table.data .pdot { width: 24px; height: 24px; border-radius: 7px; color: #fff; display: flex; align-items: center;
  justify-content: center; font-size: 12px; font-weight: 800; flex: none; }
table.data .break { color: var(--danger); font-size: 13px; }
table.data td b { color: var(--ink); }

/* ---------- checklist item ---------- */
.checklist { display: flex; flex-direction: column; gap: var(--art-gap); margin: 22px 0; }
.citem {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: var(--art-pad);
  border-radius: var(--art-radius); background: #fff; border: 1px solid var(--hairline);
  box-shadow: var(--shadow-xs); transition: box-shadow .2s var(--ease-out), border-color .2s, transform .2s, opacity .25s var(--ease-out);
}
.citem:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.citem { opacity: 1; }
.citem.done { background: var(--success-bg); border-color: #bfe6cf; opacity: .55; }
.citem.done:hover { opacity: 1; }
.citem.done .ci-name { color: var(--body-soft); text-decoration: line-through; text-decoration-color: rgba(76,181,125,.6); margin-bottom: 0; }
/* ticked = collapsed: hide the details, keep the title row */
.citem.done .ci-body,
.citem.done .ci-foot,
.citem.done .skip { display: none; }
.ci-check {
  width: 30px; height: 30px; border-radius: 9px; border: 1px solid var(--hairline); background: #fff;
  cursor: pointer; display: flex; align-items: center; justify-content: center; flex: none; margin-top: 2px;
  transition: all .16s var(--ease-out); color: transparent;
}
.ci-check:hover { border-color: var(--art-accent); }
.citem.done .ci-check { background: var(--success); border-color: var(--success); color: #fff; }
.ci-check i { width: 16px; height: 16px; }
.ci-num { font-family: var(--art-font-display); font-weight: 800; color: var(--art-accent); font-size: 14px; }
.ci-name { font-family: var(--art-font-display); font-weight: 700; font-size: 16.5px; color: var(--ink); line-height: 1.3; margin: 2px 0 8px; }
.ci-body { font-size: 14.5px; line-height: 1.55; color: var(--body); margin: 0 0 12px; }
.ci-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.skip {
  display: flex; align-items: flex-start; gap: 7px; font-size: 13px; color: var(--body-soft);
  line-height: 1.45; padding: 9px 12px; border-radius: var(--art-radius-sm);
  background: var(--surface); border: 1px solid var(--hairline); width: 100%;
}
.skip i { width: 15px; height: 15px; color: var(--warning); flex: none; margin-top: 2px; }
.skip b { color: var(--ink); font-weight: 700; }

/* relevance tags */
.tag {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: var(--art-pill);
  font-size: 12px; font-weight: 600; line-height: 1; white-space: nowrap;
}
.tag .tdot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.tag i { width: 13px; height: 13px; }
.tag.direct { background: var(--art-accent-100); color: var(--art-accent-800); }
.tag.direct .tdot { background: var(--art-accent); }
.tag.integration { background: var(--art-accent-50); color: var(--art-accent-700); box-shadow: inset 0 0 0 1px var(--art-accent-100); }
.tag.integration .tdot { background: transparent; box-shadow: inset 0 0 0 2px var(--art-accent); }
.tag.internal { background: var(--surface); color: var(--body); box-shadow: inset 0 0 0 1px var(--hairline); }
.tag.internal .tdot { background: var(--body-soft); }
.tag.external { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1px var(--hairline); }
.tag.external .tdot { background: var(--warning); }

/* ---------- reality block ---------- */
.reality { margin: 24px 0; opacity: 1; transform: translateY(18px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reality.in { opacity: 1; transform: none; }

/* variant: dark war-story panel */
.reality.dark .rb {
  position: relative; padding: 26px 28px 26px 30px; border-radius: var(--art-radius);
  background: var(--grad-dark); color: #fff; overflow: hidden; box-shadow: var(--shadow-lg);
}
.reality.dark .rb::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--art-accent); }
.reality.dark .rb-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--art-font-display);
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--p4); margin-bottom: 12px; }
.reality.dark .rb-label i { width: 16px; height: 16px; }
.reality.dark .rb-title { font-family: var(--art-font-display); font-weight: 700; font-size: 18px; color: #fff; margin: 0 0 10px; }
.reality.dark .rb-body { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.82); margin: 0; }
.reality.dark .rb-mean { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.14);
  font-size: 14px; color: #fff; }
.reality.darkkk .rb-mean em { color: var(--p4); font-style: normal; font-weight: 600; }
.reality.dark .rb-watermark { position: absolute; right: -10px; bottom: -22px; width: 130px; opacity: .07; }

/* variant: glass card */
.reality.glass .rb {
  position: relative; padding: 24px 26px; border-radius: var(--art-radius);
  background: rgba(255,255,255,.7); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid #fff; box-shadow: var(--shadow-md); overflow: hidden;
}
.reality.glass .rb::after { content: ""; position: absolute; inset: 0; background: var(--grad-icy); opacity: .5; z-index: -1; }
.reality.glass .rb-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--art-font-display);
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--art-accent); margin-bottom: 10px; }
.reality.glass .rb-label i { width: 16px; height: 16px; }
.reality.glass .rb-title { font-family: var(--art-font-display); font-weight: 700; font-size: 18px; color: var(--ink); margin: 0 0 9px; }
.reality.glass .rb-body { font-size: 15px; line-height: 1.6; color: var(--body); margin: 0; }
.reality.glass .rb-mean { margin-top: 13px; padding-top: 13px; border-top: 1px solid var(--hairline); font-size: 14px; color: var(--ink); }
.reality.glass .rb-mean em { color: var(--art-accent); font-style: normal; font-weight: 600; }
.reality.glass .rb-watermark { display: none; }

/* variant: editorial pull-quote */
.reality.quote .rb { position: relative; padding: 8px 8px 8px 26px; border-left: 4px solid var(--art-accent); }
.reality.quote .rb-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--art-font-display);
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--art-accent); margin-bottom: 10px; }
.reality.quote .rb-label i { width: 16px; height: 16px; }
.reality.quote .rb-title { font-family: var(--art-font-display); font-weight: 700; font-size: 20px; color: var(--ink); margin: 0 0 10px; }
.reality.quote .rb-body { font-size: 16.5px; line-height: 1.6; color: var(--body); margin: 0; font-style: italic; }
.reality.quote .rb-mean { margin-top: 14px; font-size: 14px; color: var(--ink); }
.reality.quote .rb-mean em { color: var(--art-accent); font-style: normal; font-weight: 600; }
.reality.quote .rb-watermark { display: none; }

/* ---------- proprietary insight ---------- */
.insight {
  margin: 24px 0; padding: 22px 24px; border-radius: var(--art-radius);
  background: var(--art-accent-50); border: 1px dashed var(--art-accent-100);
}
.insight .in-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--art-font-display);
  font-weight: 700; font-size: 13px; color: var(--art-accent-800); margin-bottom: 9px; }
.insight .in-label img { height: 16px; width: auto; }
.insight p { font-size: 14.5px; line-height: 1.6; color: var(--body); margin: 0; }

/* ---------- validation table (reuse table.data) ---------- */
table.data .pass { color: var(--success); font-weight: 700; }
table.data .fail { color: var(--danger); }
table.data code, .code { font-family: var(--font-mono); font-size: 13px; background: var(--art-accent-50);
  color: var(--art-accent-800); padding: 1px 6px; border-radius: 5px; }

/* ============================================================
   SCORECARD (interactive)
   ============================================================ */
.scorecard { margin: 22px 0; border-radius: var(--art-radius); background: #fff;
  border: 1px solid var(--hairline); box-shadow: var(--shadow-sm); overflow: hidden; }
.sc-rows { display: flex; flex-direction: column; }
.sc-row { display: grid; grid-template-columns: 1.3fr 2fr auto; gap: 18px; align-items: center;
  padding: 16px 22px; border-top: 1px solid var(--hairline); }
.sc-row:first-child { border-top: none; }
.sc-cat { }
.sc-cat .name { font-family: var(--art-font-display); font-weight: 700; font-size: 15px; color: var(--ink); }
.sc-cat .min { font-size: 12px; color: var(--body-soft); margin-top: 2px; }
.sc-slider-wrap { display: flex; align-items: center; gap: 14px; }
.sc-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px;
  background: var(--art-accent-50); outline: none; cursor: pointer; }
.sc-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px;
  border-radius: 50%; background: var(--art-accent); border: 3px solid #fff; box-shadow: var(--shadow-md); cursor: pointer; }
.sc-slider::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--art-accent);
  border: 3px solid #fff; box-shadow: var(--shadow-md); cursor: pointer; }
.sc-val { font-family: var(--art-font-display); font-weight: 800; font-size: 17px; min-width: 56px; text-align: right; }
.sc-val .slash { color: var(--body-soft); font-weight: 600; font-size: 13px; }
.sc-row.below .sc-val { color: var(--danger); }
.sc-row.ok .sc-val { color: var(--success); }
.sc-status { width: 22px; display: flex; justify-content: center; }
.sc-status i { width: 18px; height: 18px; }
.sc-status.ok { color: var(--success); }
.sc-status.below { color: var(--warning); }

/* verdict bar */
.sc-verdict { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center;
  padding: 22px; background: var(--ink-soft); color: #fff; }
.sc-gauge { width: 86px; height: 86px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: conic-gradient(var(--g-color) calc(var(--g-pct) * 1%), rgba(255,255,255,.12) 0); }
.sc-gauge .inner { width: 68px; height: 68px; border-radius: 50%; background: var(--ink-soft); display: grid; place-items: center; text-align: center; }
.sc-gauge .gn { font-family: var(--art-font-display); font-weight: 800; font-size: 19px; line-height: 1; }
.sc-gauge .gd { font-size: 10px; opacity: .6; margin-top: 2px; }
.sc-verdict .v-head { font-family: var(--art-font-display); font-weight: 700; font-size: 18px; margin: 0 0 4px; }
.sc-verdict .v-sub { font-size: 13.5px; color: rgba(255,255,255,.72); margin: 0; line-height: 1.45; }
.sc-pill { padding: 9px 18px; border-radius: 999px; font-family: var(--art-font-display); font-weight: 700;
  font-size: 14px; white-space: nowrap; }
.sc-pill.go { background: var(--success); color: #fff; }
.sc-pill.nogo { background: var(--warning); color: #fff; }

/* scorecard light verdict variant */
.scorecard.sc-light .sc-verdict { background: var(--art-accent-50); color: var(--ink); border-top: 1px solid var(--art-accent-100); }
.scorecard.sc-light .sc-verdict .v-sub { color: var(--body); }
.scorecard.sc-light .sc-gauge .inner { background: var(--art-accent-50); }
.scorecard.sc-light .sc-verdict .v-head { color: var(--ink); }

/* download CTA */
.dl-cta { margin: 22px 0; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 24px 26px; border-radius: var(--art-radius); background: var(--grad-icy);
  border: 1px solid var(--art-accent-100); }
.dl-cta .dl-ic { width: 54px; height: 54px; border-radius: 15px; background: #fff; color: var(--art-accent);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); flex: none; }
.dl-cta .dl-ic i { width: 26px; height: 26px; }
.dl-cta .dl-txt { flex: 1; min-width: 220px; }
.dl-cta .dl-txt h4 { font-family: var(--art-font-display); font-weight: 700; font-size: 16px; color: var(--ink); margin: 0 0 4px; }
.dl-cta .dl-txt p { font-size: 13.5px; color: var(--body); margin: 0; }

/* ---------- failures ---------- */
.failures { display: flex; flex-direction: column; gap: 14px; margin: 22px 0; }
.fail-item { padding: 20px 22px; border-radius: var(--art-radius); background: #fff;
  border: 1px solid var(--hairline); box-shadow: var(--shadow-xs); }
.fail-item h3 { font-family: var(--art-font-display); font-weight: 700; font-size: 16px; color: var(--ink);
  margin: 0 0 7px; display: flex; align-items: center; gap: 10px; }
.fail-item h3 .fx { width: 26px; height: 26px; border-radius: 8px; background: var(--art-accent-50);
  color: var(--art-accent); display: flex; align-items: center; justify-content: center; flex: none; font-weight: 800; font-size: 13px; }
.fail-item p { font-size: 14.5px; line-height: 1.6; color: var(--body); margin: 0; }
.fail-item.narrative { background: var(--surface); border-style: dashed; }
.fail-item.narrative p { font-style: italic; color: var(--ink); }
.fail-item.narrative .by { display: block; margin-top: 10px; font-style: normal; font-size: 12.5px; color: var(--body-soft); }

/* ---------- FAQ accordion ---------- */
.faq { display: flex; flex-direction: column; gap: 10px; margin: 22px 0; }
.faq-item { border-radius: var(--art-radius-sm); background: #fff; border: 1px solid var(--hairline);
  box-shadow: var(--shadow-xs); overflow: hidden; }
.faq-q { width: 100%; text-align: left; cursor: pointer; border: none; background: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px;
  font-family: var(--art-font-display); font-weight: 700; font-size: 15.5px; color: var(--ink); }
.faq-q .fq-ic { width: 26px; height: 26px; border-radius: 8px; background: var(--art-accent-50);
  color: var(--art-accent); display: flex; align-items: center; justify-content: center; flex: none;
  transition: transform .25s var(--ease-out); }
.faq-item.open .faq-q .fq-ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease-out); }
.faq-a .inner { padding: 0 20px 18px; font-size: 14.5px; line-height: 1.6; color: var(--body); }

/* ---------- closing CTA card (diagonal gradient, asymmetric corners) ---------- */
.closing { margin: 64px 0 0; padding: 72px 40px; position: relative; overflow: hidden;
  text-align: center; color: #fff;
  border-radius: 96px 28px 96px 28px;
  background: linear-gradient(108deg, #0e74d1 0%, #0b4a86 42%, #0a2a4d 70%, #060f1c 100%);
  border: 1.5px solid rgba(91,160,224,.5);
  box-shadow: 0 30px 70px rgba(0,71,139,.28); }
.closing::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(620px 380px at 4% 92%, rgba(46,130,214,.45), transparent 62%); }
.closing-inner { position: relative; max-width: 640px; margin: 0 auto; }
.closing .ch { font-family: var(--art-font-display); font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.7rem); line-height: 1.08; letter-spacing: -.02em;
  margin: 0 0 16px; text-wrap: balance; }
.closing-sub { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,.82);
  max-width: 560px; margin: 0 auto 30px; text-wrap: pretty; }
.closing-sub em { font-style: italic; font-weight: 700; color: #fff; letter-spacing: .01em; }
.closing-btn { background: #fff; color: var(--ink); box-shadow: 0 10px 28px rgba(0,0,0,.22);
  padding: 15px 28px; }
.closing-btn:hover { background: var(--surface); color: var(--art-accent-800); transform: translateY(-2px); }
.closing-btn i { color: currentColor; }

/* related links — dynamic cards */
.related-head { margin-top: 60px; margin-bottom: 14px; }
.related-head h4 { font-family: var(--art-font-display); font-weight: 700; font-size: 19px; color: var(--ink); margin: 6px 0 0; }
/* .related { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rel-card {
  position: relative; display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  border-radius: var(--art-radius); background: #fff; border: 1px solid var(--hairline);
  box-shadow: var(--shadow-xs); overflow: hidden;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), border-color .2s;
}
.rel-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--art-accent);
  transform: scaleY(0); transform-origin: top; transition: transform .22s var(--ease-out);
}
.rel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--art-accent-100); }
.rel-card:hover::before { transform: scaleY(1); }
.rel-ic {
  width: 42px; height: 42px; border-radius: 12px; flex: none; display: flex; align-items: center; justify-content: center;
  background: var(--art-accent-50); color: var(--art-accent); transition: background .2s, color .2s, transform .2s;
}
.rel-card:hover .rel-ic { background: var(--art-accent); color: #fff; transform: scale(1.05) rotate(-3deg); }
.rel-ic i { width: 20px; height: 20px; }
.rel-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.rel-kind {
  font-family: var(--art-font-display); font-size: 10.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--art-accent);
}
.rel-title { font-family: var(--art-font-display); font-weight: 700; font-size: 14.5px; color: var(--ink); line-height: 1.3; }
.rel-desc { font-size: 12px; color: var(--body-soft); }
.rel-arrow {
  flex: none; width: 26px; height: 26px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--body-soft); transition: transform .2s var(--ease-out), color .2s, background .2s; background: transparent;
}
.rel-card:hover .rel-arrow { color: var(--art-accent); transform: translateX(3px); }
.rel-arrow i { width: 17px; height: 17px; } */

.readNext{ display: flex; flex-direction: column; gap: 1rem; }
.readNxt-card{ border-bottom: 1px solid rgb(204, 204, 204); padding: 1rem 0 1rem 0; display: flex; align-items: center; justify-content: space-between; text-decoration: none; transition: .2s ease-in-out;}
.readNxt-kind{ color: gray; font-size: .90rem; font-weight: 500;}
.readNxt-title{ color: black; font-size: 1.15rem; font-weight: 600; transition: .2s ease-in-out;}
.readNxt-arrow { transform: rotate(-30deg); color: rgb(216, 216, 216); transition: .2s ease-in-out;}
.readNxt-card:hover{ padding: 1rem 0 1rem .75rem; }
.readNxt-card:hover .readNxt-title, .readNxt-card:hover .readNxt-arrow{ color: var(--troniex-blue); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { margin-top: 80px; background: var(--ink-soft); color: rgba(255,255,255,.7); padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer img.flogo { height: 30px; margin-bottom: 16px; }
.footer .fdesc { font-size: 14px; line-height: 1.6; max-width: 300px; }
.footer h5 { font-family: var(--art-font-display); color: #fff; font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; margin: 0 0 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(255,255,255,.7); font-size: 14px; transition: color .15s; }
.footer ul a:hover { color: #fff; }
.footer-bot { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; }

/* ============================================================
   {VARIABLE} REVEAL MODE
   ============================================================ */
.tpl-token {
  font-family: var(--font-mono); font-size: .92em; font-weight: 600;
  background: #FFF4D6; color: #8A5A00; padding: 1px 6px; border-radius: 5px;
  box-shadow: inset 0 0 0 1px #F0D48A; white-space: nowrap;
}
body.reveal .slot-marker { display: inline-flex; }
.slot-marker { display: none; align-items: center; gap: 6px; margin-left: 8px; padding: 3px 9px; border-radius: 999px;
  background: #FFF4D6; color: #8A5A00; font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  box-shadow: inset 0 0 0 1px #F0D48A; vertical-align: middle; }
.slot-marker i { width: 12px; height: 12px; }
body.reveal .citem.is-slot { border-color: #F0D48A; box-shadow: inset 0 0 0 1px #F0D48A; background: #FFFDF6; }
.reveal-banner { display: none; }
body.reveal .reveal-banner {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 0 0 4px;
  padding: 12px 18px; border-radius: var(--art-radius-sm); background: #FFF8E6;
  border: 1px solid #F0D48A; color: #8A5A00; font-size: 13.5px;
}
.reveal-banner i { width: 18px; height: 18px; flex: none; }
.reveal-banner b { color: #6B4600; }
.reveal-legend { display: flex; flex-wrap: wrap; gap: 6px; }
.reveal-legend .lg { font-family: var(--font-mono); font-size: 11px; background: #fff; border: 1px solid #F0D48A;
  color: #8A5A00; padding: 2px 7px; border-radius: 5px; }

/* ============================================================
   READINESS REPORT MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(10, 24, 40, 0.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: modalFade .2s var(--ease-out);
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  position: relative; width: 100%; max-width: 440px; background: #fff; border-radius: var(--art-radius);
  box-shadow: var(--shadow-lg); padding: 32px 30px 26px; animation: modalPop .26s var(--ease-out);
}
@keyframes modalPop { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-x {
  position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 9px; border: none;
  background: var(--surface); color: var(--body-soft); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.modal-x:hover { background: var(--art-accent-50); color: var(--art-accent); }
.modal-x i { width: 17px; height: 17px; }
.modal-ic {
  width: 50px; height: 50px; border-radius: 14px; background: var(--art-accent-50); color: var(--art-accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.modal-ic.ok { background: var(--success-bg); color: var(--success); }
.modal-ic i { width: 26px; height: 26px; }
.modal-h { font-family: var(--art-font-display); font-weight: 700; font-size: 20px; color: var(--ink); margin: 0 0 8px; }
.modal-sub { font-size: 14px; line-height: 1.55; color: var(--body); margin: 0 0 18px; }
.modal-label { display: block; font-family: var(--art-font-display); font-size: 12px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: var(--body-soft); margin-bottom: 7px; }
.modal-input {
  width: 100%; padding: 13px 15px; border-radius: var(--art-radius-sm); border: 1px solid var(--hairline);
  font-family: var(--art-font-body); font-size: 15px; color: var(--ink); background: var(--surface);
  transition: border-color .15s, box-shadow .15s; outline: none;
}
.modal-input:focus { border-color: var(--art-accent); box-shadow: 0 0 0 3px var(--art-accent-50); background: #fff; }
.modal-input.err { border-color: var(--danger); }
.modal-err { color: var(--danger); font-size: 12.5px; margin-top: 7px; }
.modal-submit { width: 100%; justify-content: center; margin-top: 16px; }
.modal-secondary {
  display: block; width: 100%; text-align: center; margin-top: 12px; padding: 6px; border: none; background: none;
  cursor: pointer; font-family: var(--art-font-body); font-size: 13px; font-weight: 600; color: var(--art-accent);
}
.modal-secondary:hover { color: var(--art-accent-800); text-decoration: underline; }
.modal-fine { font-size: 11.5px; line-height: 1.45; color: var(--body-soft); margin: 16px 0 0; text-align: center; }
.modal-success { text-align: center; }
.modal-success .modal-ic { margin: 0 auto 16px; }

/* Social enquiry start */

#enquiry .social-enquiry-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 6;
  transform: translateY(100%);
  /* hidden initially */
  transition: 0.4s ease-in-out;
}

#enquiry .social-enquiry-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .25rem;
  text-decoration: none;
  padding: .75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  width: 100%;
}

#enquiry .whatsapp {
  background-color: var(--green-clr);
}

#enquiry .telegram {
  background-color: var(--img-hover-clr);
}


#badges .badges-div {
  border: 1px solid var(--dark-clr);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem .5rem;
  border-radius: 1.125rem;
  scale: 1;
  transition: 0.4s ease-in-out;
}

#badges .badges-div:hover {
  scale: 1.035;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  background-color: var(--card-clr);
}


/* ---------- responsive ---------- */
@media (min-width: 320px) and (max-width: 374px){
  .ptable-wrap{
    max-width: 315px;
    overflow: scroll;
  }
}
@media (min-width: 375px) and (max-width: 424px){
  .ptable-wrap{
    max-width: 332px;
    overflow: scroll;
  }
}



@media (max-width: 992px){
  .article-grid { grid-template-columns: 1fr; gap: 20px; }
  .toc { top: 62px; background-color: #fff; }
  .toc-label { padding: 14px 14px;}
}

@media (max-width: 1023px) {

  .toc-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    border-radius: 8px;
  }

  .toc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .toc.open .toc-content {
    max-height: 1000px;
  }

  .toc.open .toc-icon {
    transform: rotate(45deg);
  }

  .toc-icon {
    transition: transform 0.3s ease;
    font-size: 20px;
    line-height: 1;
  }

  .toc-label {
    display: none;
  }
}

@media (min-width: 1024px) {

  .toc-toggle {
    display: none;
  }

  .toc-content {
    max-height: none !important;
    overflow: visible;
  }
}


@media (max-width: 1024px) {
  .article-grid { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .closing { padding: 36px 26px; border-radius: 56px 20px 56px 20px; }
  .closing-shield { opacity: .06; }
}
@media (max-width: 680px) {
  .hero { padding: 120px 0 40px; }
  .nav-links { display: none; }
  .sc-row { grid-template-columns: 1fr auto; }
  .sc-slider-wrap { grid-column: 1 / -1; order: 3; }
  .sc-verdict { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .related { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .closing { padding: 40px 22px; border-radius: 40px 16px 40px 16px; }
  table.data { font-size: 12.5px; }
  table.data td, table.data th { padding: 10px 11px; }
}

/* density variants set via body class */
body.density-compact { --art-pad: 18px; --art-gap: 12px; }
body.density-airy { --art-pad: 34px; --art-gap: 24px; }
