:root{
  --bg:#f4f5f7;
  --card:#ffffff;
  --ink:#0c121f;
  --muted:#6b7280;

  --line:rgba(30,45,69,0.14);
  --line-strong:rgba(30,45,69,0.20);

  --teal:#0f766e;
  --teal-hover:#115e59;

  --navy:#1e2d45;
  --shadow:0 16px 44px rgba(12,18,31,0.12);
  --shadow-soft:0 10px 26px rgba(12,18,31,0.10);

  --r-xl:22px;
  --r-lg:16px;
  --r-md:12px;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  scroll-padding-top:72px; /* 72px topbar + ~16px breathing room */
}
section[id]{scroll-margin-top:72px;}
body{
  margin:0;
  background:
    radial-gradient(1100px 520px at 15% 0%, rgba(15,118,110,0.10), transparent 62%),
    radial-gradient(1100px 520px at 85% 0%, rgba(12,18,31,0.10), transparent 62%),
    var(--bg);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  color:var(--ink);
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
button{font-family:inherit}

.container{
  width:100%;
  max-width:1120px;
  margin:0 auto;
  padding:0 18px;
}
 
/* Typography */
.h2{
  margin:0;
  font-size:2.05rem;
  letter-spacing:-0.02em;
  line-height:1.12;
}
.h3{
  margin:0;
  font-size:1.18rem;
  letter-spacing:-0.01em;
  line-height:1.25;
}
.p{
  margin:10px 0 0 0;
  color:rgba(12,18,31,0.86);
  line-height:1.55;
}
.note{
  margin-top:12px;
  color:rgba(107,114,128,0.95);
  font-size:0.95rem;
  line-height:1.45;
}
.subhead{
  margin:16px 0 0 0;
  color:rgba(12,18,31,0.82);
  font-size:1.05rem;
  line-height:1.55;
  max-width:46ch;
}

/* On-dark system */
.on-dark{ color:rgba(244,245,247,0.96) }
.on-dark-muted{ color:rgba(244,245,247,0.72) }
.bullets.on-dark li{ color:rgba(244,245,247,0.90) }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  height:44px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  font-size:0.98rem;
  letter-spacing:-0.01em;
  transition:transform .12s ease, background .12s ease, border-color .12s ease, color .12s ease, box-shadow .12s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background:var(--teal);
  color:#fff;
  box-shadow:0 10px 22px rgba(15,118,110,0.18);
}
.btn-primary:hover{background:var(--teal-hover)}
.btn-outline{
  background:transparent;
  border-color:rgba(30,45,69,0.28);
  color:rgba(12,18,31,0.92);
}
.btn-outline:hover{
  border-color:rgba(30,45,69,0.40);
  background:rgba(30,45,69,0.04);
}
.btn-ghost{
  background:rgba(255,255,255,0.75);
  border-color:rgba(30,45,69,0.16);
  color:rgba(12,18,31,0.92);
}
.btn-ghost:hover{
  background:rgba(255,255,255,0.92);
  border-color:rgba(30,45,69,0.22);
}
.w-full{width:100%}

.text-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:rgba(30,45,69,0.92);
  font-weight:700;
  padding:10px 2px;
}
.text-link:hover{color:rgba(15,118,110,1)}

/* Button hierarchy on dark sections */
.band-dark .btn-outline{
  border-color:rgba(244,245,247,0.34);
  color:rgba(244,245,247,0.90);
}
.band-dark .btn-outline:hover{
  border-color:rgba(244,245,247,0.46);
  background:rgba(244,245,247,0.08);
}
.band-dark .btn-ghost{
  background:rgba(244,245,247,0.10);
  border-color:rgba(244,245,247,0.20);
  color:rgba(244,245,247,0.92);
}
.band-dark .btn-ghost:hover{
  background:rgba(244,245,247,0.14);
  border-color:rgba(244,245,247,0.28);
}

