/* The hidden attribute must actually hide: the UA's [hidden]{display:none} is
   author-level-overridable, so any class with its own display rule (e.g. .btn's
   inline-flex) would silently defeat it. Enforce the semantics globally. */
[hidden] { display: none !important; }

/* ── Token governance ─────────────────────────────────────────────────────
   Eight :root blocks exist because custom properties are inherited through the
   DOM, never shared between stylesheets — a page that doesn't load this file
   can't see these values. The blocks and their relationship:
     layered on this one (page also loads styles.css): app-shell.css, auth.css
     self-contained (page does NOT load styles.css):   agent.css, faq.css,
                                                       logIn.css, signUp.css,
                                                       viewJobs.css
     component-scoped namespaces:                      chat.css (--chat-*),
                                                       consent/ui.css (literal
                                                       fallbacks by design)
   Rules: (1) the same token NAME must mean the same CONCEPT everywhere — the
   navy is --navy, never a "--blue-dark" alias; (2) deliberate value divergence
   (e.g. the self-contained trio's lighter --blue #50A2FF) gets an inline
   comment saying so; (3) prefer var() over a literal when the token exists in
   scope. See also the --ink/--navy note below. */
:root {
  --blue: #3b82f6;
  --blue-dark: #1d4ed8;
  --blue-light: #50A2FF;
  --navy: #020C45;
  /* Ink, not surface. --navy is both the darkest brand colour AND the background of the heroes,
     footers and panels, so it cannot flip for dark mode — but it was also the colour of every
     heading, label and emphasised word, and those have to. On a dark surface #020C45 text is
     invisible: the privacy notice's own table labels could only be read by selecting them. Text
     uses --ink; backgrounds keep --navy. */
  --ink: #020C45;
  --navy-mid: #1e3a8a;
  --bg: #f8faff;
  --white: #ffffff;
  --gray-light: #e8edf6;
  --gray-mid: #c4cfe3;
  --text: #0f1f4b;
  --text-muted: #64748b;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(30,58,138,0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Reserve the scrollbar gutter up front: async data loads grow the page after first
   paint, and the scrollbar appearing/disappearing otherwise shifts the whole layout
   sideways (e.g. the status filter on the agent console visibly jumps). No-op where
   the platform uses overlay scrollbars. */
html { scrollbar-gutter: stable; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(30,58,138,0.07);
}

.logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
  /* The logo is an <a>; pages that don't also load nav.css otherwise show the UA underline. */
  text-decoration: none;
}

.logo .check {
  color: var(--blue);
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--blue); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-icon {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: border-color 0.2s;
}
.nav-icon:hover { border-color: var(--blue); color: var(--blue); }

.btn-login {
  background: none; border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  color: var(--text); cursor: pointer;
  transition: color 0.2s;
}
.btn-login:hover { color: var(--blue); }

.btn-signup {
  background: var(--blue);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-signup:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* HERO */
.hero {
  min-height: calc(100vh - 73px); /* full viewport minus nav */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-wordmark {
  font-family: 'Sora', sans-serif;
  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
  animation: fadeUp 0.6s ease both;
}

.hero-subtitle {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--blue-light);
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-subsubtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  font-weight: 400;
  color: var(--text-muted);
  animation: fadeUp 0.6s 0.15s ease both;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.btn-cta-primary {
  display: inline-block;
  white-space: nowrap;
  background: var(--blue);
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(59,130,246,0.35);
  transition: background 0.2s, transform 0.15s;
}
.btn-cta-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-cta-secondary {
  display: inline-block;
  white-space: nowrap;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--gray-mid);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-cta-secondary:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* FEATURE CARDS */
.features {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1.2fr 0.8fr;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.feature-card {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 24px 20px 32px;
  color: #ffffff;
  text-align: left;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  justify-content: space-between;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(59,130,246,0.3); }

.feature-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.feature-card .label {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.95;
  margin-bottom: 18px;
}

.feature-card .card-desc {
  font-size: 0.82rem;
  opacity: 0.85;
  line-height: 1.5;
  margin-top: 8px;
}

.feature-card .icon {
  margin-top: 24px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}

/* CAROUSEL HEADING */
.carousel-heading-section {
  max-width: 1100px;
  margin: 0 auto 0;
  padding: 0 40px;
}

.carousel-heading-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 0 20px;
  border-bottom: 1.5px solid var(--gray-light);
  margin-bottom: 28px;
}

.carousel-heading-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.carousel-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
}

.carousel-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.carousel-heading-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.carousel-view-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  padding: 8px 16px;
  border: 1.5px solid rgba(80, 162, 255, 0.35);
  border-radius: 50px;
  transition: all 0.2s;
  background: rgba(80, 162, 255, 0.05);
  white-space: nowrap;
  margin-bottom: 2px;
}

