/* Salesforce theme for vibecoding.demo.tableau.com
   Extracted from Salesforce Brand Guidelines 2026 + FY27 Corporate deck.
   Replaces the dark CloudKicks-era palette (#03234D + #C4F135) with SF colors.

   Tokens:
   - SF Electric Blue 15 #001E5B — deep navy for hero/nav backgrounds
   - SF Cloud Blue 68 #00B3FF — primary action/link accent
   - SF Cloud Blue 80 #90D0FE — softer accent, hover states
   - SF Blue #0176D3 — Salesforce.com marketing blue
   - Ink #032D60 — text on light, nav bar
   - Cotton #FFFFFF — background
   - Sky #F4F6F9 — surface tint
*/

:root {
  --sf-navy:       #001E5B;
  --sf-navy-ink:   #032D60;
  --sf-blue:       #0176D3;
  --sf-cloud:      #00B3FF;
  --sf-cloud-soft: #90D0FE;
  --sf-lavender:   #C7B2FF;
  --sf-teal:       #00A1E0;

  --ink:           #032D60;
  --ink-dim:       #444E5B;
  --ink-mute:      #747E8B;

  --bg:            #FFFFFF;
  --bg-tint:       #F4F6F9;
  --bg-hero:       linear-gradient(135deg, #001E5B 0%, #032D60 50%, #0176D3 100%);
  --bg-hero-soft:  linear-gradient(180deg, #EAF4FE 0%, #FFFFFF 100%);

  --line:          rgba(3, 45, 96, 0.08);
  --line-hi:       rgba(3, 45, 96, 0.18);

  --shadow-sm:     0 1px 3px rgba(0, 30, 91, 0.06);
  --shadow-md:     0 4px 12px rgba(0, 30, 91, 0.10);
  --shadow-lg:     0 12px 32px rgba(0, 30, 91, 0.14);

  --radius:        8px;
  --radius-lg:     16px;

  --font-sans:     "Salesforce Sans", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  --font-display:  "Salesforce Sans", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
  --font-mono:     "SF Mono", "JetBrains Mono", "Menlo", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.55 var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--sf-blue); text-decoration: none; transition: color 120ms ease; }
a:hover { color: var(--sf-cloud); text-decoration: underline; }

code {
  font-family: var(--font-mono); font-size: 0.9em;
  background: var(--bg-tint); border: 1px solid var(--line);
  padding: 0.1em 0.35em; border-radius: 4px; color: var(--sf-navy-ink);
}

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); }
h1 { font-size: 44px; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 14px; font-weight: 700; }
h2 { font-size: 30px; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 12px; font-weight: 700; }
h3 { font-size: 20px; line-height: 1.25; margin: 0 0 8px; font-weight: 600; }

h1 .accent, h2 .accent { color: var(--sf-blue); }

/* -------- Nav bar -------- */
.sf-nav {
  background: var(--sf-navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 12px 24px;
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 24px;
  color: #fff;
}
.sf-nav .sf-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; letter-spacing: -0.01em;
  color: #fff;
}
.sf-nav .sf-brand img { height: 24px; width: auto; }
.sf-nav .sf-nav-links {
  display: flex; gap: 22px; margin-left: auto; align-items: center;
  font-size: 14px;
}
.sf-nav .sf-nav-links a {
  color: rgba(255,255,255,0.85);
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  transition: all 150ms ease;
}
.sf-nav .sf-nav-links a:hover {
  color: var(--sf-cloud);
  border-bottom-color: var(--sf-cloud);
  text-decoration: none;
}
.sf-nav .sf-nav-links a.active {
  color: var(--sf-cloud);
  border-bottom-color: var(--sf-cloud);
}

/* -------- Hero -------- */
.sf-hero {
  background: var(--bg-hero);
  color: #fff;
  padding: 72px 32px 96px;
  position: relative; overflow: hidden;
}
.sf-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
  align-items: center;
  position: relative; z-index: 2;
}
.sf-hero h1 { color: #fff; font-size: 56px; letter-spacing: -0.025em; }
.sf-hero h1 .accent { color: var(--sf-cloud); }
.sf-hero .lede {
  font-size: 20px; line-height: 1.5; color: rgba(255,255,255,0.88);
  max-width: 640px; margin: 0 0 28px;
}
.sf-hero .eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px;
  color: var(--sf-cloud-soft); font-weight: 600; margin: 0 0 12px;
}