/* Reveal */
.reveal{
  opacity:0;
  transform:translateY(8px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.is-in{
  opacity:1;
  transform:translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; transition:none}
}

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(244,245,247,0.72);
  border-bottom:1px solid rgba(30,45,69,0.10);
  backdrop-filter: blur(10px);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  height:72px;
}
.brand{
  display:flex;
  align-items:center;
  gap:11px;
  flex:0 0 auto;
  min-height:44px; /* tap target without increasing visual height */
}
.brand-logo{
  height:42px;
  width:auto;
  border-radius:999px;
}
.nav{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:16px;
}
.nav-link{
  font-weight:700;
  color:rgba(12,18,31,0.78);
  font-size:0.95rem;
  padding:10px 8px;
  border-radius:999px;
}
.nav-link:hover{
  color:rgba(12,18,31,0.92);
  background:rgba(255,255,255,0.55);
}
.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Fix wrapping: collapse earlier */
.nav-toggle{
  display:none;
  height:40px;
  width:44px;
  border-radius:12px;
  border:1px solid rgba(30,45,69,0.16);
  background:rgba(255,255,255,0.72);
}
.nav-toggle span{
  display:block;
  height:2px;
  background:rgba(12,18,31,0.72);
  margin:6px 10px;
  border-radius:999px;
}
.mobile-nav{
  border-top:1px solid rgba(30,45,69,0.10);
  background:rgba(244,245,247,0.92);
}
.mobile-nav-inner{
  padding:10px 0 16px 0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mobile-link{
  padding:12px 12px;
  border-radius:14px;
  font-weight:750;
  color:rgba(12,18,31,0.82);
  background:rgba(255,255,255,0.62);
  border:1px solid rgba(30,45,69,0.10);
}
.mobile-actions{
  display:grid;
  gap:10px;
  margin-top:4px;
}
body.no-scroll{ overflow:hidden; }

@media (max-width: 1040px){
  .nav{display:none}
  .nav-toggle{display:inline-block}
}

/* Hero */
.hero{
  position:relative;
  padding:22px 0 22px 0;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 20% 15%, rgba(15,118,110,0.10), transparent 62%),
    radial-gradient(900px 420px at 85% 10%, rgba(12,18,31,0.10), transparent 62%);
  pointer-events:none;
}
.hero-inner{
  position:relative;
  display:block;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1fr 0.95fr;
  grid-template-rows:auto auto;
  column-gap:44px;
  row-gap:14px;
  align-items:start;
}
.hero-eyebrow{
  grid-column:1;
  grid-row:1;
  position:relative;
  z-index:30;
}
.hero-grid > .hero-copy{grid-column:1; grid-row:2; max-width:720px;}
.hero-proof{
  position:relative;
  z-index:5;
  /* keep the rest of your existing properties */
  grid-column:2;
  grid-row:2;
  align-self:stretch;
  padding-left:28px;
  border-left:1px solid rgba(30,45,69,0.10);
}
.hero-proof .proof-inner{
  height:100%;
  display:flex;
  flex-direction:column;
}
.hero-proof .stats{
  flex:1;
  align-content:end;
}
@media (max-width: 980px){
  .hero-grid{
    grid-template-columns:1fr;
    grid-template-rows:auto auto auto;
  }
  .hero-grid > .hero-copy{max-width:none;}
  .hero-proof{
    grid-column:1;
    grid-row:3;
    padding-left:0;
    border-left:0;
    margin-top:18px;
  }
  .hero-proof .proof-inner{height:auto;}
}

.eyebrow{
  display:block;
  font-weight:800;
  color:rgba(30,45,69,0.86);
  font-size:0.95rem;
  margin-bottom:12px;
}
.hero h1{
  margin:0;
  font-size:2.55rem;
  line-height:1.05;
  letter-spacing:-0.03em;
  max-width:24ch;
}
.hero-actions{
  margin-top:20px;
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:nowrap;
}

@media (max-width: 520px){
  .hero-actions{flex-wrap:wrap}
}
.cycle-inline{
  margin-top:20px;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  padding:13px 16px;
  border-radius:999px;
  background:rgba(255,255,255,0.78);
  border:1px solid rgba(30,45,69,0.12);
  box-shadow:var(--shadow-soft);
  max-width:max-content;
}
.cycle-label{
  font-weight:850;
  color:rgba(30,45,69,0.86);
  margin-right:4px;
}
.cycle-step{
  font-weight:750;
  color:rgba(12,18,31,0.88);
}
.cycle-arrow{ color:rgba(30,45,69,0.45) }

@media (max-width: 760px){
  .hero{padding:28px 0 18px 0}
  .hero h1{font-size:2.1rem; max-width:unset}
  .subhead{max-width:unset}
}

/* Tooltip */
.tip{
  position:relative;
  display:inline-flex;
  align-items:center;
}
.q{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
  border-radius:999px;
  border:1px solid rgba(30,45,69,0.24);
  background:rgba(255,255,255,0.70);
  color:rgba(30,45,69,0.84);
  font-weight:900;
  font-size:0.78rem;
  line-height:1;
  cursor:pointer;
  padding:0;
}
.tooltip{
  position:absolute;
  left:0;
  top:28px;
  min-width:240px;
  max-width:280px;
  padding:10px 12px;
  background:rgba(12,18,31,0.96);
  color:rgba(244,245,247,0.94);
  border:1px solid rgba(244,245,247,0.14);
  border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,0.25);
  font-size:0.88rem;
  line-height:1.35;
  opacity:0;
  transform:translateY(6px);
  pointer-events:none;
  transition:opacity .15s ease, transform .15s ease;
  z-index:80;
}
.tip:hover .tooltip,
.tip:focus-within .tooltip{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}


/* Hero tooltip formatting (scoped to top section only) */
.hero .tooltip{
  min-width:300px;
  max-width:420px;
}
.hero .tooltip .tt-title{
  font-weight:950;
  letter-spacing:-0.01em;
  margin-bottom:8px;
}
.hero .tooltip .tt-item{
  margin:7px 0;
}
.hero .tooltip .tt-head{
  margin:0 0 8px 0;
}

.hero .tooltip .tt-head-label{
  display:inline-block;
  font-weight:950;
  letter-spacing:-0.01em;
  padding-bottom:3px;
  border-bottom:1px solid rgba(244,245,247,0.22);
}
/* Hero tooltip sources line (scoped to top section only) */
.hero .tooltip .tt-foot{
  margin-top:10px;
  font-size:0.76rem;
  opacity:0.80;
  line-height:1.25;
}