.carousel-view-all:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  transform: translateX(2px);
}


/* CAROUSEL */
.carousel-section {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 40px;
  position: relative;
}

.carousel-wrapper {
  border-radius: var(--radius);
  /* Clip the track to the visible window so extra cards (>3) don't spill past
     the content column. The vertical padding is kept larger than the card
     shadow's reach (--shadow is 0 4px 24px ≈ 28px below the box) and cancelled
     by a matching negative margin, so the shadow and hover lift paint in full
     while overflow: hidden clips the track only horizontally. */
  overflow: hidden;
  padding-block: 32px;
  margin-block: -32px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.job-card {
  flex: 0 0 calc(33.333% - 11px);
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1.5px solid var(--gray-light);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  min-height: 110px;
}
.job-card:hover { border-color: var(--blue-light); transform: translateY(-2px); }

.job-card-tag {
  display: inline-block;
  background: rgba(59,130,246,0.10);
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 3px 9px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.job-card-title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.job-card-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  z-index: 10;
}
.carousel-btn:hover { background: var(--blue); color: #ffffff; border-color: var(--blue); }
.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gray-mid);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.dot.active { background: var(--blue); transform: scale(1.3); }

/* Single screen of tasks (<= 3): nothing to page through, so JS adds
   .carousel-section--single. Drop the now-inert arrows and lone dot, and centre
   the row so 1–2 cards sit balanced rather than stranded to the left. */
.carousel-section--single .carousel-btn,
.carousel-section--single .carousel-dots { display: none; }
.carousel-section--single .carousel-track { justify-content: center; }

/* WHAT IS TASKPOOL - EXPLAINER */
.explainer-section {
  max-width: 1100px;
  margin: 0 auto 100px;
  padding: 0 40px;
}

.explainer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* LEFT */
.explainer-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.explainer-accent {
  color: var(--blue);
}

.explainer-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.explainer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.explainer-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 16px;
  border-left: 2px solid var(--gray-light);
  transition: border-color 0.2s;
}

.explainer-list li:hover {
  border-left-color: var(--blue);
}

.explainer-bold {
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}

/* RIGHT */
.explainer-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.explainer-card {
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s;
}
.explainer-card:hover { transform: translateX(4px); }

.explainer-card--filled {
  background: var(--navy-mid);
  padding: 22px 28px;
}

.explainer-card-num {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  min-width: 24px;
}

.explainer-card-text {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: #ffffff;
}

.explainer-card--large {
  background: var(--navy);
  padding: 28px 28px;
  border-radius: 10px;
}

.explainer-card-large-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.explainer-card-large-text {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.explainer-card-large-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .explainer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


/* STATS */
.stats-section {
  max-width: 1100px;
  margin: 0 auto 100px;
  padding: 0 40px;
}

.stats-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-align: center;
  margin-bottom: 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 12px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--blue);
  margin-top: 16px;
  display: block;
}

/* HOW IT WORKS */
.hiw-section {
  max-width: 1100px;
  margin: 0 auto 100px;
  padding: 0 40px;
}