/* Floating orbs behind hero content */
.sf-hero::before, .sf-hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none;
}
.sf-hero::before {
  width: 480px; height: 480px; top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(0,179,255,0.28), transparent 70%);
  animation: sf-orb-a 18s ease-in-out infinite;
}
.sf-hero::after {
  width: 380px; height: 380px; bottom: -140px; left: -100px;
  background: radial-gradient(circle, rgba(199,178,255,0.22), transparent 70%);
  animation: sf-orb-b 22s ease-in-out infinite;
}

@keyframes sf-orb-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-40px, 30px) scale(1.05); }
}
@keyframes sf-orb-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -20px) scale(1.08); }
}

/* -------- Astro floaters -------- */
.astro {
  position: relative;
  width: 100%; max-width: 460px;
  filter: drop-shadow(0 20px 40px rgba(0,30,91,0.35));
  animation: astro-float 4.2s ease-in-out infinite;
  will-change: transform;
  z-index: 3;
}
.astro img { display: block; width: 100%; height: auto; }

@keyframes astro-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(-1.5deg); }
}

/* Second-tier: smaller Astro tucked into a section corner */
.astro-corner {
  position: absolute;
  width: 180px; height: auto;
  z-index: 5; pointer-events: none;
  animation: astro-drift 6s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0,30,91,0.20));
}
.astro-corner.top-right    { top: -60px;  right: 24px; }
.astro-corner.bottom-left  { bottom: -40px; left: 24px; }
.astro-corner.bottom-right { bottom: -40px; right: 24px; }

@keyframes astro-drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-8px)  rotate(2deg); }
  66%      { transform: translateY(-4px)  rotate(-2deg); }
}

/* Astro reacts on hover of hero */
.sf-hero:hover .astro { animation-duration: 2.6s; }

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .astro, .astro-corner, .sf-hero::before, .sf-hero::after {
    animation: none !important;
  }
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600; font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: all 150ms ease;
}
.btn-primary {
  background: var(--sf-cloud); color: var(--sf-navy);
  box-shadow: 0 2px 8px rgba(0,179,255,0.30);
}
.btn-primary:hover {
  background: #4CC6FF; color: var(--sf-navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,179,255,0.42);
  text-decoration: none;
}
.btn-secondary {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--sf-cloud);
  color: #fff; text-decoration: none;
}

/* -------- Containers -------- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.section { padding: 72px 0; position: relative; }
.section.tint { background: var(--bg-tint); }

/* -------- Content margin fix: everything AFTER the hero gets a max-width -------- */
/* Aggressive: force main and all top-level non-hero blocks to constrain width. */
body.sf-themed main,
body.sf-themed > section:not(.sf-hero):not(.section),
body.sf-themed > div:not(.sf-hero-inner),
body.sf-themed > article,
body.sf-themed > .content {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 48px 32px !important;
  box-sizing: border-box;
}

/* Any child inside main respects the parent's max-width */
body.sf-themed main > * {
  max-width: 100%;
  box-sizing: border-box;
}

/* Global image safety net */
body.sf-themed img {
  max-width: 100%;
  height: auto;
}

/* Keep hero img (Astro) at its intended size */
body.sf-themed .sf-hero img,
body.sf-themed .astro img,
body.sf-themed .astro-corner {
  max-width: none;
}

/* Some legacy pages put content directly under body — wrap those visually */
body.sf-themed > h1,
body.sf-themed > h2,
body.sf-themed > h3,
body.sf-themed > p,
body.sf-themed > ul,
body.sf-themed > ol,
body.sf-themed > table,
body.sf-themed > pre {
  max-width: 1120px;
  margin-left: auto; margin-right: auto;
  padding-left: 32px; padding-right: 32px;
}

/* Legacy .walls, .grid, .cards etc — center them */
body.sf-themed .walls,
body.sf-themed .math,
body.sf-themed .gotchas,
body.sf-themed .cards,
body.sf-themed .grid,
body.sf-themed .stack,
body.sf-themed .filters {
  max-width: 1200px;
  margin-left: auto; margin-right: auto;
  padding-left: 32px; padding-right: 32px;
  box-sizing: border-box;
}

@media (max-width: 800px) {
  body.sf-themed > main,
  body.sf-themed > section:not(.sf-hero):not(.section),
  body.sf-themed > div:not(.sf-hero-inner),
  body.sf-themed .walls,
  body.sf-themed .math,
  body.sf-themed .cards,
  body.sf-themed .grid {
    padding-left: 20px; padding-right: 20px;
  }
}

/* -------- Gallery image sizing fix -------- */
/* Legacy gallery grids use auto-fill with min ~360px which lets images balloon.
   Cap images to a reasonable card width. */
