:root{
  --ink:#1B1F23;
  --ink-soft:#2A3138;
  --rope:#D65F3C;
  --rope-deep:#B94B2C;
  --rope-pale:#FBE9E2;
  --alpine:#2C6E63;
  --alpine-pale:#E1EEEC;
  --chalk:#F4F2ED;
  --white:#FFFFFF;
  --paper:#F6F5F2;
  --text:#252A2E;
  --text-muted:#6B7178;
  --line:#E2E0DA;
  --shadow-card: 0 1px 2px rgba(27,31,35,0.05), 0 12px 32px -12px rgba(27,31,35,0.16);
  --shadow-lift: 0 2px 4px rgba(27,31,35,0.07), 0 24px 48px -16px rgba(27,31,35,0.26);
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}

body{
  font-family:'Inter', -apple-system, sans-serif;
  color:var(--text);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}

h1,h2,h3,h4,.display{
  font-family:'Barlow Condensed', sans-serif;
  color:var(--ink);
  letter-spacing:0.005em;
  font-weight:700;
}

.mono{font-family:'JetBrains Mono', monospace;}

a{color:inherit; text-decoration:none;}
img,svg{display:block; max-width:100%;}
button{font-family:inherit; cursor:pointer;}

.wrap{max-width:1180px; margin:0 auto; padding:0 32px;}
@media (max-width:640px){ .wrap{padding:0 20px;} }

.eyebrow{
  font-family:'JetBrains Mono', monospace;
  font-size:13px;
  font-weight:600;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--rope-deep);
}

