/* =====================================================================
   SEGAL — DESIGN TOKENS
   ===================================================================== */
:root{
  --blue:#001C71; --blue-800:#071B57; --blue-ink:#001C71;
  --teal:#1DCAD3; --teal-600:#109AA1; --teal-050:#E6FAFB;
  --orange:#E65300; --orange-600:#C24500;
  --gold:#FFB71B;

  --teal-tint:#5FD3DB;
  --orange-tint:#F0863F;

  --ink:#16233d; --ink-soft:#46536d; --line:#dfe4ec;
  --paper:#ffffff; --mist:#F4F6F9;

  --sans:"aktiv-grotesk", sans-serif;
  --serif:"linotype-sabon", "Times New Roman", serif;
	

  --container:900px; --nav-h:68px;
  --shadow-hover:0 14px 40px rgba(0,28,113,.12);
  --ease-bar:cubic-bezier(.22,1,.36,1);
	
	 /* ---- HERO IMAGE: swap this ONE URL for the final art later ---- */
  --hero-image:url("https://www.segalco.com/media/4531/male-nurse-stressed-sitting-on-hospital-floor.jpg");
	
	/* ---- ON-BRAND SVG ICONS: swap any URL here in one place ---- */
  --svg-stress:url("https://www.segalco.com/media/4532/stress.svg");
  --svg-work:url("https://www.segalco.com/media/4534/work.svg");
  --svg-money:url("https://www.segalco.com/media/4535/money-bag.svg");
  --svg-alert:url("https://www.segalco.com/media/4529/alert.svg");
  --svg-time:url("https://www.segalco.com/media/4533/time.svg");
}

/* NO ROUNDED CORNERS — brand rule (circles opt back in explicitly) ----*/
*{box-sizing:border-box;border-radius:0 !important}

html{scroll-behavior:smooth;scroll-padding-top:var(--nav-h)}
body{font-family:var(--sans);color:var(--ink);background:var(--paper);font-size:20px;line-height:1.8;-webkit-font-smoothing:antialiased}

.reader{max-width:var(--container);margin-inline:auto;padding-inline:24px}
.reader-wide{max-width:1080px;margin-inline:auto;padding-inline:24px}

/* Reusable SVG-icon helper: renders the brand SVG NATIVELY (its own colors)
   as a background-image. Keeps the one-line-swap benefit via the CSS vars in
   :root, and avoids the cross-origin CSS-mask issue (masks from another origin
   are blocked by most browsers, which is why the tinted approach didn't show). */
.svg-ico{display:inline-block;background-repeat:no-repeat;background-position:center;background-size:contain}
.svg-stress{background-image:var(--svg-stress)}
.svg-work{background-image:var(--svg-work)}
.svg-money{background-image:var(--svg-money)}
.svg-alert{background-image:var(--svg-alert)}
.svg-time{background-image:var(--svg-time)}

/* Typography ----------------------------------------------------------*/
.eyebrow{font-size:1.15rem;font-weight:700;/*letter-spacing:.14em;*/color:var(--teal-600);margin:0 0 5px}
.eyebrow--onblue{color:var(--teal)}
h1,h2,h3{font-family:var(--sans);color:var(--blue-ink);font-weight:500!important;line-height:1.14!important}
.section-title{font-size:clamp(1.6rem,3.2vw,2.15rem)!important;font-weight:700!important;color:var(--blue-ink);margin:0 0 20px!important}
.kf-label{font-weight:700;color:var(--blue);font-size:1.75rem;text-align:center;margin-bottom:26px}
.lede{font-family:var(--serif);font-size:clamp(1.3rem,2.4vw,1.75rem);line-height:1.5;color:var(--blue-ink);font-weight:400}
p{margin:0 0 1.15rem}
.muted{color:var(--ink-soft)}
.byline{font-size:20px;color:var(--ink-soft);margin-bottom:26px}
.byline a{color:var(--blue);text-decoration:none;font-weight:600}

/* =====================================================================
   CTA — diagonal tint wedge just left of the chevron at rest; slides
   LEFT to full-cover on hover, back on exit (@property animates --edge)
   ===================================================================== */