body.sf-themed .gallery,
body.sf-themed .gallery-grid,
body.sf-themed .lwc-grid,
body.sf-themed .thumb-grid,
body.sf-themed .grid,
body.sf-themed .lwc-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  max-width: 1200px;
  margin: 32px auto;
  padding: 0 32px;
  box-sizing: border-box;
}

/* Gallery-specific card treatment */
body.sf-themed .card {
  background: #fff !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  padding: 0 !important;
  box-shadow: var(--shadow-sm);
}
body.sf-themed .card-img,
body.sf-themed .card > img,
body.sf-themed .card > a > img {
  width: 100% !important;
  height: 180px !important;
  object-fit: cover !important;
  display: block;
  background: var(--bg-tint);
  border-radius: 0 !important;
  max-height: none !important;
}
body.sf-themed .card-head,
body.sf-themed .card-body {
  padding: 12px 14px !important;
}
body.sf-themed .card-body p {
  font-size: 13px;
  color: var(--ink-dim);
  margin: 4px 0 0;
}

/* -------- Chip / filter row (LWC catalog + gallery) -------- */
body.sf-themed .controls,
body.sf-themed .filters,
body.sf-themed .chips {
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 20px auto;
  max-width: 1200px;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  box-sizing: border-box;
}
body.sf-themed .search {
  flex: 1 1 240px;
  min-width: 240px;
  display: flex; align-items: center;
  background: #fff; border: 1px solid var(--line);
  border-radius: 8px; padding: 8px 12px; gap: 8px;
}
body.sf-themed .search input {
  border: 0; outline: 0; flex: 1;
  font: inherit; color: var(--ink);
  background: transparent;
}
body.sf-themed .chip,
body.sf-themed .pill {
  background: #fff !important;
  color: var(--ink-dim) !important;
  border: 1px solid var(--line) !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
body.sf-themed .chip:hover,
body.sf-themed .pill:hover {
  border-color: var(--sf-blue) !important;
  color: var(--sf-blue) !important;
}
body.sf-themed .chip.active,
body.sf-themed .pill.active {
  background: var(--sf-blue) !important;
  color: #fff !important;
  border-color: var(--sf-blue) !important;
}
body.sf-themed .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sf-cloud);
  display: inline-block;
}

/* -------- Constrain any leftover LARGE tiles/panels from legacy content -------- */
/* Any bare .lwc-list / .cards / .stack / grouped tiles should behave like grids */
body.sf-themed .lwc-list,
body.sf-themed .cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 24px auto;
  padding: 0 32px;
}

/* Prevent single card / dashboard from ballooning full width */
body.sf-themed main > .card,
body.sf-themed main > section > .card {
  max-width: 100%;
}

/* Legacy dashboard smoke-test tiles ($40M etc) — cap them */
body.sf-themed .kpi,
body.sf-themed .metric,
body.sf-themed .stat,
body.sf-themed .hero-tile,
body.sf-themed .big-number {
  max-width: 100% !important;
  padding: 24px !important;
  font-size: 32px !important;
}

body.sf-themed .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}

/* -------- Industry cards (2-column, taller, with logo + tagline) -------- */
body.sf-themed .industry-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)) !important;
  gap: 20px !important;
  max-width: 1200px;
  margin: 0 auto !important;
  padding: 0 !important;
}
body.sf-themed .industry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  box-shadow: var(--shadow-sm);
  min-height: 160px;
}
body.sf-themed .industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--ink);
}
body.sf-themed .industry-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
body.sf-themed .industry-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--bg-tint);
  padding: 6px;
  object-fit: contain;
  max-width: 52px !important;
}
body.sf-themed .industry-icon-placeholder {
  padding: 0;
  border-radius: 8px;
}
body.sf-themed .industry-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
  color: var(--sf-navy-ink);
  font-weight: 700;
}
body.sf-themed .industry-tag {
  font-size: 12px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-top: 4px;
}
body.sf-themed .industry-tagline {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-dim);
  font-style: italic;
  border-left: 3px solid var(--sf-cloud-soft);
  padding-left: 12px;
}

/* -------- "By the numbers" cells (why page) -------- */
body.sf-themed .math {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  margin: 24px 0 !important;
}
body.sf-themed .math .cell {
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-left: 4px solid var(--sf-cloud);
  border-radius: var(--radius);
  padding: 20px 22px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}
body.sf-themed .math .cell b {
  font-size: 40px !important;
  font-weight: 800 !important;
  color: var(--sf-blue) !important;
  line-height: 1.1;
  display: block;
}
body.sf-themed .math .cell span {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
}