.hero .tooltip .tt-ref{
  font-weight:900;
  opacity:0.90;
} 

.hero .tooltip .tt-foot a{
  color:inherit;
  text-decoration:underline;
  text-underline-offset:2px;
}


/* MOBILE: keep hero tooltip on-screen */
@media (max-width: 640px){
  .hero .tooltip{
    position: fixed;
    left: calc(env(safe-area-inset-left) + 12px);
    top: calc(env(safe-area-inset-top) + 92px);

    min-width: 0;
    width: min(92vw, 420px);
    max-width: calc(100vw - 24px);

    transform: translateY(6px);
    max-height: calc(80vh - env(safe-area-inset-top));
    overflow: auto;
    z-index: 999;
  }

  .hero .tip:hover .tooltip,
  .hero .tip:focus-within .tooltip{
    transform: translateY(0);
  }
}




/* Proof band */
.proof{
  padding:20px 0 36px 0;
}
.proof-inner{
  border-radius:var(--r-xl);
  background:rgba(255,255,255,0.78);
  border:1px solid rgba(30,45,69,0.12);
  box-shadow:var(--shadow-soft);
  padding:22px 22px;
}
.proof-title{
  font-weight:900;
  letter-spacing:-0.01em;
  color:rgba(30,45,69,0.88);
  margin-bottom:12px;
}
.stats{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}
.stat{
  padding:14px 14px;
  border-radius:16px;
  background:rgba(244,245,247,0.60);
  border:1px solid rgba(30,45,69,0.10);
}
.stat-value{
  font-weight:950;
  letter-spacing:-0.02em;
  font-size:1.20rem;
}
.stat-label{
  margin-top:6px;
  color:rgba(30,45,69,0.72);
  font-size:0.90rem;
  line-height:1.35;
}

@media (max-width: 980px){
  .stats{grid-template-columns:repeat(2, minmax(0, 1fr))}
}
@media (max-width: 560px){
  .stats{grid-template-columns:1fr}
}

/* Sections */
.section{
  padding:64px 0;
}
#audience.section{padding-top:52px;}
@media (max-width: 760px){
  #audience.section{padding-top:46px;}
}
.section.alt{
  background:rgba(255,255,255,0.35);
  border-top:1px solid rgba(30,45,69,0.08);
  border-bottom:1px solid rgba(30,45,69,0.08);
}

/* Dark blue section band (colour-only) */
.section.section-dark{
  position:relative;
}

/* Use the same dark-blue language as the Cycle band */
.section.section-dark::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(15,118,110,0.22), transparent 64%),
    radial-gradient(900px 420px at 85% 10%, rgba(244,245,247,0.10), transparent 62%),
    linear-gradient(180deg, rgba(30,45,69,0.96), rgba(30,45,69,0.92));
  pointer-events:none;
  z-index:0;
}

/* Keep content above the background */
.section.section-dark > .container{
  position:relative;
  z-index:1;
}

/* If the section is also .alt, override the light alt background and borders */
.section.alt.section-dark{
  background:transparent;
  border-top:1px solid rgba(244,245,247,0.10);
  border-bottom:1px solid rgba(244,245,247,0.10);
}

/* Head text on dark sections (targeted so cards stay normal) */
.section.section-dark .section-head .h2,
.section.section-dark .run-head .h2{
  color:rgba(244,245,247,0.96);
}

.section.section-dark .section-head .p,
.section.section-dark .run-head .p{
  color:rgba(244,245,247,0.72);
}

.section.section-dark .section-head .note{
  color:rgba(244,245,247,0.72);
}

/* Dark sections: make key surfaces more opaque so they don't look washed out */
.section.section-dark .card,
.section.section-dark .panel,
.section.section-dark .role-table,
.section.section-dark .run-items{
  background:rgba(255,255,255,0.94);
  border-color:rgba(30,45,69,0.14);
  box-shadow:0 22px 60px rgba(12,18,31,0.28), 0 2px 10px rgba(12,18,31,0.10);
}

.section.section-dark .card.pe-controls{
  background:rgba(244,245,247,0.72);
  box-shadow:var(--shadow-soft);
}

/* Keep inner dividers readable on the now-whiter surface */
.section.section-dark .run-item{
  border-top-color:rgba(30,45,69,0.12);
}

/* Table header and pills were also translucent, so tighten them up */
.section.section-dark .role-table-inner thead th{
  background:rgba(244,245,247,0.92);
}

.section.section-dark .role-pill{
  background:rgba(255,255,255,0.92);
}

.section-head{
  max-width:68ch;
}
.section-head.narrow{max-width:58ch}
.section-grid{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:28px;
  align-items:start;
}
@media (max-width: 940px){
  .section{padding:54px 0}
  .section-grid{grid-template-columns:1fr; gap:18px}
}

/* Cards */
.card{
  background:rgba(255,255,255,0.80);
  border:1px solid rgba(30,45,69,0.12);
  border-radius:var(--r-xl);
  box-shadow:var(--shadow-soft);
  padding:18px;
}
.card-soft{
  background:rgba(244,245,247,0.72);
}

