/* CapsicoHealth static site — shared styles
   GENERATED FILE — do not hand-edit. This is a verbatim copy of the ground-truth
   fragment stylesheet at /CapsicoWebStatic/WebContent/marketing/agents/site.css,
   refreshed by set_landing_agents.cmd. Standalone-only chrome (header/nav/footer,
   page-level resets, and the #AGENTS_MAIN positioning override) lives in chrome.css
   instead, which is hand-maintained and linked after this file. */
:root {
  --ink: #10141b;
  --ink-2: #171d26;
  --teal: #4b7fd6;          /* accent (steel blue) */
  --teal-2: #86b4ff;        /* accent light */
  --teal-soft: #e6ecf7;     /* accent tint */
  --text: #1b212b;
  --muted: #5f6b7d;
  --line: #e2e6ee;
  --white: #ffffff;
  --radius: 14px;
  --wrap: 66%;
  --shadow: 0 18px 40px -22px rgba(16, 20, 27, 0.55);
}

#AGENTS_MAIN {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  position: absolute;
  height: 100%;
  overflow-y: auto;
}

#AGENTS_MAIN img { max-width: 100%; display: block; }
#AGENTS_MAIN a { color: inherit; text-decoration: none; }

#AGENTS_MAIN h1, #AGENTS_MAIN h2, #AGENTS_MAIN h3 { line-height: 1.15; margin: 0 0 .6em; letter-spacing: -.02em; }
#AGENTS_MAIN h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; }
#AGENTS_MAIN h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 800; }
#AGENTS_MAIN h3 { font-size: 1.05rem; font-weight: 700; }
#AGENTS_MAIN p { margin: 0 0 1rem; }

#CAPSCONTAINER.loginState, #CAPSCONTAINER.loggedInState {
  background: radial-gradient(120% 100% at 20% 0%, #1d2635 0%, #141a24 55%, #0d1118 100%);
}
#CAPSCONTAINER_FOOTER {
  color: var(--text-color-lighter);
}
#CAPSCONTAINER_FOOTER A {
  color: #46C;
}

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

.eyebrow {
  color: var(--teal);
  font-size: .9em;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .78rem 1.35rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 12px 26px -14px rgba(75, 127, 214, .9); }
.btn-secondary { 
  color: #fff;
  box-shadow: 0 12px 26px -14px RGBA(231, 93, 93, 0.75);
  font-size: 100%;
  background-color: RGBA(231, 93, 93, 0.75);
  padding: .25rem 1.5rem;
}
.btn-primary:hover { background: var(--teal-2); }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-outline { background: #fff; color: var(--teal); border-color: #c3d3ee; }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(120% 100% at 20% 0%, #1d2635 0%, #141a24 55%, #0d1118 100%);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 8vw, 6rem);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
  border-radius: 999px; padding: .35rem .9rem; font-size: .8rem; font-weight: 600;
  margin-bottom: 1.3rem;
}
.pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal-2); }
.hero h1 span { color: var(--teal-2); }
.hero p.lead { color: rgba(255,255,255,.74); max-width: 46ch; font-size: 1.02rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: 18px; }

.chip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); gap: .7rem; margin-top: 1.1rem; }
.chip {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: .7rem .8rem; font-size: .8rem; font-weight: 600;
  text-align: center; color: rgba(255,255,255,.9);
}

/* ---------- Stats ---------- */
.stats {
  background: #fff; border-radius: 16px; box-shadow: var(--shadow);
  margin-top: -3.2rem; position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(5, 1fr);
  padding: 2rem 1rem;
}
.stats div { text-align: center; padding: .6rem 1rem; border-right: 1px solid var(--line); }
.stats div:last-child { border-right: none; }
.stats b { display: block; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--teal); font-weight: 800; }
.stats small { color: var(--muted); font-size: .85rem; }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); }
  .stats div { border-right: none; border-bottom: 1px solid var(--line); } }
@media (max-width: 460px) { .stats { grid-template-columns: 1fr; } }

/* ---------- Logos ---------- */
.logos { padding: 3rem 0 1rem; text-align: center; }
.logos p { color: var(--muted); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.4rem; margin-top: 1.4rem; }
.logo-row span { color: #4f6a6d; font-weight: 700; font-size: 1.05rem; opacity: .75; }

/* ---------- Sections ---------- */
section.band { padding: clamp(3rem, 7vw, 5rem) 0; }
section.tint { background: linear-gradient(180deg, #f6f8fc, #eaeff7); }
.split { display: grid; grid-template-columns: 1fr 1.35fr; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* Lets an image spill past its column to the right without being clipped or truncated */
#AGENTS_MAIN img.img-spill { width: 125%; max-width: 125%; }
@media (max-width: 900px) { #AGENTS_MAIN img.img-spill { width: 100%; max-width: 100%; } }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card .icon {
  width: 42px; height: 42px; border-radius: 11px; background: var(--teal-soft);
  display: grid; place-items: center; margin-bottom: .9rem; font-size: 1.1rem;
}
.card p { color: var(--muted); font-size: .92rem; }
.card a.more { color: var(--teal); font-weight: 700; font-size: .88rem; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.2rem; margin-top: 2rem; }
.feature { text-align: center; }
.feature .icon { margin: 0 auto .7rem; }
.feature h3 { font-size: .95rem; }
.feature p { color: var(--muted); font-size: .84rem; }

.rule { width: 46px; height: 3px; background: var(--teal); border-radius: 2px; margin: 0 0 1.2rem; }

/* ---------- CTA ---------- */
.cta {
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(100deg, #141b26, #22314a 55%, #3f6bb0);
  color: #fff; padding: 2rem;
  display: grid; grid-template-columns: 1fr auto; gap: 1.4rem; align-items: center;
}
.cta h3 { font-size: 1.35rem; margin-bottom: .3rem; }
.cta p { color: rgba(255,255,255,.75); margin: 0; font-size: .95rem; }
@media (max-width: 760px) { .cta { grid-template-columns: 1fr; } }

/* ---------- Page banner (sub-pages) ---------- */
.page-banner {
  position: relative; color: #fff;
  background: #10141b center/cover no-repeat;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}
.page-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(16,20,27,.92) 10%, rgba(16,20,27,.45) 100%);
}
.page-banner .wrap { position: relative; z-index: 1; }
.page-banner p { color: rgba(255,255,255,.78); max-width: 56ch; }
.crumbs { font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: .8rem; }
.crumbs a:hover { color: #fff; }

.placeholder-note {
  border: 1px dashed #a9e2da; background: #f2fbf9; border-radius: var(--radius);
  padding: 1.1rem 1.3rem; color: var(--muted); font-size: .92rem;
}

/* ---------- Flipped compositions ---------- */
.flip .hero-visual { order: -1; }
.split.flip { grid-template-columns: 1.35fr 1fr; }
.split.flip > :first-child { order: 2; }
.split.flip > :last-child { order: 1; }
@media (max-width: 900px) {
  .flip .hero-visual { order: 0; }
  .split.flip { grid-template-columns: 1fr; }
  .split.flip > :first-child { order: 1; }
  .split.flip > :last-child { order: 2; }
}