@property --edge{ syntax:'<percentage>'; inherits:false; initial-value:80%; }
.cta{
  --edge:82%;
  --base:var(--teal); --tint:var(--teal-tint);
  position:relative;display:inline-flex;align-items:center;gap:18px;
  padding:15px 28px;border:0;text-decoration:none;font-weight:700;font-size:1.02rem;
  color:#fff;line-height:1.1;cursor:pointer;overflow:hidden;
  background:linear-gradient(118deg, var(--base) 0 var(--edge), var(--tint) var(--edge) 100%);
  transition:--edge .5s cubic-bezier(.76,0,.24,1);
}
.cta:hover,.cta:focus-visible{ --edge:0%; text-decoration: none; color: #fff!important;}
.cta__label,.cta__icon{position:relative;z-index:2}
.cta__icon{font-size:.85em}
.cta--teal{ --base:var(--teal); --tint:var(--teal-tint); color:#fff }
.cta--orange{ --base:var(--orange); --tint:var(--orange-tint); color:#fff }

.button-point {
	left: 12%!important;
	right: 0!important;
}

/* ================= STICKY NAVBAR ================= */
.topbar{position:sticky;top:0;z-index:70;background:#fff;border-bottom:1px solid var(--line)}
.nav-inner{max-width:1180px;margin:auto;height:var(--nav-h);display:flex;align-items:center;gap:26px;padding:0 24px}
.brand{display:flex;align-items:center;margin-right:auto;text-decoration:none}
.brand img{width:180px;height:48px;display:block;object-fit:contain}
.nav-links{display:flex;gap:22px;font-size:.9rem;font-weight:500;color:var(--ink-soft)}
.nav-links a{color:var(--ink-soft);text-decoration:none;padding:4px 0;border-bottom:2px solid transparent;transition:.15s}
.nav-links a:hover{color:var(--blue)}
.nav-links a.active{color:var(--blue);font-weight:700;border-bottom-color:var(--teal)}
.nav-progress{position:absolute;left:0;bottom:-1px;height:3px;width:0;background:var(--teal);transition:width .1s linear}
.nav .cta{padding:9px 18px;font-size:.9rem}
@media(max-width:820px){.nav-links{display:none}}

/* ============================ HERO ============================ */
/* ============================ HERO (image + navy scrim) ============================ */
.hero{position:relative;background:var(--blue);color:#fff;overflow:hidden}
/* image layer — swap --hero-image (see :root) to change art */
.hero-bg{position:absolute;inset:0;z-index:0;background-image:var(--hero-image);background-size:cover;background-position:center 30%}
/* navy scrim keeps white text legible over any photo; heavier on the left */
.hero-scrim{position:absolute;inset:0;z-index:1;background:linear-gradient(100deg,
   rgba(0,28,113,.94) 0%, rgba(0,28,113,.86) 40%, rgba(0,28,113,.62) 70%, rgba(0,28,113,.42) 100%)}
.hero-inner{position:relative;z-index:2;max-width:760px;padding:92px 0 96px}
.hero h1{color:#fff;font-family:var(--serif);font-weight:600;font-size:clamp(2.5rem,5.6vw,4rem);line-height:1.06;letter-spacing:-.01em;margin:0 0 16px;text-shadow:0 2px 22px rgba(0,10,40,.35)}
.hero .subhead{font-size:1.25rem;color:#EAF1FB;font-weight:400;max-width:560px;margin:0 0 34px}

/* ============================ SECTIONS ============================ */
.section{padding:72px 0}
.section--top {padding:10px 0px 72px 0;}
.section--tight{padding:52px 0}
.band-mist{background:var(--mist)}

/* STAT CARDS */
.stat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.stat-card{background:#fff;border:1px solid var(--line);border-top:5px solid var(--teal);padding:32px 26px 28px;text-align:center;transition:transform .2s ease,box-shadow .2s ease}
/*.stat-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover)}*/
.stat-num{font-family:var(--serif);font-weight:600;color:var(--blue);font-size:clamp(2.8rem,6vw,3.6rem);line-height:1;letter-spacing:-.02em}
.stat-num sup{font-size:.5em;top:-.7em}
.stat-num .plus{color:var(--teal-600)}
.stat-label{margin-top:14px;font-size:.94rem;font-weight:500;color:var(--ink);line-height:1.5}
.stat-label b{color:var(--blue);font-weight:700}

/* ====== GRAPH UNIT: a data box + a flush dark callout beneath it ====== */
.graph-unit{margin:8px 0 0}
.callout-dark{background:var(--blue);color:#fff;padding:26px 44px;font-weight:600;font-size:1.02rem;line-height:1.5;display:flex;align-items:center;gap:22px}
/* alert SVG tinted teal via mask, sized to fill the callout height */
.callout-dark .svg-ico{color:var(--teal);width:46px;height:46px;flex:0 0 auto}
.callout-dark b{color:#fff}
@media(max-width:820px){.callout-dark{padding:22px 24px;gap:16px}.callout-dark i{font-size:2.2rem}}

/* STRESS INFOGRAPHIC — anxious-sweat icon + CSS-transition bars */
.stress-panel{display:grid;grid-template-columns:240px 1fr;gap:8px 44px;align-items:center;background:var(--mist);border:1px solid var(--line);border-bottom:0;padding:40px 44px}
.stress-illus{display:flex;flex-direction:column;align-items:center;text-align:center;gap:14px}
/* orb outline + radial fill removed — SVG stands on its own */
.stress-illus .orb{width:132px;height:132px;display:grid;place-items:center;color:var(--blue)}
.stress-illus .orb .svg-ico{width:100%;height:100%;color:var(--blue)}
.stress-illus .cap{font-weight:700;color:var(--blue);font-size:1.02rem;max-width:210px}
.stress-lead{font-weight:600;color:var(--blue);margin-bottom:20px;font-size:1.05rem}
.bar-item{display:grid;grid-template-columns:130px 1fr 60px;align-items:center;gap:16px;margin-bottom:18px}
.bar-item:last-child{margin-bottom:0}
.bar-key{display:flex;align-items:center;gap:10px;font-weight:700;color:var(--blue)}
.bar-key .svg-ico{width:24px;height:24px;color:var(--teal-600);flex:0 0 auto}
.bar-track{height:22px;background:#E1E7EF;overflow:hidden}
/* inner bar animates width 0 -> --to via CSS transition (toggled by .go).
   NOTE: display:block is REQUIRED — a span is display:inline by default,
   and width has no effect on inline elements (that was the earlier bug). */
.bar-fill{display:block;height:100%;width:0;background:var(--teal);transition:width 1.3s var(--ease-bar)}
.bar-fill.go{width:var(--to)}
.bar-val{font-family:var(--serif);font-weight:600;color:var(--blue);text-align:right;font-size:1.2rem}
@media(max-width:820px){.stress-panel{grid-template-columns:1fr;gap:26px}.bar-item{grid-template-columns:110px 1fr 52px}}

/* ====== GENDER — editorial diverging (back-to-back) bar viz ====== */
.gender-viz{border:1px solid var(--line);border-bottom:0;padding:26px 34px 30px}
.gviz-head{display:grid;grid-template-columns:1fr 2px 1fr;align-items:end;margin-bottom:6px}
.gviz-head .gh{font-size:.8rem;/*letter-spacing:.12em;*/font-weight:700;display:flex;align-items:center;gap:8px}
.gviz-head .gh.women{color:var(--teal-600);justify-content:flex-start}
.gviz-head .gh.men{color:var(--blue);justify-content:flex-end}
.gviz-head .swatch{width:12px;height:12px;display:inline-block}
.gviz-head .women .swatch{background:var(--teal)}
.gviz-head .men .swatch{background:var(--blue)}
.gviz-item{padding:22px 0;border-top:1px solid var(--line)}
.gviz-label{text-align:center;font-weight:600;color:var(--blue-ink);margin-bottom:18px;font-size:1.05rem}
.gviz-row{display:grid;grid-template-columns:1fr 2px 1fr;align-items:center}
.g-axis{width:2px;height:44px;background:#C9D2DF;justify-self:center}
.g-side{display:flex;align-items:center;gap:16px}
.g-track{position:relative;flex:1;height:30px;background:#EAEEF4;overflow:hidden}
.g-bar{position:absolute;top:0;height:100%;width:0;transition:width 1.15s var(--ease-bar)}
.g-bar.go{width:var(--to)}
.women .g-bar{right:0;background:var(--teal)}
.men .g-bar{left:0;background:var(--blue)}
.g-num{font-family:var(--serif);font-weight:600;font-size:1.7rem;min-width:70px;line-height:1}
.women .g-num{color:var(--teal-600);text-align:left}
.men .g-num{color:var(--blue);text-align:right}
@media(max-width:640px){.g-num{font-size:1.35rem;min-width:52px}.g-track{height:26px}}

/* BIG-IDEA: 44% time-constraints callout on blue */
.barrier{background:var(--blue);color:#fff}
.barrier .wrap{display:grid;grid-template-columns:300px 1fr;gap:44px;align-items:center;padding:66px 0}
.barrier .fig{display:flex;flex-direction:column;align-items:center;text-align:center;border-right:2px solid rgba(255,255,255,.25);padding-right:20px}
.barrier .fig .clock{font-size:1.6rem;color:var(--teal);margin-bottom:10px}
.barrier .fig .clock .svg-ico{width:38px;height:38px;color:var(--teal)}
.barrier .fig .big{font-family:var(--serif);font-weight:600;color:var(--teal);font-size:clamp(4rem,10vw,6.4rem);line-height:.9}
.barrier .fig .cap{margin-top:12px;font-size:.95rem;color:#CFE0F5;max-width:230px}
.barrier .body h2{color:#fff!important;font-family:var(--serif);font-weight:600;font-size:clamp(1.7rem,3.4vw,2.4rem);line-height:1.18;margin:0 0 16px}
.barrier .body h2 b{color:var(--teal);font-weight:700}
.barrier .body p{color:#CFE0F5;margin-bottom:24px}
@media(max-width:820px){.barrier .wrap{grid-template-columns:1fr;gap:30px;text-align:center}.barrier .fig{border-right:0;border-bottom:2px solid rgba(255,255,255,.25);padding-right:0;padding-bottom:24px}}

/* ====== WEBINAR — floating white-bordered photo on solid blue ====== */
.webinar{background:var(--blue);color:#fff}
.webinar .section-title{color:#fff!important}
.webinar-grid{display:grid;grid-template-columns:1fr 400px;gap:48px;align-items:center}
.webinar-copy p{color:#DDE7F6}
.webinar-copy .lead-in{font-weight:600;color:#fff;margin-bottom:6px}
.webinar-list{list-style:none;padding:0;margin:18px 0 30px}
.webinar-list li{position:relative;padding-left:32px;margin-bottom:12px;color:#EAF0FA!important}
.webinar-list li i{position:absolute;left:0;top:5px;color:var(--teal)}
.webinar-photo{background:#fff;padding:18px}
.webinar-photo img{width:100%;height:auto;display:block}
@media(max-width:820px){.webinar-grid{grid-template-columns:1fr}.webinar-photo{order:-1;max-width:440px}}

/* ====== FEATURED QUOTE (rules + centered mark, per reference) ====== */
.quote-feature{background:#fff;padding:70px 0}
.qf-inner{max-width:1000px;margin:auto;padding:0 24px}
.qf-top{display:flex;align-items:center;gap:24px;margin-bottom:26px}
.qf-top .rule{flex:1;height:2px;background:var(--blue)}
/* larger mark, nudged down so the top rule crosses near its midpoint */
.qf-top .qmark{font-family:var(--serif);font-size:7rem;line-height:0;color:var(--teal);transform:translateY(30px)}
.qf-quote{font-family:var(--serif);font-weight:500;color:#3A3D63;font-size:clamp(1.4rem,2.8vw,2rem);line-height:1.4;margin:0 0 22px}
.qf-cite{font-weight:700;color:var(--teal-600);font-size:1.05rem}
.qf-role{color:var(--teal-600);font-weight:400;font-size:.98rem;margin-top:0px}
.qf-bottom{height:2px;background:var(--blue);margin-top:32px}

/* REPORT CHECKLIST */
.report-card{background:#fff;border:1px solid var(--line);padding:44px 40px}
.check-cols{columns:2;column-gap:44px;margin:14px 0 0;padding-left:0}
.check-cols li{list-style:none;position:relative;padding-left:32px;margin-bottom:14px;break-inside:avoid;color:var(--ink)}
.check-cols li i{position:absolute;left:0;top:5px;color:var(--orange)}
.report-card .foot{margin-top:10px;font-weight:600;color:var(--blue)}
@media(max-width:640px){.check-cols{columns:1}}

/* FINAL CTA / STICKY FOOTER */
.cta-band{background:var(--blue);color:#fff;text-align:center;padding:84px 0}
.cta-band h2{color:#fff!important;font-family:var(--serif)!important;font-weight:500!important;font-size:clamp(1.9rem,4vw,2.8rem)!important;line-height:1.15!important;max-width:760px;margin:0 auto 10px}
.cta-band p{color:#Bcd3f0;margin-bottom:28px}
.sticky-cta{position:fixed;left:0;right:0;bottom:0;z-index:60;transform:translateY(120%);transition:transform .3s ease;background:var(--blue-800);border-top:3px solid var(--teal)}
.sticky-cta.show{transform:translateY(0)}
.sticky-cta .wrap{max-width:1080px;margin:auto;padding:12px 24px;display:flex;align-items:center;justify-content:space-between;gap:16px}
.sticky-cta .txt{color:#fff;font-weight:700;font-size:.98rem}
.sticky-cta .txt span{display:block;font-weight:400;font-size:.8rem;color:#AFC3E8}

.btn-primary.btn-orange{
    background: linear-gradient(120deg, rgba(230, 84, 0, 1) 0%, rgba(230, 84, 0, 1) 45%, rgba(234, 109, 38, 1) 45%);
    background-position: left;
    background-size: 200%;
    color: #fff;
    border-color: transparent;
    border: none;
    border-radius: 0;
    padding: 1.25rem 3.0rem 1.25rem 1.25rem;
    font-weight: bold;
    transition: 0.5s ease-out;
    position: relative;
}
@media(max-width:560px){.sticky-cta .txt span{display:none}}

.demo-note{background:#0A237F;color:#cfe0ff;font-size:.78rem;text-align:center;padding:8px}
@media(max-width:820px){.stat-grid{grid-template-columns:1fr;max-width:420px;margin-inline:auto}}
@media(prefers-reduced-motion:reduce){*{scroll-behavior:auto}.bar-fill,.g-bar{transition:none}}