.kicker{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(30,45,69,0.06);
  border:1px solid rgba(30,45,69,0.10);
  color:rgba(30,45,69,0.82);
  font-weight:800;
  font-size:0.86rem;
  margin-bottom:12px;
}

/* Bullets */
.bullets{
  margin:14px 0 0 0;
  padding-left:18px;
  line-height:1.55;
}
.bullets li{margin:8px 0; color:rgba(12,18,31,0.82)}
.bullets.tight li{margin:6px 0}

/* Reality list */
.reality-list{
  border-radius:var(--r-xl);
  background:rgba(255,255,255,0.70);
  border:1px solid rgba(30,45,69,0.10);
  box-shadow:var(--shadow-soft);
  padding:16px;
}
.reality-item{
  padding:12px 10px;
  border-top:1px solid rgba(30,45,69,0.10);
}
.reality-item:first-child{border-top:none}
.reality-title{font-weight:900; color:rgba(12,18,31,0.90)}
.reality-body{margin-top:6px; color:rgba(30,45,69,0.74); line-height:1.45}

/* Split panels */
.split{
  margin-top:22px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.panel{
  border-radius:var(--r-xl);
  background:rgba(255,255,255,0.78);
  border:1px solid rgba(30,45,69,0.12);
  box-shadow:var(--shadow-soft);
  padding:18px;
}
@media (max-width: 900px){
  .split{grid-template-columns:1fr}
}

/* Role select (Audience) */
.role-select{
  margin-top:22px;
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:18px;
  align-items:start;
}
@media (max-width: 980px){
  .role-select{grid-template-columns:1fr}
}

.role-table{
  border-radius:var(--r-xl);
  background:rgba(255,255,255,0.78);
  border:1px solid rgba(30,45,69,0.12);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.role-table-inner{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
}
.role-table-inner thead th{
  text-align:left;
  font-weight:900;
  color:rgba(30,45,69,0.82);
  font-size:0.92rem;
  padding:16px 18px;
  background:rgba(244,245,247,0.64);
  border-bottom:1px solid rgba(30,45,69,0.14);
}
.role-table-inner .role-th-open{
  text-align:center;
  width:140px;
}
.role-table-inner tbody td{
  padding:16px 18px;
  border-top:1px solid rgba(30,45,69,0.12);
  background:rgba(255,255,255,0.40);
}
.role-table-inner tbody tr:first-child td{border-top:none}

.role-row{
  cursor:pointer;
}
.role-row td{
  transition:background .12s ease, box-shadow .12s ease;
}
.role-row:hover td{
  background:rgba(30,45,69,0.03);
}
.role-row.is-selected td{
  background:rgba(15,118,110,0.06);
}
.role-row.is-selected td:first-child{
  box-shadow:inset 3px 0 0 rgba(15,118,110,0.85);
}

.role-entity{
  font-weight:850;
  letter-spacing:-0.01em;
  color:rgba(12,18,31,0.92);
}

.role-pill{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(30,45,69,0.14);
  background:rgba(255,255,255,0.70);
  color:rgba(30,45,69,0.86);
  font-weight:850;
  font-size:0.86rem;
}

.role-open-cell{
  text-align:center;
}

.role-open{
  height:40px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.14);
  background:#000;
  color:#fff;
  font-weight:900;
  letter-spacing:-0.01em;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(0,0,0,0.18);
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.role-open:hover{
  background:rgba(12,18,31,0.96);
  box-shadow:0 12px 26px rgba(0,0,0,0.22);
}
.role-open:active{transform:translateY(1px)}
.role-open:focus-visible{
  outline:2px solid rgba(15,118,110,0.55);
  outline-offset:3px;
}

/* Reserve enough space so the Pricing estimator doesn't jump
   when Originator vs Investor content has different heights */
.role-benefits{
  min-height: 306px;   /* set this to the taller of the two panes */
  display: flow-root;  /* avoids any margin-collapsing quirks */
}


.role-pane{
  display:none;
}
.role-pane.is-active{
  display:block;
  animation:roleFadeIn .18s ease both;
}
@keyframes roleFadeIn{
  from{opacity:0; transform:translateY(6px)}
  to{opacity:1; transform:translateY(0)}
}

/* Timeline motif */
.timeline{
  margin-top:22px;
  border-radius:var(--r-xl);
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(30,45,69,0.12);
  box-shadow:var(--shadow-soft);
  padding:18px 18px 10px 18px;
  position:relative;
  overflow:hidden;
}
.timeline:before{
  content:"";
  position:absolute;
  left:26px;
  top:18px;
  bottom:18px;
  width:2px;
  background:linear-gradient(180deg, rgba(15,118,110,0.35), rgba(30,45,69,0.18));
}
.t-step{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:14px;
  padding:12px 0;
}
.t-dot{
  width:12px;
  height:12px;
  border-radius:999px;
  background:rgba(15,118,110,0.94);
  box-shadow:0 0 0 6px rgba(15,118,110,0.12);
  margin-top:6px;
  margin-left:20px;
}
.t-kicker{
  font-weight:900;
  color:rgba(30,45,69,0.82);
  font-size:0.85rem;
  margin-bottom:6px;
}
.t-title{
  font-weight:950;
  letter-spacing:-0.01em;
  color:rgba(12,18,31,0.92);
}
.t-text{
  margin-top:6px;
  color:rgba(30,45,69,0.76);
  line-height:1.45;
}



/* How it works (accordion) */
.timeline.how-accordion{
  padding:10px 18px;
  max-height:none;
  overflow:visible;
}

.timeline.how-accordion.is-open{
  max-height: clamp(320px, 52vh, 460px);
  overflow-y:auto;
  overflow-x:hidden;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
}




.timeline.how-accordion:before{
  top:14px;
  bottom:14px;
}
.how-step{
  border-top:1px solid rgba(30,45,69,0.10);
}
.how-step:first-child{border-top:none}

.how-summary{
  display:grid;
  grid-template-columns:34px 1fr 18px;
  gap:14px;
  padding:14px 10px 14px 0;
  cursor:pointer;
  list-style:none;
  align-items:start;
  border-radius:14px;
  transition:background .12s ease;
}
.how-summary::-webkit-details-marker{display:none}
.how-summary:hover{background:rgba(30,45,69,0.03)}
.how-summary:focus-visible{
  outline:2px solid rgba(15,118,110,0.55);
  outline-offset:4px;
}

/* How it works (accordion) */
.how-dot{
  width:12px;
  height:12px;
  border-radius:999px;

  /* closed state (greyed out) */
  background:rgba(30,45,69,0.32);
  box-shadow:0 0 0 6px rgba(30,45,69,0.10);

  margin-top:6px;
  margin-left:20px;
  display:block;

  transition:background .14s ease, box-shadow .14s ease;
}

/* open state (turns green) */
.how-step[open] .how-dot{
  background:rgba(15,118,110,0.94);
  box-shadow:0 0 0 6px rgba(15,118,110,0.12);
}


.how-title{
  font-weight:950;
  letter-spacing:-0.01em;
  color:rgba(12,18,31,0.92);
}

.how-chevron{
  width:10px;
  height:10px;
  border-right:2px solid rgba(30,45,69,0.40);
  border-bottom:2px solid rgba(30,45,69,0.40);
  transform:rotate(45deg);
  margin-top:8px;
  justify-self:end;
  transition:transform .14s ease, border-color .14s ease;
}
details[open] .how-chevron{
  transform:rotate(-135deg);
  border-color:rgba(15,118,110,0.70);
}

.how-body{
  padding:0 10px 14px 48px;
  color:rgba(30,45,69,0.76);
  line-height:1.45;
  max-width:74ch;
}
details[open] .how-body{
  animation:howFadeIn .18s ease both;
}
@keyframes howFadeIn{
  from{opacity:0; transform:translateY(6px)}
  to{opacity:1; transform:translateY(0)}
} 
@media (max-width:560px){
  .timeline.how-accordion{
    padding:10px 14px;
    max-height:none;
    overflow:visible;
  }
  .timeline.how-accordion.is-open{
    max-height:min(70vh, 520px);
    overflow-y:auto;
    overflow-x:hidden;
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: touch;
  }
}
 
/* Band (mid-page reset) */
.band{
  position:relative;
  padding:72px 0;
  overflow:hidden;
}

/* Cycle band sizing (trimmed after removing the extra card and CTAs) */
#cycle.band{
  padding:56px 0;
}

.band-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(15,118,110,0.22), transparent 64%),
    radial-gradient(900px 420px at 85% 10%, rgba(244,245,247,0.10), transparent 62%),
    linear-gradient(180deg, rgba(30,45,69,0.96), rgba(30,45,69,0.92));
  pointer-events:none;
}
.band-dark{
  color:rgba(244,245,247,0.92);
}
.band-inner{position:relative}
.band-head{
  max-width:68ch;
}
.cycle-layout{
  margin-top:20px;
  display:grid;
  grid-template-columns:1fr 340px;
  gap:18px;
  align-items:stretch;
}
.cycle-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.chip{
  height:38px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(244,245,247,0.20);
  background:rgba(244,245,247,0.08);
  color:rgba(244,245,247,0.86);
  font-weight:850;
  cursor:pointer;
  transition:background .12s ease, border-color .12s ease;
}
.chip:hover{background:rgba(244,245,247,0.12)}
.chip.is-active{
  background:rgba(244,245,247,0.18);
  border-color:rgba(244,245,247,0.30);
}
.cycle-pane{display:none}
.cycle-pane.is-active{display:block}
.cycle-rail{
  display:grid;
  gap:14px;
}
.rail{
  position:relative;
  padding:10px 10px 10px 10px;
  border-radius:var(--r-xl);
  border:1px solid rgba(244,245,247,0.16);
  background:rgba(12,18,31,0.18);
}
.rail-line{
  position:absolute;
  left:22px;
  top:18px;
  bottom:18px;
  width:2px;
  background:linear-gradient(180deg, rgba(15,118,110,0.55), rgba(244,245,247,0.10));
}