/* -------- Section-number prefix on H2 (engineers page: "1. What deploys...") -------- */
body.sf-themed h2 .n,
body.sf-themed h3 .n,
body.sf-themed .section h2 .n {
  margin-right: 12px !important;
  color: var(--sf-blue);
  font-weight: 700;
}
/* Same for kicker/eyebrow labels above H2 */
body.sf-themed .kicker {
  color: var(--sf-blue) !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 4px;
}

/* -------- Wall cards on /why (findings) -------- */
body.sf-themed .walls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}
body.sf-themed .wall {
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-left: 4px solid var(--warning-red, #BA0517);
  border-radius: var(--radius);
  padding: 22px 24px;
}
body.sf-themed .wall.workaround {
  border-left-color: var(--success-green, #2E844A);
}
body.sf-themed .wall .n {
  color: var(--sf-blue);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
body.sf-themed .wall h3 {
  font-size: 18px;
  margin: 0 0 12px;
  color: var(--sf-navy-ink);
}
body.sf-themed .wall .stanza {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--ink-dim);
}
body.sf-themed .wall .stanza .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 2px;
}
body.sf-themed .wall pre {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 12.5px;
  overflow-x: auto;
  margin: 6px 0 0;
  font-family: var(--font-mono);
}
body.sf-themed .wall pre .err { color: var(--warning-red, #BA0517); }
body.sf-themed .wall pre .ok { color: var(--success-green, #2E844A); }

/* -------- Story cards / signposts (blockquote + strong) -------- */
body.sf-themed .story {
  background: var(--bg-tint);
  border-left: 4px solid var(--sf-cloud);
  border-radius: 4px;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-dim);
}
body.sf-themed .story strong {
  color: var(--sf-navy-ink);
  font-weight: 700;
}

body.sf-themed .gallery img,
body.sf-themed .gallery-grid img,
body.sf-themed .lwc-grid img,
body.sf-themed .thumb-grid img,
body.sf-themed .thumb img,
body.sf-themed .card img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  background: var(--bg-tint);
}

/* Any bare image inside main content — cap width */
body.sf-themed main img,
body.sf-themed .content img {
  max-width: 100%;
  height: auto;
}

/* Legacy .thumb / .tile / .item cards on gallery */
body.sf-themed .thumb,
body.sf-themed .tile,
body.sf-themed .item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
  overflow: hidden;
}
body.sf-themed .thumb:hover,
body.sf-themed .tile:hover,
body.sf-themed .item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
body.sf-themed .thumb h3,
body.sf-themed .tile h3,
body.sf-themed .item h3 {
  font-size: 15px;
  margin: 12px 0 4px;
  color: var(--sf-navy-ink);
}
body.sf-themed .thumb p,
body.sf-themed .tile p,
body.sf-themed .item p {
  font-size: 13px;
  color: var(--ink-dim);
  margin: 0;
}

/* -------- Cards -------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-hi);
}
.card h3 { color: var(--sf-navy-ink); margin-top: 0; }
.card p { color: var(--ink-dim); margin: 6px 0 0; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* -------- Chips / pills -------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(0,179,255,0.10);
  color: var(--sf-blue);
  font-size: 12px; font-weight: 600;
  border: 1px solid rgba(0,179,255,0.20);
}

/* -------- Footer -------- */
.sf-footer {
  background: var(--sf-navy);
  color: rgba(255,255,255,0.72);
  padding: 32px 24px;
  font-size: 13px;
  border-top: 1px solid rgba(0,179,255,0.15);
}
.sf-footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.sf-footer a { color: rgba(255,255,255,0.72); }
.sf-footer a:hover { color: var(--sf-cloud); }

/* -------- Mobile -------- */
@media (max-width: 800px) {
  .sf-hero-inner { grid-template-columns: 1fr; }
  .sf-hero h1 { font-size: 36px; }
  .sf-hero { padding: 48px 24px 64px; }
  .astro { max-width: 260px; margin: 0 auto; }
  .sf-nav .sf-nav-links { gap: 12px; font-size: 13px; }
}

/* -------- Legacy override: kill Cloud Kicks dark bg -------- */
body.sf-themed {
  background: var(--bg) !important;
  color: var(--ink) !important;
}
body.sf-themed * {
  --bg:        #FFFFFF;
  --bg-2:      #F4F6F9;
  --panel:     #FFFFFF;
  --panel-2:   #F4F6F9;
  --line:      rgba(3,45,96,0.08);
  --line-hi:   rgba(3,45,96,0.18);
  --text:      #032D60;
  --text-dim:  #444E5B;
  --text-fade: #747E8B;
  --volt:      #0176D3;
  --electric:  #00B3FF;
  --coral:     #FF6B6B;
  --violet:    #C7B2FF;
}