.hiw-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
}

.hiw-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: sticky;
  top: 100px;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hiw-step {
  background: var(--navy-mid);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  transition: transform 0.2s;
}
.hiw-step:hover { transform: translateX(4px); }

.hiw-num-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.hiw-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue-light);
}

.hiw-step-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.hiw-step-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.hiw-list {
  margin-top: 8px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hiw-list li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 40px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.footer-check { color: var(--blue-light); }

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  max-width: 340px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social-btn:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  background: rgba(80,162,255,0.1);
}

.footer-col-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-col a:hover { color: #ffffff; }

.footer-bottom {
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-inner { grid-template-columns: 1fr; }
  .hiw-heading { position: static; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
/* Each card's headline is one unbreakable word (~150px here) + 48px padding, so
   a 1fr track can never measure narrower than ~197px. Two of those plus the gap
   need ~490px; below that the grid pushed past the viewport and the whole page
   scrolled sideways. Drop to one column instead of shrinking the type. */
@media (max-width: 520px) {
  .stats-grid { grid-template-columns: minmax(0, 1fr); }
}


/* Animate in on load */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1          { animation: fadeUp 0.6s ease both; }
.hero-cta         { animation: fadeUp 0.6s 0.1s ease both; }
.features         { animation: fadeUp 0.6s 0.2s ease both; }
.carousel-section { animation: fadeUp 0.6s 0.3s ease both; }

/* ---------- Dark mode (shared) — toggled by JS/theme.js ---------- */
body.dark {
  --bg: #0b1226;
  --white: #111a38;           /* surface flips; always-white text is literal #ffffff */
  --gray-bg: #0e1832;
  --gray-light: #26325c;
  --gray-mid: #34426e;
  --border: #26325c;
  --text: #dbe4f8;
  --text-muted: #93a3c8;
  --blue-pale: rgba(59,130,246,0.16);
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  /* --navy is NOT flipped: it is the bg of heroes/footers/panels (already dark). Its ink twin is,
     which is what the one-off repaints below were each doing by hand for one selector at a time. */
  --ink: #e8eefc;
  background: #0b1226;
  color: #dbe4f8;
}
body.dark h1, body.dark h2, body.dark h3, body.dark h4, body.dark h5 { color: #e8eefc; }
/* nav.css uses literal hexes — repaint */
body.dark nav { background: #111a38; border-bottom-color: #26325c; }
body.dark nav .logo { color: #ffffff; }
body.dark nav .nav-links a { color: var(--text, #dbe4f8); }
body.dark nav .nav-links a:hover, body.dark nav .nav-links a.active { color: #50A2FF; }
body.dark .nav-dropdown-menu { background: #111a38; border-color: #26325c; box-shadow: 0 8px 28px rgba(0,0,0,0.5); }
body.dark .nav-dropdown-menu a { color: var(--text, #dbe4f8); }
body.dark .nav-dropdown-menu a:hover { background: rgba(59,130,246,0.12); color: #50A2FF; }
body.dark nav .btn-login { color: var(--text, #dbe4f8); }
body.dark nav .nav-icon { background: transparent; }
/* chat widget (vars consumed by chat.css) */
body.dark {
  --chat-surface: #111a38; --chat-bg2: #0b1226; --chat-border: #26325c;
  --chat-text: #dbe4f8; --chat-muted: #93a3c8; --chat-chip: rgba(255,255,255,0.08);
}
/* ── QA dark-mode accessibility fixes ── */
body.dark { color-scheme: dark; }
body.dark .explainer-bold { color: #e8eefc; }
body.dark .job-card-title, body.dark .carousel-heading-title { color: #e8eefc; }
body.dark .carousel-btn { color: #dbe4f8; }
body.dark .carousel-btn:hover { color: #50A2FF; }
body.dark .btn-cta-secondary { color: #e8eefc; border-color: #34426e; }