/* Make the right rail box taller upward, while keeping its bottom aligned */
#cycle .rail{
  --rail-extend: 88px;
  height: calc(100% + var(--rail-extend));
  margin-top: calc(-1 * var(--rail-extend));

  /* NEW: let the content fill the full card height */
  padding:24px 10px;
  display:flex;
  flex-direction:column;
  justify-content:space-evenly; 
}

/* Keep the vertical line aligned with the dots after the box grows upward */
#cycle .rail-line{
  top:24px;
  bottom:24px;
}

/* Mobile: remove the upward extension (because the layout stacks) */
@media (max-width: 980px){
  #cycle .rail{ --rail-extend: 0px; }
}
 

.rail-node{
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 10px 10px 8px;
  position:relative;
  z-index:1;
}
#cycle .rail-node{
  padding:0 10px 0 8px; /* keep left alignment, remove extra vertical padding */
}

.rail-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(244,245,247,0.36);
  box-shadow:0 0 0 6px rgba(244,245,247,0.06);
}
.rail-node.is-active .rail-dot{
  background:rgba(15,118,110,0.95);
  box-shadow:0 0 0 6px rgba(15,118,110,0.22);
}
.rail-label{
  font-weight:900;
  color:rgba(244,245,247,0.86);
}
.cycle-card{
  border-radius:var(--r-xl);
  border:1px solid rgba(244,245,247,0.16);
  background:rgba(12,18,31,0.18);
  padding:14px;
}
.cycle-card-title{
  font-weight:950;
  letter-spacing:-0.01em;
  color:rgba(244,245,247,0.92);
}
.cycle-card-note{
  margin-top:8px;
  color:rgba(244,245,247,0.72);
  line-height:1.45;
}
.mini-chips{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.mini-pill{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(244,245,247,0.18);
  background:rgba(244,245,247,0.06);
  color:rgba(244,245,247,0.84);
  font-weight:800;
  font-size:0.86rem;
}
.band-cta{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

@media (max-width: 980px){
  .cycle-layout{grid-template-columns:1fr}
}

/* Protections */
.prot-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
  gap:16px;
}
@media (max-width: 980px){
  .prot-grid{grid-template-columns:1fr}
}
.details{
  margin-top:14px;
  border-radius:var(--r-xl);
  border:1px solid rgba(30,45,69,0.12);
  background:rgba(255,255,255,0.70);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.details-summary{
  cursor:pointer;
  padding:16px 16px;
  font-weight:900;
  color:rgba(12,18,31,0.90);
  list-style:none;
}
.details-summary::-webkit-details-marker{display:none}
.details-body{
  padding:0 16px 16px 16px;
  border-top:1px solid rgba(30,45,69,0.10);
}
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  padding-top:14px;
}
@media (max-width: 860px){
  .two-col{grid-template-columns:1fr}
}

/* Protections: nested accordion inside "See all protections" */
#protections .prot-accordion{
  padding-top:14px;
}