/* ---------- Nav ---------- */
.nav{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,0.90);
  backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:border-color .25s ease, box-shadow .25s ease;
}
.nav.scrolled{ border-color:var(--line); box-shadow:0 1px 0 rgba(27,31,35,0.02); }
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:88px;
}
.brand{ display:flex; align-items:center; gap:14px; }
.brand-mark{
  width:48px; height:48px; border-radius:11px;
  background:var(--ink);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.brand-mark svg{ width:27px; height:27px; }
.brand-textstack{ display:flex; flex-direction:column; gap:3px; }
.brand-word{ font-family:'Barlow Condensed'; font-weight:700; font-size:30px; letter-spacing:0.02em; color:var(--ink); line-height:1; }
.brand-word .accent{ color:var(--rope); }
.brand-tag{
  font-family:'JetBrains Mono'; font-size:10.5px; font-weight:600;
  letter-spacing:0.05em; text-transform:uppercase; color:var(--text-muted);
  white-space:nowrap;
}
@media (max-width:640px){ .brand-tag{ display:none; } }

.nav-links{ display:flex; align-items:center; gap:36px; }
.nav-links a{ font-size:14.5px; font-weight:500; color:var(--text); }
.nav-links a:hover{ color:var(--rope-deep); }
.nav-cta{ display:flex; align-items:center; gap:20px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-weight:600; font-size:14.5px;
  padding:11px 20px; border-radius:8px;
  border:1px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.btn-primary{ background:var(--rope); color:var(--white); box-shadow:0 1px 2px rgba(0,0,0,0.06), 0 8px 20px -8px rgba(214,95,60,0.5); }
.btn-primary:hover{ background:var(--rope-deep); transform:translateY(-1px); }
.btn-ghost{ color:var(--ink); border-color:var(--line); background:var(--white); }
.btn-ghost:hover{ border-color:var(--rope); color:var(--rope-deep); }
.btn-dark{ background:var(--ink); color:var(--white); }
.btn-dark:hover{ background:var(--ink-soft); transform:translateY(-1px); }
.link-quiet{ font-size:14.5px; font-weight:500; color:var(--text); }
.link-quiet:hover{ color:var(--rope-deep); }

.nav-toggle{ display:none; background:none; border:none; padding:8px; }
.nav-toggle span{ display:block; width:22px; height:2px; background:var(--ink); margin:5px 0; border-radius:2px; }

@media (max-width:900px){
  .nav-links{ display:none; }
  .nav-cta .link-quiet{ display:none; }
  .nav-toggle{ display:block; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  padding:96px 0 88px;
  background:
    radial-gradient(680px 420px at 82% -10%, rgba(214,95,60,0.10), transparent 60%),
    var(--paper);
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.hero-grid{
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center;
}
@media (max-width:960px){ .hero-grid{ grid-template-columns:1fr; } }

.hero-badge{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--rope-pale); color:var(--rope-deep);
  font-size:13px; font-weight:600;
  padding:7px 14px 7px 8px; border-radius:100px; margin-bottom:22px;
}
.hero-badge .dot{ width:6px; height:6px; border-radius:50%; background:var(--alpine); box-shadow:0 0 0 3px var(--alpine-pale); }

.hero h1{
  font-size:60px; line-height:1.02; letter-spacing:0.005em; font-weight:700;
  margin-bottom:22px;
}
.hero h1 em{ font-style:normal; color:var(--rope); }
@media (max-width:640px){ .hero h1{ font-size:42px; } }

.hero p.lede{ font-size:18px; color:var(--text-muted); max-width:520px; margin-bottom:32px; }
.hero-actions{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; margin-bottom:36px;}
.btn-lg{ padding:14px 26px; font-size:15.5px; }
.play{ display:inline-flex; align-items:center; gap:10px; font-weight:600; font-size:14.5px; color:var(--ink); }
.play-icon{ width:34px; height:34px; border-radius:50%; background:var(--white); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-card); }
.play:hover .play-icon{ border-color:var(--rope); }

.hero-proof{ display:flex; gap:28px; flex-wrap:wrap; }
.hero-proof-item{ font-size:14px; color:var(--text-muted); }
.hero-proof-item b{ display:block; font-family:'Barlow Condensed'; font-size:24px; color:var(--ink); font-weight:700; }

/* signature deal-room card */
.dealcard{
  position:relative;
  background:var(--white); border:1px solid var(--line); border-radius:16px;
  box-shadow:var(--shadow-lift);
  padding:22px;
  transform:rotate(1.2deg);
}
.dealcard-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
.dealcard-title{ display:flex; align-items:center; gap:10px; }
.avatars{ display:flex; }
.avatar{
  width:30px; height:30px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:'Barlow Condensed'; font-weight:700; font-size:12.5px; color:#fff;
  border:2px solid var(--white); margin-left:-9px;
}
.avatar:first-child{ margin-left:0; }
.a1{ background:#D65F3C; } .a2{ background:#2C6E63; } .a3{ background:#1B1F23; } .a4{ background:#8A9099;}
.dealcard-name{ font-family:'Barlow Condensed'; font-weight:700; font-size:16px; color:var(--ink); }
.dealcard-sub{ font-size:13.5px; color:var(--text-muted); }
.status-pill{
  display:inline-flex; align-items:center; gap:6px;
  background:var(--alpine-pale); color:var(--alpine);
  font-size:12px; font-weight:700; padding:5px 11px 5px 8px; border-radius:100px;
}
.status-pill .dot{ width:6px; height:6px; border-radius:50%; background:var(--alpine); }
.status-pill.pulse .dot{ animation:pulseDot 1.8s ease-in-out infinite; }
@keyframes pulseDot{ 0%,100%{ box-shadow:0 0 0 0 rgba(44,110,99,0.5);} 50%{ box-shadow:0 0 0 5px rgba(44,110,99,0);} }

.dealcard-section-label{ font-family:'JetBrains Mono'; font-size:11.5px; letter-spacing:0.08em; text-transform:uppercase; color:var(--text-muted); margin:16px 0 10px; }
.maplist{ display:flex; flex-direction:column; gap:9px; margin-bottom:18px; }
.mapitem{ display:flex; align-items:center; gap:10px; font-size:14.5px; color:var(--text); }
.mapitem .check{ width:17px; height:17px; border-radius:50%; background:var(--ink); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.mapitem .check svg{ width:11px; height:11px; }
.mapitem.pending .check{ background:var(--white); border:1.5px solid var(--line); }
.mapitem.pending{ color:var(--text-muted); }

.signalbox{
  background:var(--paper); border:1px solid var(--line); border-radius:10px; padding:14px 16px;
  display:flex; align-items:center; justify-content:space-between;
}
.signalbox-label{ font-size:13px; color:var(--text-muted); font-weight:500; }
.signalbox-label b{ display:block; color:var(--ink); font-family:'Barlow Condensed'; font-size:14.5px; }
.bars{ display:flex; align-items:flex-end; gap:3px; height:26px; }
.bars span{ width:4px; background:var(--rope); border-radius:2px; animation:bar 1.4s ease-in-out infinite; }
.bars span:nth-child(1){ height:40%; animation-delay:0s;}
.bars span:nth-child(2){ height:75%; animation-delay:.15s;}
.bars span:nth-child(3){ height:55%; animation-delay:.3s;}
.bars span:nth-child(4){ height:95%; animation-delay:.45s;}
.bars span:nth-child(5){ height:30%; animation-delay:.6s;}
@keyframes bar{ 0%,100%{ transform:scaleY(0.55);} 50%{ transform:scaleY(1);} }

.float-chip{
  position:absolute; background:var(--white); border:1px solid var(--line); border-radius:12px;
  box-shadow:var(--shadow-card); padding:10px 14px; display:flex; align-items:center; gap:9px;
}
.float-chip.c1{ top:-14px; right:18px; transform:rotate(-3deg); }
.float-chip .ico{ width:26px; height:26px; border-radius:7px; background:var(--rope-pale); display:flex; align-items:center;justify-content:center; }
.float-chip .txt{ font-size:12px; font-weight:600; color:var(--ink); }
.float-chip .txt small{ display:block; font-weight:500; color:var(--text-muted); font-size:10.5px; }

/* ---------- Sections generic ---------- */
section{ padding:104px 0; }
@media (max-width:640px){ section{ padding:72px 0; } }
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head h2{ font-size:38px; line-height:1.12; margin-top:14px; }
.section-head p{ font-size:17px; color:var(--text-muted); margin-top:14px; }
@media (max-width:640px){ .section-head h2{ font-size:29px; } }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ---------- Problem grid ---------- */
.problem-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:16px; overflow:hidden; }
@media (max-width:760px){ .problem-grid{ grid-template-columns:1fr; } }
.problem-card{ background:var(--white); padding:36px; }
.problem-num{ font-family:'JetBrains Mono'; font-size:13px; color:var(--rope-deep); font-weight:600; margin-bottom:14px; }
.problem-card h3{ font-size:20px; margin-bottom:10px; }
.problem-card p{ font-size:15.5px; color:var(--text-muted); }

/* ---------- Stats ---------- */
.stats{ background:var(--ink); color:var(--white); }
.stats .section-head p{ color:#A8ADB3; }
.stats .section-head h2{ color:var(--white); }
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,0.1); border-radius:14px; overflow:hidden; }
@media (max-width:860px){ .stats-grid{ grid-template-columns:repeat(2,1fr); } }
.stat{ background:var(--ink-soft); padding:32px 26px; }
.stat b{ display:block; font-family:'Barlow Condensed'; font-size:40px; font-weight:700; color:var(--white); margin-bottom:8px; }
.stat span{ font-size:14.5px; color:#A8ADB3; display:block; margin-bottom:10px; }
.stat .src{ font-family:'JetBrains Mono'; font-size:11.5px; color:#6D737A; }

/* ---------- Positioning statement ---------- */
.statement{ text-align:center; }
.statement .lines{ max-width:760px; margin:0 auto 28px; font-size:16px; color:var(--text-muted); }
.statement h2{ font-size:36px; max-width:820px; margin:0 auto; line-height:1.28; }
.statement h2 .accent{ color:var(--rope); }
.statement .tags{ display:flex; gap:10px; justify-content:center; margin-top:26px; flex-wrap:wrap;}
.tag{ font-family:'JetBrains Mono'; font-size:13px; font-weight:600; letter-spacing:0.03em; background:var(--rope-pale); color:var(--rope-deep); padding:7px 13px; border-radius:100px; }

/* ---------- Pillars ---------- */
.pillars{ display:flex; flex-direction:column; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:16px; overflow:hidden; }
.pillar{ background:var(--white); display:grid; grid-template-columns:64px 1.1fr 1.4fr; gap:32px; align-items:center; padding:34px 36px; }
@media (max-width:820px){ .pillar{ grid-template-columns:48px 1fr; } .pillar-visual{ display:none; } }
.pillar-num{ font-family:'Barlow Condensed'; font-weight:700; font-size:24px; color:var(--line); }
.pillar h3{ font-size:21px; margin-bottom:8px; }
.pillar p{ font-size:15.5px; color:var(--text-muted); }
.pillar-visual{ justify-self:end; }
.mini-icon{ width:52px; height:52px; border-radius:12px; display:flex; align-items:center; justify-content:center; }
.mini-icon svg{ width:24px; height:24px; }

/* ---------- Adoption ---------- */
.adoption-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:860px){ .adoption-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .adoption-grid{ grid-template-columns:1fr; } }
.adopt-card{ border:1px solid var(--line); border-radius:14px; padding:28px; background:var(--paper); }
.adopt-card .ico{ width:40px; height:40px; border-radius:10px; background:var(--white); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.adopt-card h4{ font-size:16.5px; margin-bottom:8px; }
.adopt-card p{ font-size:14.5px; color:var(--text-muted); }

/* ---------- Single pricing card ---------- */
.price-single{ max-width:820px; margin:0 auto; }
.price-card-solo{
  display:grid; grid-template-columns:1.3fr 1fr; gap:0;
  border:1px solid var(--line); border-radius:18px; overflow:hidden;
  box-shadow:var(--shadow-lift);
}
@media (max-width:760px){ .price-card-solo{ grid-template-columns:1fr; } }
.price-solo-left{ padding:40px; }
.price-solo-left h3{ font-size:24px; margin-bottom:8px; }
.price-solo-left .desc{ font-size:15.5px; color:var(--text-muted); margin-bottom:24px; }
.price-solo-right{
  background:var(--paper); padding:40px; display:flex; flex-direction:column; justify-content:center;
  border-left:1px solid var(--line);
}
@media (max-width:760px){ .price-solo-right{ border-left:none; border-top:1px solid var(--line); } }
.price-amt{ display:flex; align-items:baseline; gap:6px; margin-bottom:4px; }
.price-amt b{ font-family:'Barlow Condensed'; font-size:48px; font-weight:700; color:var(--ink); }
.price-amt span{ font-size:15px; color:var(--text-muted); }
.price-solo-right .trial-note{ margin-bottom:22px; font-size:14px; color:var(--text-muted); }
.price-list{ display:flex; flex-direction:column; gap:12px; margin-bottom:0; }
.price-list li{ list-style:none; display:flex; align-items:flex-start; gap:10px; font-size:15px; color:var(--text); }
.price-list .check{ width:18px; height:18px; border-radius:50%; background:var(--ink); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px;}
.price-list .check svg{ width:11px; height:11px; }

/* ---------- Philosophy / SRENE principles ---------- */
.philosophy{ text-align:center; margin-bottom:64px; }
.philosophy h2{ font-size:38px; max-width:720px; margin:14px auto 0; line-height:1.2; }
.philosophy .lede{ font-size:16px; color:var(--text-muted); max-width:600px; margin:18px auto 0; }
.chain{ display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; margin-top:36px; }
.chain-step{
  display:flex; align-items:center; gap:8px; background:var(--white); border:1px solid var(--line);
  border-radius:100px; padding:10px 18px; font-size:13.5px; font-weight:600; color:var(--ink);
  box-shadow:var(--shadow-card);
}
.chain-arrow{ color:var(--line); font-size:16px; }
.chain-step.c1{ background:var(--alpine-pale); border-color:transparent; color:var(--alpine); }
.chain-step.c2{ background:var(--alpine); border-color:transparent; color:#fff; }
.chain-step.c3{ background:var(--rope-pale); border-color:transparent; color:var(--rope-deep); }
.chain-step.c4{ background:var(--rope); border-color:transparent; color:#fff; box-shadow:var(--shadow-card), 0 0 0 4px var(--rope-pale); }
@media (max-width:640px){ .chain{ flex-direction:column; } .chain-arrow{ transform:rotate(90deg); } }

.srene-block{ margin-top:96px; }
.srene-head{ text-align:center; max-width:680px; margin:0 auto 52px; }
.srene-head h2{ font-size:38px; margin-top:14px; line-height:1.15; }
.srene-head p{ font-size:16px; color:var(--text-muted); margin-top:14px; }
.srene-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:16px; overflow:hidden; }
@media (max-width:860px){ .srene-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .srene-grid{ grid-template-columns:1fr; } }
.srene-card{ background:var(--white); padding:32px 26px; }
.srene-letter{ font-family:'Barlow Condensed'; font-weight:700; font-size:44px; color:var(--rope); line-height:1; margin-bottom:14px; }
.srene-card h4{ font-size:15.5px; margin-bottom:10px; letter-spacing:0.02em; text-transform:uppercase; }
.srene-card p{ font-size:14.5px; color:var(--text-muted); }

/* ---------- Final CTA ---------- */
.final-cta{ background:var(--ink); color:#fff; border-radius:22px; text-align:center; padding:72px 40px; position:relative; overflow:hidden; }
.final-cta::before{ content:''; position:absolute; inset:0; background:radial-gradient(420px 260px at 15% 0%, rgba(214,95,60,0.16), transparent 60%); }
.final-cta .summit-icon{ position:relative; margin:0 auto 22px; width:56px; height:56px; }
.final-cta h2{ color:#fff; font-size:36px; margin-bottom:14px; position:relative; }
.final-cta p{ color:#B7BCC1; font-size:16px; margin-bottom:30px; position:relative; }
.final-cta .btn-primary{ position:relative; }
.final-cta .btn-ghost{ background:transparent; border-color:rgba(255,255,255,0.3); color:#fff; }
.final-cta .btn-ghost:hover{ border-color:#fff; }
.final-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; }

/* ---------- Footer ---------- */
footer{ border-top:1px solid var(--line); padding:64px 0 40px; }
.footer-top{ display:flex; justify-content:space-between; gap:40px; margin-bottom:48px; flex-wrap:wrap; }
.footer-brand p{ font-size:14.5px; color:var(--text-muted); max-width:280px; margin-top:14px; }
.footer-cols{ display:flex; gap:56px; flex-wrap:wrap; }
.footer-col h5{ font-family:'JetBrains Mono'; font-size:12px; letter-spacing:0.06em; text-transform:uppercase; color:var(--text-muted); margin-bottom:16px; }
.footer-col a{ display:block; font-size:14.5px; color:var(--text); margin-bottom:11px; }
.footer-col a:hover{ color:var(--rope-deep); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:28px; border-top:1px solid var(--line); font-size:13.5px; color:var(--text-muted); flex-wrap:wrap; gap:12px;}

/* ---------- Resources page ---------- */
.res-hero{
  padding:80px 0 56px;
  background: radial-gradient(680px 380px at 82% -10%, rgba(214,95,60,0.09), transparent 60%), var(--paper);
  border-bottom:1px solid var(--line);
}
.res-hero h1{ font-size:46px; line-height:1.08; max-width:680px; margin-top:14px; }
.res-hero p.lede{ font-size:17px; color:var(--text-muted); max-width:560px; margin-top:16px; }
@media (max-width:640px){ .res-hero h1{ font-size:34px; } }

.playbook-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width:900px){ .playbook-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .playbook-grid{ grid-template-columns:1fr; } }

.playbook-card{
  border:1px solid var(--line); border-radius:16px; background:var(--white);
  padding:0; display:flex; flex-direction:column; overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease;
}
.playbook-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lift); }
.playbook-cover{
  height:150px; position:relative; display:flex; align-items:flex-end; padding:20px;
}
.playbook-cover .cat{ font-family:'JetBrains Mono'; font-size:12px; font-weight:600; color:rgba(255,255,255,0.85); letter-spacing:0.05em; text-transform:uppercase; }
.playbook-cover .fmark{ position:absolute; top:18px; right:18px; width:30px; height:30px; border-radius:7px; background:rgba(255,255,255,0.18); display:flex; align-items:center; justify-content:center; }
.playbook-body{ padding:22px 24px 24px; display:flex; flex-direction:column; flex:1; }
.playbook-body h3{ font-size:18px; margin-bottom:8px; }
.playbook-body p{ font-size:14.5px; color:var(--text-muted); margin-bottom:18px; flex:1; }
.playbook-meta{ display:flex; align-items:center; justify-content:space-between; }
.playbook-meta .pages{ font-family:'JetBrains Mono'; font-size:12px; color:var(--text-muted); }
.dl-btn{
  display:inline-flex; align-items:center; gap:7px; font-size:14px; font-weight:600; color:var(--rope-deep);
}
.dl-btn:hover{ color:var(--rope); }
.dl-btn svg{ width:14px; height:14px; }

.res-cta{
  text-align:center; border:1px solid var(--line); border-radius:16px; padding:48px 32px; background:var(--paper);
}
.res-cta h3{ font-size:23px; margin-bottom:10px; }
.res-cta p{ font-size:15.5px; color:var(--text-muted); margin-bottom:22px; max-width:460px; margin-left:auto; margin-right:auto; }

::selection{ background:var(--rope-pale); color:var(--rope-deep); }
:focus-visible{ outline:2px solid var(--rope); outline-offset:2px; }
