/* ============================================================
   CIRKLED IN — Design Tokens: Color + Type
   "One Portfolio. Endless Opportunities."
   ------------------------------------------------------------
   Authoritative tokens extracted from the official redesign
   (uploads/cirkledin_fullpage_v30.html). Fonts: Sora + DM Sans.
   Variable NAMES are kept stable so existing preview cards and
   UI kits re-skin automatically.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  /* ---------- BRAND CORE ----------
     values sourced from common-landing-style.css tokens */
  --ci-blue:        var(--brand-blue);       /* primary brand blue — links, nav, brand */
  --ci-blue-700:    var(--brand-blue-dark);  /* brand blue dark — hover, deep surfaces */
  --ci-blue-500:    #2566A8;  /* mid step */
  --ci-sky:         var(--brand-cyan);       /* cyan accent — highlights, gradients */
  --ci-navy:        var(--navy);             /* darkest navy */
  --ci-navy-2:      var(--navy-2);
  --ci-navy-3:      var(--navy-3);           /* heading ink on light */
  --ci-navy-4:      var(--navy-4);

  /* ---------- GOLD (primary accent / CTA) ---------- */
  --ci-gold:        var(--brand-gold);       /* hero CTAs, highlight words, awards */
  --ci-gold-dark:   var(--brand-gold-dark);  /* gold hover */
  /* legacy aliases kept for older cards */
  --ci-orange:      var(--ci-gold);
  --ci-yellow:      #FAD02C;  /* bright highlight (sparingly) */

  /* Brand gradients */
  --ci-gradient:        linear-gradient(135deg, #0094DE 0%, #185FA5 60%, #124d87 100%);
  --ci-gradient-deep:   linear-gradient(160deg, #1B3A6B 0%, #0F2E5A 55%, #0A1628 100%);
  --ci-gradient-hero:   linear-gradient(120deg, #1670bd 0%, #185FA5 45%, #124d87 100%);

  /* ---------- CATEGORY PALETTE ----------
     Achievement / opportunity categories — echo the multicolored
     dashed photo-rings in the brand artwork. */
  --cat-academics:  #185FA5;  /* blue   */
  --cat-sports:     #1fb6a6;  /* teal   */
  --cat-volunteer:  #e8513b;  /* red    */
  --cat-arts:       #F5A623;  /* gold   */
  --cat-leadership: #7c5cd6;  /* violet */
  --cat-music:      #F2C200;  /* yellow */
  --cat-projects:   #2bb24c;  /* green  */

  /* ---------- NEUTRALS (ink + slate) ----------
     --ink and --slate-* are already defined in common-landing-style.css :root */
  --fg1:        var(--ink);  /* primary text — ink */
  --fg2:        var(--slate-700);  /* secondary — slate 700 */
  --fg3:        var(--slate-500);  /* tertiary / captions — slate 500 */
  --fg-muted:   var(--slate-400);  /* placeholder / disabled */
  --fg-on-dark: #ffffff;
  --fg-on-dark-soft: rgba(255,255,255,.78);

  --bg1:        #ffffff;  /* card / surface */
  --bg2:        #F8FAFC;  /* page background — slate 50 */
  --bg3:        #F1F5F9;  /* sunken / hover wash — slate 100 */
  --bg-warm:    #FAFAF7;  /* warm off-white section band */
  --bg-tint-blue:  #E8F3FF;  /* selected / info wash (tint-blue) */
  --bg-tint-blue-2:#F0F7FF;
  --bg-tint-yellow:#FFF7DA;

  --border:       #E2E8F0;  /* default hairline — slate 200 */
  --border-strong:#CBD5E1;  /* slate 300 */
  --border-blue:  #BFDBFE;

  /* ---------- SEMANTIC STATUS ---------- */
  --success:    #2bb24c;
  --warning:    #F5A623;
  --danger:     #e8513b;
  --info:       #185FA5;

  /* ---------- TYPE FAMILIES ---------- */
  --font-display: 'Sora', system-ui, -apple-system, sans-serif;   /* headings / brand / CTAs */
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;/* UI + prose */

  /* ---------- TYPE SCALE ---------- */
  --t-display:  3.25rem;   /* 52px — hero (Sora 800) */
  --t-h1:       2.5rem;    /* 40px */
  --t-h2:       1.875rem;  /* 30px */
  --t-h3:       1.375rem;  /* 22px */
  --t-h4:       1.125rem;  /* 18px */
  --t-body:     1rem;      /* 16px */
  --t-sm:       0.875rem;  /* 14px */
  --t-xs:       0.75rem;   /* 12px */

  --lh-tight:   1.1;
  --lh-snug:    1.3;
  --lh-body:    1.6;

  --fw-reg: 400;
  --fw-med: 500;
  --fw-semi: 600;
  --fw-bold: 700;
  --fw-x: 800;

  /* ---------- RADII (from source) ---------- */
  --r-sm:   var(--radius-sm);  /* buttons, nav pills, inputs */
  --r-md:   var(--radius-md);  /* dropdowns, small cards */
  --r-lg:   var(--radius-lg);  /* cards */
  --r-xl:   var(--radius-xl);  /* hero panels, feature media */
  --r-pill: 999px;  /* badges, chips */

  /* ---------- SHADOWS (cool, soft) ---------- */
  --sh-xs: var(--shadow-sm);
  --sh-sm: var(--shadow-sm);
  --sh-md: var(--shadow-md);
  --sh-lg: var(--shadow-lg);
  --sh-blue: 0 12px 36px rgba(24,95,165,.18);
  --sh-gold: 0 8px 24px rgba(245,166,35,.30);

  /* ---------- SPACING (4px base) ---------- */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 88px;

  --container: 1200px;
  --nav-h: 68px;
}

/* ============================================================
   SEMANTIC ELEMENT STYLES
   ============================================================ */
.ci-prose { font-family: var(--font-body); color: var(--fg1); line-height: var(--lh-body); }

.ci-display, .ci-h1, .ci-h2, .ci-h3, .ci-h4 {
  font-family: var(--font-display);
  color: var(--ci-navy-3);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  margin: 0;
}
.ci-display { font-size: var(--t-display); font-weight: var(--fw-x); line-height: 1.05; }
.ci-h1 { font-size: var(--t-h1); font-weight: var(--fw-x); }
.ci-h2 { font-size: var(--t-h2); font-weight: var(--fw-x); }
.ci-h3 { font-size: var(--t-h3); font-weight: var(--fw-bold); line-height: var(--lh-snug); }
.ci-h4 { font-size: var(--t-h4); font-weight: var(--fw-bold); line-height: var(--lh-snug); }

/* gold highlight word inside a heading, e.g. <h1>One Portfolio. <em>Endless Opportunities.</em></h1> */
.ci-display em, .ci-h1 em, .ci-h2 em { color: var(--ci-gold); font-style: normal; }
.ci-accent { color: var(--ci-blue); }

.ci-eyebrow, .ci-sec-label {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--t-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ci-sky);
}
.ci-lead { font-size: var(--t-h4); color: var(--fg3); line-height: var(--lh-body); font-family: var(--font-body); }
.ci-p { font-size: var(--t-body); color: var(--fg2); line-height: var(--lh-body); font-family: var(--font-body); }
.ci-small { font-size: var(--t-sm); color: var(--fg3); }
.ci-caption { font-size: var(--t-xs); color: var(--fg3); }
a.ci-link { color: var(--ci-blue); text-decoration: none; font-weight: var(--fw-semi); }
a.ci-link:hover { color: var(--ci-blue-700); text-decoration: underline; }

/* ---------- Shared heading classes (ported with the hub diagram section) ---------- */
.sec-label{font-family:var(--font-display);font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--ci-sky);margin-bottom:10px;display:block;}
.sec-label-light{color:rgba(255,255,255,.6);}
.sec-h2{font-family:var(--font-display);font-size:clamp(26px,3.2vw,40px);font-weight:800;color:var(--ci-navy-3);letter-spacing:-0.02em;margin-bottom:14px;}
.sec-sub{font-size:16px;color:var(--fg3);line-height:1.7;}
.reveal-d1{transition-delay:.1s;}.reveal-d2{transition-delay:.2s;}.reveal-d3{transition-delay:.3s;}.reveal-d4{transition-delay:.4s;}
/* ============================================================
   Cirkled In — Schools page styles
   Built on Bootstrap 5.3 + design tokens (tokens.css).
   Only page-specific rules live here; tokens supply color/type.
   ============================================================ */