#protections .prot-list{
  display:block;
}

#protections .prot-item{
  margin-bottom:10px;
  border-radius:14px;
  border:1px solid rgba(30,45,69,0.10);
  background:rgba(244,245,247,0.60);
  overflow:hidden;
}

#protections .prot-item[open]{
  background:rgba(244,245,247,0.72);
  border-color:rgba(30,45,69,0.14);
}

#protections .prot-summary{
  cursor:pointer;
  padding:10px 12px;
  display:grid;
  grid-template-columns:1fr 18px;
  gap:10px;
  align-items:center;
  list-style:none;
  transition:background .12s ease;
}

#protections .prot-summary::-webkit-details-marker{display:none}

#protections .prot-summary:hover{
  background:rgba(30,45,69,0.03);
}

#protections .prot-summary:focus-visible{
  outline:2px solid rgba(15,118,110,0.55);
  outline-offset:4px;
}

#protections .prot-title{
  color:rgba(30,45,69,0.86);
  font-weight:900;
  letter-spacing:-0.01em;
  line-height:1.35;
}

#protections .prot-chev{
  width:10px;
  height:10px;
  border-right:2px solid rgba(30,45,69,0.40);
  border-bottom:2px solid rgba(30,45,69,0.40);
  transform:rotate(45deg);
  justify-self:end;
  transition:transform .14s ease, border-color .14s ease;
  margin-top:2px;
}

#protections .prot-item[open] .prot-chev{
  transform:rotate(-135deg);
  border-color:rgba(15,118,110,0.70);
}

#protections .prot-desc{
  padding:0 12px 12px 12px;
  color:rgba(30,45,69,0.76);
  line-height:1.45;
  max-width:74ch;
}

#protections .prot-item[open] .prot-desc{
  animation:protFadeIn .18s ease both;
}

@keyframes protFadeIn{
  from{opacity:0; transform:translateY(6px)}
  to{opacity:1; transform:translateY(0)}
}

/* Run */
.run-layout{
  margin-top:10px;
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:22px;
  align-items:start;
}
.run-items{
  border-radius:var(--r-xl);
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(30,45,69,0.10);
  box-shadow:var(--shadow-soft);
  padding:8px;
}
.run-item{
  padding:14px 12px;
  border-top:1px solid rgba(30,45,69,0.10);
}
.run-item:first-child{border-top:none}
.run-tag{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(15,118,110,0.10);
  border:1px solid rgba(15,118,110,0.18);
  color:rgba(15,118,110,0.95);
  font-weight:900;
  font-size:0.84rem;
}
.run-title{
  margin-top:10px;
  font-weight:950;
  color:rgba(12,18,31,0.92);
  letter-spacing:-0.01em;
}
.run-text{
  margin-top:6px;
  color:rgba(30,45,69,0.76);
  line-height:1.45;
}
@media (max-width: 940px){
  .run-layout{grid-template-columns:1fr}
}

/* Outputs */
.pack{
  margin-top:22px;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:16px;
  align-items:start;
}
.pack-right{
  display:grid;
  gap:14px;
}
.callout{
  border-radius:var(--r-xl);
  border:1px solid rgba(30,45,69,0.12);
  background:rgba(255,255,255,0.72);
  box-shadow:var(--shadow-soft);
  padding:16px;
}
.callout.soft{background:rgba(244,245,247,0.72)}
.callout-title{
  font-weight:950;
  letter-spacing:-0.01em;
  color:rgba(12,18,31,0.90);
}
.callout-text{
  margin-top:10px;
  color:rgba(30,45,69,0.76);
  line-height:1.45;
}

/* Start */
.start-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  align-items:start;
}
.cta-row{
  margin-top:14px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.mini-note{
  margin-top:10px;
  color:rgba(107,114,128,0.95);
  font-size:0.92rem;
  line-height:1.4;
}
@media (max-width: 900px){
  .start-grid{grid-template-columns:1fr}
}



/* Start (B layout) */
#start{ padding-bottom:52px; }

.start-layout{
  margin-top:22px;
  display:grid;
  gap:14px;
  align-items:stretch;
}

.start-wide{
  padding:0;
  overflow:hidden;
}

.start-two{
  display:grid;
  grid-template-columns:1fr 1fr;
}

.start-block{
  padding:18px;
}

.start-block:first-child{
  border-right:1px solid rgba(30,45,69,0.10);
}

.start-cta-banner{
  border-radius:var(--r-xl);
  background:
    radial-gradient(700px 240px at 10% 0%, rgba(15,118,110,0.18), transparent 70%),
    rgba(12,18,31,0.94);
  border:1px solid rgba(244,245,247,0.12);
  box-shadow:0 18px 44px rgba(12,18,31,0.30);
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.start-cta-copy .h3{ margin:0; }
.start-cta-copy .p{ margin-top:10px; }

.start-cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
}

@media (max-width: 900px){
  #start{ padding-bottom:46px; }

  .start-two{ grid-template-columns:1fr; }
  .start-block:first-child{
    border-right:none;
    border-bottom:1px solid rgba(30,45,69,0.10);
  }
}

@media (max-width: 760px){
  .start-cta-banner{
    flex-direction:column;
    align-items:flex-start;
  }
  .start-cta-actions{ width:100%; }
}


/* Closing */
.closing{
  margin-top:26px;
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:16px;
  align-items:stretch;
}
.closing-banner{
  border-radius:var(--r-xl);
  background:
    radial-gradient(700px 240px at 10% 0%, rgba(15,118,110,0.18), transparent 70%),
    rgba(12,18,31,0.94);
  border:1px solid rgba(244,245,247,0.12);
  box-shadow:0 18px 44px rgba(12,18,31,0.30);
  padding:18px;
  color:rgba(244,245,247,0.92);
}
.banner-kicker{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(244,245,247,0.18);
  background:rgba(244,245,247,0.08);
  font-weight:900;
  font-size:0.86rem;
}
.banner-title{
  margin-top:12px;
  font-weight:950;
  letter-spacing:-0.02em;
  font-size:1.35rem;
}
.banner-text{
  margin-top:10px;
  color:rgba(244,245,247,0.74);
  line-height:1.45;
}
.banner-actions{
  margin-top:14px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
@media (max-width: 980px){
  .closing{grid-template-columns:1fr}
}

/* Footer */
.footer{
  background:rgba(12,18,31,0.96);
  color:rgba(244,245,247,0.90);
  margin-top:14px;
}
.footer-inner{
  padding:26px 0;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  border-bottom:1px solid rgba(244,245,247,0.12);
}
.footer-brand{
  font-weight:950;
  letter-spacing:-0.02em;
  font-size:1.05rem;
}
.footer-muted{
  margin-top:6px;
  color:rgba(244,245,247,0.70);
}
.footer-right{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.footer-link{
  padding:10px 10px;
  border-radius:999px;
  border:1px solid rgba(244,245,247,0.14);
  background:rgba(244,245,247,0.06);
  color:rgba(244,245,247,0.88);
  font-weight:800;
}
.footer-link:hover{
  background:rgba(244,245,247,0.10);
  border-color:rgba(244,245,247,0.20);
}
.footer-bottom{
  padding:14px 0 18px 0;
  display:flex;
  justify-content:space-between;
  gap:14px;
  color:rgba(244,245,247,0.62);
  font-size:0.90rem;
}
@media (max-width: 780px){
  .footer-inner{flex-direction:column; align-items:flex-start}
  .footer-right{justify-content:flex-start}
}  

/* Pricing estimator (Audience) */
.pricing-estimator{ margin-top:22px; }

.pe-kpi-meta--italic{
  font-style: italic;
}

/* Head */
.pe-card{ overflow:hidden; }
.pe-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}
.pe-title{ font-size:1.06rem; font-weight:950; letter-spacing:-0.01em; color:rgba(12,18,31,0.92); }
.pe-sub{ margin-top:4px; color:rgba(30,45,69,0.72); font-size:0.94rem; }

.pe-actions{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.pe-btn{
  height:40px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.14);
  background:#000;
  color:#fff;
  font-weight:900;
  letter-spacing:-0.01em;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(0,0,0,0.18);
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.pe-btn:hover{
  background:rgba(12,18,31,0.96);
  box-shadow:0 12px 26px rgba(0,0,0,0.22);
}
.pe-btn:active{ transform:translateY(1px); }
.pe-btn:focus-visible{
  outline:2px solid rgba(15,118,110,0.55);
  outline-offset:3px;
}

.pe-btn.pe-btn-ghost{
  background:rgba(255,255,255,0.72);
  color:rgba(12,18,31,0.92);
  border:1px solid rgba(30,45,69,0.16);
  box-shadow:0 10px 22px rgba(12,18,31,0.10);
}
.pe-btn.pe-btn-ghost:hover{
  background:rgba(255,255,255,0.86);
  box-shadow:0 12px 26px rgba(12,18,31,0.14);
}

/* Layout */
.pe-grid{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:18px;
  align-items:start;
}
@media (max-width: 980px){
  .pe-grid{ grid-template-columns:1fr; }
}

/* Controls */
.pe-controls{
  background:rgba(244,245,247,0.72);
}
.pe-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:10px;
}
.pe-row:first-child{ margin-top:0; }
.pe-label{
  font-weight:900;
  color:rgba(30,45,69,0.78);
  font-size:0.92rem;
}
.pe-value{
  font-weight:950;
  letter-spacing:-0.01em;
  color:rgba(12,18,31,0.92);
  font-variant-numeric:tabular-nums;
}

.pe-inputs{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:8px;
}
.pe-inputs input[type="range"]{
  width:100%;
  background:transparent;

  /* Make Safari stop using the fully-native look */
  -webkit-appearance:none;
  appearance:none;

  /* Give the control some vertical space for the thumb */
  height:34px;

  /* This gets set by JS per slider */
  --pct: 0%;
}

/* Track (Safari/Chrome) */
.pe-inputs input[type="range"]::-webkit-slider-runnable-track{
  height:10px;
  border-radius:999px;
  background:
    linear-gradient(var(--teal), var(--teal)) 0/var(--pct) 100% no-repeat,
    rgba(12,18,31,0.22);
}

/* Thumb (Safari/Chrome) */
.pe-inputs input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none;
  appearance:none;
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--teal);
  border:3px solid #fff;
  margin-top:-6px; /* centers thumb on 10px track */
  box-shadow:0 10px 22px rgba(12,18,31,0.18);
}