/* ---------- Base ---------- */
* { box-sizing: border-box; }
body {
  font-family: var(--font-body);
  color: var(--fg1);
  background: #fff;
  margin: 0;
}
img { max-width: 100%; height: auto; }
a { color: var(--ci-blue); text-decoration: none; }
a:hover { color: var(--ci-blue-700); }

.skip-link {
  position: absolute; left: 8px; top: -48px;
  background: var(--ci-blue); color: #fff;
  padding: 10px 16px; border-radius: var(--r-sm); z-index: 2000;
  transition: top .2s ease;
}
.skip-link:focus { top: 8px; color: #fff; }

:focus-visible {
  outline: 3px solid var(--ci-sky);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Section rhythm ---------- */
.section { padding: 52px 0; }
.section.pt-0 { padding-top: 0; }
.section.pb-0 { padding-bottom: 0; }
.band-slate { background: var(--bg2); }
.band-warm { background: var(--bg-warm); }
.border-top-hair { border-top: 1px solid var(--border); }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-sub { margin-top: 16px; }
.ci-h2 { font-size: clamp(1.6rem, 4vw, 2.125rem); text-wrap: balance; }
.ci-display { font-size: clamp(2rem, 6vw, 3rem); }

/* ---------- Buttons ---------- */
.btn-ci {
  font-family: var(--font-display);
  font-weight: var(--fw-x);
  border-radius: var(--r-sm);
  border: none;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px;
  justify-content: center;
  transition: transform .15s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
}
.btn-ci.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-ci:active { transform: scale(.98); }
.btn-ci-gold { background: var(--ci-gold); color: var(--ci-navy); box-shadow: var(--sh-gold); }
.btn-ci-gold:hover { background: var(--ci-gold-dark); color: var(--ci-navy); transform: translateY(-2px); }
.btn-ci-blue { background: var(--ci-blue); color: #fff; }
.btn-ci-blue:hover { background: var(--ci-blue-700); color: #fff; transform: translateY(-2px); }
.btn-ci-white { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-ci-white:hover { background: rgba(255,255,255,.22); color: #fff; }
.btn-ci-ghost { background: #fff; color: var(--ci-blue-700); border: 1.5px solid var(--border-strong); }
.btn-ci-ghost:hover { border-color: var(--ci-blue); color: var(--ci-blue); }

/* ---------- Hero ---------- */
.hero{
    width: 100%;
    height: calc(82vh);
    min-height: 650px;
    background-image: url('https://d2zogq81rfgh3u.cloudfront.net/cirkledin/landing-page/Default-Brand-half-circle.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    margin-top: 60px;
  
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 40, 120, 0.50);
    pointer-events: none;
    z-index: 0;
}

.hero-inner { position: relative; padding: 60px 12px 60px; }
.hero-copy { color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  padding: 7px 14px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 22px;
}
.hero-title { color: #fff; margin-bottom: 20px; }
.hero-title em { color: var(--ci-gold); font-style: normal; }
.hero-lead { font-size: clamp(14px,1.1vw,16px); line-height: 1.6; opacity: .92; margin-bottom: 26px; max-width: 520px; }
.hero-bullets { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 13px; max-width: 520px; }
.hero-bullet { display: flex; gap: 12px; align-items: flex-start; font-size: clamp(14px,1.1vw,16px); font-weight: 600; line-height: 1.5; }
.hero-check { width: 24px; height: 24px; border-radius: 50%; background: var(--ci-gold); display: grid; place-items: center; flex: none; margin-top: 1px; }

.hero-media { position: relative; }
.hero-img { width: 100%; }
.hero-stat-card {
  position: absolute; bottom: -85px; left: -24px;
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  padding: 14px 22px; display: flex; align-items: center; gap: 14px;
}
.avatar-stack { display: flex; }
.avatar-stack img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #fff; }
.avatar-stack img + img { margin-left: -12px; }
.hero-stat-num { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--ci-blue-700); line-height: 1; }
.hero-stat-sub { font-size: 13px; color: var(--fg3); margin-top: 3px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: #fff; border-bottom: 1px solid var(--border); }
.trust-list {
  list-style: none; margin: 0; padding: 18px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--fg2); }

/* ---------- Pillars ---------- */
.pillar-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 26px 20px; height: 100%;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--border-blue); }
.pillar-icon { width: 46px; height: 46px; border-radius: var(--r-md); display: grid; place-items: center; font-size: 22px; margin-bottom: 16px; }
.pillar-stat { font-family: var(--font-display); font-weight: 800; font-size: 26px; line-height: 1; margin-bottom: 6px; }
.pillar-title { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--ci-navy-3); margin: 0 0 8px; }
.pillar-desc { margin: 0; font-size: 13.5px; color: var(--fg2); line-height: 1.55; }

/* ---------- Hub diagram (Opportunities) ---------- */
.hub-section{
  background:linear-gradient(135deg,var(--ci-navy-2) 0%,var(--ci-blue) 50%,var(--ci-navy-3) 100%);
  padding:80px 0;
  position:relative;overflow:hidden;
}
.hub-section::before{content:'';position:absolute;inset:0;background:url('https://d2zogq81rfgh3u.cloudfront.net/cirkledin/landing-page/ci_brand_bg-large.png') center/cover no-repeat;opacity:.18;pointer-events:none;}
.hub-header{text-align:center;margin-bottom:52px;position:relative;z-index:1;}
.hub-diagram-wrap{position:relative;z-index:1;display:flex;justify-content:center;padding:0 20px;}

@media(max-width:767px){
  /* Show SVG diagram on mobile — scaled down */
  .hub-diagram-wrap{display:block;padding:0 4px;}
  .hub-svg-new{width:100%;height:auto;}
}

.hub-svg-new { max-width:1100px; margin:0 auto; display:block; }
.hub-node {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  cursor: pointer;
}
.hub-node:hover {
  transform: scale(1.08);
}
/* Glow on wrapper, not on scaling element — prevents shaking */
.hub-node-outer {
  transition: filter 0.25s ease;
}
.hub-node-outer:hover {
  filter: drop-shadow(0 0 12px rgba(245,166,35,0.7));
}
/* Ensure full circle is clickable including stroke-only areas */
.hub-node-hit {
  fill: transparent;
  stroke: none;
  cursor: pointer;
}
.hub-tooltip-new {
  position:absolute; background:rgba(10,22,40,0.96);
  border:1.5px solid #F5A623; border-radius:10px;
  padding:10px 14px; pointer-events:none; opacity:0;
  transition:opacity 0.15s ease; z-index:20; max-width:220px;
  box-shadow:0 8px 24px rgba(0,0,0,0.4);
}
.hub-tooltip-new.visible { opacity:1; }
.hub-tooltip-title-new { font-family:Sora,sans-serif; font-size:13px; font-weight:800; color:#F5A623; margin-bottom:4px; }
.hub-tooltip-text-new  { font-family:Sora,sans-serif; font-size:11px; color:rgba(255,255,255,0.85); line-height:1.5; }
.btn-hub-gold-main {
  font-family:Sora,sans-serif; font-size:15px; font-weight:800;
  padding:14px 36px; border-radius:8px;
  background:#F5A623; color:#0A1628 !important;
  border:none; text-decoration:none; display:inline-block;
  transition:all .2s; box-shadow:0 4px 16px rgba(245,166,35,0.4);
}
.btn-hub-gold-main:hover {
  background:#e09518; transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(245,166,35,0.5);
}

/* ---------- Feature rows ---------- */
.feature-eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.check-list { list-style: none; padding: 0; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 13px; }
.check-list-lg { gap: 18px; }
.check-item { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--fg1); font-weight: 600; line-height: 1.5; }
.check-badge { width: 40px; height: 40px; border-radius: var(--r-md); display: grid; place-items: center; flex: none; }
.check-list-lg .check-badge { background: var(--bg-tint-blue); color: var(--ci-blue); }
.check-list-lg .check-item { align-items: center; }
.check-list-teal .check-badge { width: 24px; height: 24px; border-radius: 50%; background: #e3f7f4; color: var(--ci-blue); margin-top: 1px; }
.check-list-teal .check-item { gap: 11px; }

.feature-media { position: relative; }
.feature-media > img, .feature-media .dash-card { position: relative; }
.feature-media::before {
  content: ""; position: absolute; inset: 0;
  border-radius: var(--r-xl); opacity: .08;
}
/* .tilt-blue::before { background: var(--cat-academics); transform: rotate(2deg); } */
.tilt-teal::before { background: var(--cat-sports); transform: rotate(-2deg); }
.tilt-violet::before { background: var(--cat-leadership); opacity: .07; transform: rotate(2deg); }
.feature-media > img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--sh-md); display: block; background: #fff; }

/* ---------- Dashboard card ---------- */
.dash-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--sh-lg); padding: 26px; }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.dash-title { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--ci-navy-3); }
.dash-live { font-size: 11px; font-weight: 700; color: var(--success); background: #eafaef; padding: 5px 10px; border-radius: var(--r-pill); }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.dash-stat { border-radius: var(--r-md); padding: 14px; }
.dash-stat-num { font-family: var(--font-display); font-weight: 800; font-size: 26px; line-height: 1; }
.dash-stat-label { font-size: 11.5px; color: var(--fg3); margin-top: 4px; font-weight: 600; }
.dash-label { font-size: 12px; font-weight: 700; color: var(--fg3); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }
.dash-bars { display: flex; align-items: flex-end; gap: 14px; height: 120px; }
.dash-bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.dash-bar { width: 100%; border-radius: 6px 6px 0 0; background: var(--ci-gradient); transition: height .8s cubic-bezier(.2,.7,.3,1); }
.dash-bar-label { font-size: 11px; color: var(--fg3); font-weight: 600; }

/* ---------- Icon points ---------- */
.icon-points { display: flex; flex-direction: column; gap: 18px; margin: 24px 0 28px; }
.icon-point { display: flex; gap: 14px; align-items: flex-start; }
.icon-point-badge { width: 40px; height: 40px; border-radius: var(--r-md); background: #e8f3ff; display: grid; place-items: center; flex: none; color: var(--ci-blue); }
.icon-point-title { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--ci-blue-700); margin: 0 0 4px; }
.icon-point-desc { margin: 0; font-size: 15px; color: var(--fg2); line-height: 1.55; }

/* ---------- Student buy-in ---------- */
.love-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px 26px; height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.love-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.love-icon { width: 52px; height: 52px; border-radius: var(--r-md); display: grid; place-items: center; font-size: 26px; background: #fff; border: 1px solid var(--border); margin-bottom: 18px; }
.love-title { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--ci-navy-3); margin: 0 0 8px; }
.love-desc { margin: 0; font-size: 14.5px; color: var(--fg2); line-height: 1.6; }

/* ---------- Stats band ---------- */
.stats-band { position: relative; overflow: hidden; background: var(--ci-gradient-deep); padding: 64px 0; }
.stats-bg { position: absolute; inset: 0; background: url(https://d2zogq81rfgh3u.cloudfront.net/cirkledin/landing-page/ci_brand_bg-large.png) center/cover; opacity: .28; }
.stats-band .container { position: relative; }
.stat-cell { text-align: center; color: #fff; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 2.875rem); line-height: 1; }
.stat-lbl { font-size: 14.5px; opacity: .85; margin-top: 10px; font-weight: 600; }

/* ---------- Testimonials ---------- */
.testi-wrap { max-width: 880px; }
.quote-mark { margin-bottom: 14px; }
.testi-quote {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.15rem, 3vw, 1.5rem);
  line-height: 1.5; color: var(--ci-navy-3); margin: 0 0 30px; text-wrap: pretty;
}
.testi-person { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-avatar { width: 56px; height: 56px; border-radius: 50%; padding: 2px; background: var(--ci-gradient); flex: none; }
.testi-avatar > span { display: block; width: 100%; height: 100%; border-radius: 50%; background-size: cover; background-position: center; }
.testi-name-row { display: flex; align-items: center; gap: 9px; }
.testi-name { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--fg1); }
.testi-tag { font-family: var(--font-display); font-weight: 700; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ci-blue-700); background: var(--bg-tint-blue); padding: 3px 9px; border-radius: var(--r-pill); }
.testi-role { display: block; font-size: 13.5px; color: var(--fg3); line-height: 1.4; max-width: 340px; margin-top: 3px; }
.testi-dots { display: flex; justify-content: center; gap: 9px; margin-top: 28px; }
.testi-dot { width: 10px; height: 10px; border-radius: 999px; border: none; cursor: pointer; background: var(--border-strong); padding: 0; transition: width .2s, background .2s; }
.testi-dot.is-active { width: 28px; background: var(--ci-blue); }


/* ---------- CTA band ---------- */
.cta-outer { padding: 0px 0 30px; }
.cta-band {
  position: relative;
  overflow: hidden;
  /* background: var(--ci-gradient); */
   background:linear-gradient(135deg,var(--brand-blue) 0%,#0d3d6e 100%);
  /* border-radius: var(--r-xl); */
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--sh-blue);
}
.cta-bg { position: absolute; inset: 0; background: url(https://d2zogq81rfgh3u.cloudfront.net/cirkledin/landing-page/ci_brand_bg-large.png) center/cover; opacity: .4; }
.cta-inner { position: relative; color: #fff; }
.cta-title { color: #fff; margin-bottom: 14px; }
.cta-sub { font-size: 18px; opacity: .92; margin-bottom: 30px; max-width: 560px; line-height: 1.6; }

/* ---------- Lead modal ---------- */
#leadModal .modal-content { border: none; border-radius: 26px; overflow: hidden; box-shadow: var(--sh-lg); }
#leadModal .modal-dialog {transition: .45s cubic-bezier(.16,1,.3,1); }
#leadModal .modal.show .modal-dialog { transform: none; }

@keyframes bg { 50% { background-position: 100% 50%; } }
@keyframes f { 50% { transform: translateY(-15px); } }

.lead-modal { border: none; border-radius: 26px; overflow: hidden; box-shadow: var(--sh-lg); }
.lead-modal-head { position: relative; background: linear-gradient(135deg, var(--ci-navy), var(--ci-blue), var(--ci-sky)); background-size: 300% 300%; animation: bg 8s infinite; color: #fff; padding: 34px 30px; overflow: hidden; }
.lead-modal-head > * { position: relative; z-index: 1; }
.lead-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,255,255,.18); color: #fff; font-size: 20px; line-height: 1; display: grid; place-items: center; z-index: 2; }
.lead-close:hover { background: rgba(255,255,255,.3); }
.lead-eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; margin: 0 0 8px; }
.lead-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2.5vw, 32px); letter-spacing: -.02em; margin: 0 0 8px; color: #fff; }
.lead-sub { margin: 0; font-size: 14.5px; line-height: 1.55; opacity: .92; }

.demo-header { position: relative; }
.blob { position: absolute; border-radius: 50%; background: rgba(255,255,255,.12); animation: f 6s ease-in-out infinite; }
.b1 { width: 140px; height: 140px; right: -20px; top: -40px; }
.b2 { width: 70px; height: 70px; left: 40px; bottom: -20px; animation-delay: 1s; }

.lead-form { padding: 26px 30px 30px; display: flex; flex-direction: column; gap: 16px; }
.form-field { display: flex; flex-direction: column; }
.form-field label { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--fg1); margin-bottom: 6px; }
.form-field .req { color: var(--cat-volunteer); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border-strong);
  border-radius: var(--r-sm); font-family: var(--font-body); font-size: 15px; color: var(--fg1); background: #fff;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--ci-blue); outline: none; box-shadow: 0 0 0 3px var(--bg-tint-blue); }
.form-field textarea { resize: vertical; }
.form-field.is-invalid input { border-color: var(--danger); }
.field-error { color: var(--cat-volunteer); font-size: 12.5px; font-weight: 600; margin: 5px 0 0; min-height: 0; }
.lead-fineprint { margin: 0; text-align: center; font-size: 12px; color: var(--fg3); }
.lead-success { padding: 44px 30px; text-align: center; }
.lead-success-icon { width: 60px; height: 60px; border-radius: 50%; background: #eafaef; display: grid; place-items: center; margin: 0 auto 18px; }
.lead-success .ci-h4 { margin-bottom: 8px; }
.lead-success .ci-p { max-width: 360px; margin: 0 auto 22px; }

/* ---------- Scroll-reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .dash-bar { transition: none; }
  html { scroll-behavior: auto; }
}
html { scroll-behavior: smooth; }
section.section.border-top-hair .press-bar , section.section.border-top-hair .bar{
    border-bottom: none;
}
section.section.border-top-hair .bar{
    background: none;
}
/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .section { padding: 60px 0; }
  .hero { min-height: 0; }
  .hero-inner { padding: 48px 12px 60px; }
  .hero-stat-card { left: 0; }
  .trust-list { justify-content: flex-start; }
}
@media (max-width: 575.98px) {
  .hero-stat-card { position: static; margin-top: 20px; left: auto; }
  .press-row { gap: 24px; }
  .press-item { font-size: 17px; }
}
/* @media (min-width: 576px) {
    .modal-dialog {
        max-width: 600px
    }
} */
 .stats-bar{
  position: inherit;
  background: rgb(0 47 99);
 }
 h2.ci-h2.cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}