/* Firefox support */
.pe-inputs input[type="range"]::-moz-range-track{
  height:10px;
  border-radius:999px;
  background:rgba(12,18,31,0.22);
}
.pe-inputs input[type="range"]::-moz-range-progress{
  height:10px;
  border-radius:999px;
  background:var(--teal);
}
.pe-inputs input[type="range"]::-moz-range-thumb{
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--teal);
  border:3px solid #fff;
  box-shadow:0 10px 22px rgba(12,18,31,0.18);
}
.pe-number{
  width:170px;
  border:1px solid rgba(30,45,69,0.14);
  border-radius:12px;
  padding:10px 10px;
  background:#fff;
  color:rgba(12,18,31,0.92);
  font-weight:850;
  font-variant-numeric:tabular-nums;
}
@media (max-width: 560px){
  .pe-inputs{ flex-direction:column; align-items:stretch; }
  .pe-number{ width:100%; }
}

.pe-pill{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:14px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(30,45,69,0.14);
  background:rgba(255,255,255,0.84);
  color:rgba(30,45,69,0.74);
  font-weight:850;
  font-size:0.92rem;
}
.pe-dot{
  width:9px;
  height:9px;
  border-radius:999px;
  background:rgba(15,118,110,0.94);
  box-shadow:0 0 0 6px rgba(15,118,110,0.12);
}

.pe-footnote{
  margin-top:10px;
  color:rgba(30,45,69,0.68);
  font-size:0.92rem;
  line-height:1.4;
}

/* KPIs */
.pe-kpis{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}
.pe-kpi{ display:flex; flex-direction:column; justify-content:center; min-height:132px; }
.pe-kpi-label{
  font-weight:900;
  color:rgba(30,45,69,0.72);
  font-size:0.92rem;
}

.pe-kpi-meta{
  margin-top:6px;
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:rgba(30,45,69,0.64);
  font-weight:850;
  font-size:0.86rem;
}
.pe-kpi-subval{
  color:rgba(12,18,31,0.72);
  font-variant-numeric:tabular-nums;
}

.pe-kpi-value{
  margin-top:8px;
  font-size:2.05rem;
  font-weight:950;
  letter-spacing:-0.02em;
  color:rgba(12,18,31,0.94);
  font-variant-numeric:tabular-nums;
}
@media (max-width: 560px){
  .pe-kpi{ min-height:auto; }
  .pe-kpi-value{ font-size:1.7rem; }
}
