:root{
  --forest:#102a27;
  --forest-2:#173833;
  --ink:#16312d;
  --cream:#f7f4ee;
  --cream-2:#fbfaf6;
  --white:#fff;
  --muted:#66746f;
  --line:#dfe4dd;
  --orange:#c85a2d;
  --orange-dark:#a94720;
  --peach:#f4b08a;
  --soft:#eef1ec;
  --purple:#755f8c;
  --green:#547561;
  --shadow:0 28px 70px rgba(16,42,39,.12);
  --shadow-soft:0 18px 48px rgba(16,42,39,.08);
  --font:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 92% 6%,rgba(244,176,138,.16),transparent 24rem),
    var(--cream);
  color:var(--ink);
  font-family:var(--font);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
h1,h2,h3,p{margin:0}
h1,h2,h3{line-height:1.05;letter-spacing:-.05em}
.skip{position:absolute;left:-9999px}
.skip:focus{
  left:16px;
  top:16px;
  z-index:99;
  background:#fff;
  padding:10px 14px;
  border-radius:8px;
  box-shadow:var(--shadow-soft);
}
a:focus-visible{
  outline:3px solid rgba(200,90,45,.35);
  outline-offset:4px;
  border-radius:6px;
}
.shell{width:min(1220px,calc(100% - 96px));margin-inline:auto}

.topline{
  min-height:32px;
  background:var(--forest);
  color:#e7efea;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  font-size:10px;
  font-weight:750;
  letter-spacing:.12em;
  text-align:center;
  padding:7px 18px;
}
.pulse{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#69a57f;
  box-shadow:0 0 0 4px rgba(105,165,127,.14);
  flex:0 0 auto;
}

.header{
  height:96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  border-bottom:1px solid var(--line);
}
.logo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:25px;
  font-weight:780;
  letter-spacing:-.045em;
  white-space:nowrap;
}
.logo-mark{
  width:35px;
  height:35px;
  border-radius:10px;
  background:var(--forest);
  color:var(--peach);
  display:grid;
  place-items:center;
  font-family:Georgia,serif;
  font-style:italic;
  font-weight:700;
  box-shadow:0 8px 18px rgba(16,42,39,.12);
}
.dot{color:var(--orange)}
.header nav{
  display:flex;
  align-items:center;
  gap:28px;
  color:#5e6c66;
  font-size:13px;
  font-weight:650;
}
.header nav a,.plain-link{transition:color .2s ease}
.header nav a:hover,.plain-link:hover{color:var(--orange)}

.btn{
  min-height:52px;
  padding:13px 22px;
  border-radius:9px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  font-size:14px;
  font-weight:750;
  box-shadow:0 0 0 rgba(0,0,0,0);
  transition:transform .2s ease,background .2s ease,box-shadow .2s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 10px 28px rgba(16,42,39,.12)}
.btn-small{min-height:42px;padding:9px 15px;font-size:12px;gap:14px}
.btn-dark{background:var(--forest);color:#fff}
.btn-dark:hover{background:#24473f}
.btn-orange{background:var(--orange);color:#fff}
.btn-orange:hover{background:var(--orange-dark)}
.btn-light{background:#f7efe8;color:var(--forest)}
.btn-light:hover{background:#fff}

.hero{
  position:relative;
  display:grid;
  grid-template-columns:1.03fr .97fr;
  gap:58px;
  padding-top:82px;
  padding-bottom:96px;
  align-items:center;
}
.hero:before{
  content:"";
  position:absolute;
  width:350px;
  height:350px;
  right:2%;
  top:8%;
  border:1px solid rgba(16,42,39,.055);
  border-radius:50%;
  z-index:-1;
}
.eyebrow{
  margin:0;
  font-size:10px;
  font-weight:800;
  letter-spacing:.15em;
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow>span{width:25px;height:2px;background:var(--orange);flex:0 0 auto}
.eyebrow.light{color:#dbe8e1}
.eyebrow.light>span{background:var(--peach)}
h1{
  font-size:clamp(58px,5.25vw,82px);
  font-weight:650;
  margin:24px 0 28px;
}
h1 em,h2 em{
  font-family:Georgia,"Times New Roman",serif;
  font-style:italic;
  font-weight:400;
  color:var(--orange);
  letter-spacing:-.065em;
}
.lead{
  max-width:620px;
  color:#52635c;
  font-size:18px;
  line-height:1.76;
}
.hero-actions{display:flex;align-items:center;gap:28px;margin-top:32px}
.plain-link{font-size:13px;font-weight:750;display:flex;align-items:center;gap:18px}
.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:9px 18px;
  margin-top:25px;
  color:#68766f;
  font-size:11px;
}
.trust-row span{display:flex;align-items:center;gap:5px}

.hero-card{
  position:relative;
  background:linear-gradient(145deg,#102a27,#183a34);
  padding:29px 26px 58px;
  border-radius:19px;
  box-shadow:0 32px 80px rgba(16,42,39,.18);
  transform:rotate(.45deg);
  min-width:0;
}
.mockbar{
  display:flex;
  align-items:center;
  gap:12px;
  color:#d8e4dc;
  font-size:9px;
  font-weight:700;
  letter-spacing:.1em;
  margin-bottom:22px;
}
.mockbar small{margin-left:auto;opacity:.68;font-size:8px}
.dots{color:#8ba49a;letter-spacing:3px}
.mockbody{
  background:#fff;
  border-radius:12px;
  padding:23px 20px 8px;
  transform:rotate(-.45deg);
  box-shadow:0 18px 40px rgba(0,0,0,.2);
}
.mockhead{display:flex;align-items:center;justify-content:space-between}
.mini-label{font-size:8px;letter-spacing:.12em;color:#829089;font-weight:750}
.mockhead h2{font-size:29px;margin-top:5px}
.avatar{
  width:36px;
  height:36px;
  border-radius:50%;
  background:#edf0eb;
  display:grid;
  place-items:center;
  font-size:11px;
  font-weight:800;
}
.metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border:1px solid #e6eae4;
  border-radius:9px;
  margin:19px 0 10px;
  background:#fafbf8;
  overflow:hidden;
}
.metrics div{padding:13px;border-left:1px solid #e6eae4;display:flex;flex-direction:column}
.metrics div:first-child{border-left:0}
.metrics strong{font-size:27px;font-weight:520;line-height:1}
.metrics span{font-size:8px;color:#7a877f;margin-top:6px}
.task{display:flex;align-items:center;gap:11px;padding:15px 2px;border-bottom:1px solid #edf0eb}
.task:last-child{border-bottom:0}
.task>div{flex:1;display:flex;flex-direction:column}
.task strong{font-size:10px;letter-spacing:0}
.task small{font-size:8px;color:#77847d;margin-top:2px}
.task>b{font-size:8px;color:var(--orange);background:#fff1e8;padding:4px 7px;border-radius:5px}
.icon{width:29px;height:29px;border-radius:8px;display:grid;place-items:center;font-size:16px;flex:0 0 auto}
.warm{background:#fff0e6;color:#b84b23}
.cool{background:#e8f0e6;color:#3f7250}
.purple{background:#eee9f4;color:var(--purple)}
.float-note{
  position:absolute;
  right:-17px;
  bottom:17px;
  max-width:90%;
  background:var(--peach);
  border-radius:10px;
  padding:13px 18px 13px 12px;
  display:flex;
  gap:11px;
  align-items:center;
  transform:rotate(-2.2deg);
  box-shadow:0 10px 26px rgba(0,0,0,.16);
}
.float-note>span{
  width:30px;
  height:30px;
  border-radius:50%;
  background:var(--forest);
  color:#fff;
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.float-note div{display:flex;flex-direction:column}
.float-note b{font-size:10px}
.float-note small{font-size:9px}

.bar{
  background:#ebece5;
  border-top:1px solid #dde1d9;
  border-bottom:1px solid #dde1d9;
}
.bar-inner{min-height:84px;display:grid;grid-template-columns:repeat(4,1fr);align-items:center}
.bar-inner span{font-size:12px;font-weight:680;padding:0 26px;border-left:1px solid #d9ddd5}
.bar-inner span:first-child{border-left:0;padding-left:0}
.bar-inner b{color:var(--orange);font-size:10px;margin-right:8px}

.section{padding-top:110px;padding-bottom:110px}
.section-head{
  display:grid;
  grid-template-columns:1.28fr .72fr;
  gap:70px;
  align-items:end;
  margin-bottom:48px;
}
.section-head h2,.product-copy h2,.safety h2,.fit-grid h2,.closing h2{
  font-size:clamp(42px,4vw,62px);
  margin-top:17px;
}
.section-head>p{color:var(--muted);line-height:1.78;max-width:440px}

.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.steps article{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:28px 27px 26px;
  min-height:355px;
  display:flex;
  flex-direction:column;
  box-shadow:0 0 0 rgba(16,42,39,0);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.steps article:hover{transform:translateY(-3px);box-shadow:var(--shadow-soft);border-color:#d4dbd3}
.num{font-size:9px;font-weight:800;letter-spacing:.14em;color:#78857e}
.step-icon{
  width:45px;
  height:45px;
  border-radius:12px;
  background:#f5e9e0;
  color:var(--orange);
  display:grid;
  place-items:center;
  font-size:22px;
  margin:40px 0 23px;
}
.steps h3{font-size:27px}
.steps p{font-size:14px;color:#66746d;line-height:1.72;margin:15px 0 20px}
.tag{
  margin-top:auto;
  align-self:flex-start;
  background:#f2f3ee;
  border-radius:999px;
  padding:5px 9px;
  font-size:9px;
  font-weight:750;
  color:#5e6f66;
}

.outcome-wrap{
  padding-top:0;
  background:linear-gradient(180deg,transparent 0,rgba(255,255,255,.35) 100%);
}
.outcomes{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:#dfe4dd;
  border:1px solid #dfe4dd;
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.outcomes article{background:var(--cream-2);padding:34px 30px 31px;min-height:230px}
.outcomes article>span{
  width:30px;height:30px;border-radius:50%;
  display:grid;place-items:center;
  background:#f1e7df;color:var(--orange);
  font-size:9px;font-weight:800;
  margin-bottom:31px;
}
.outcomes h3{font-size:25px}
.outcomes p{color:var(--muted);font-size:13px;line-height:1.72;margin-top:12px}

.fit-wrap{background:var(--forest);color:#fff}
.fit-grid{display:grid;grid-template-columns:.92fr 1.08fr;gap:80px;align-items:center}
.fit-grid h2 em{color:var(--peach)}
.fit-copy{color:#bfcec6;max-width:490px;line-height:1.82;margin-top:24px}
.industry-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.industry-grid span{
  min-height:76px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:11px;
  background:rgba(255,255,255,.045);
  display:flex;
  align-items:center;
  padding:17px;
  font-size:13px;
  font-weight:700;
  transition:background .2s ease,border-color .2s ease;
}
.industry-grid span:hover{background:rgba(255,255,255,.075);border-color:rgba(255,255,255,.2)}

.product-section{display:grid;grid-template-columns:.87fr 1.13fr;gap:76px;align-items:center}
.product-copy>p:not(.eyebrow):not(.smallprint){color:var(--muted);line-height:1.8;margin:23px 0 23px;max-width:510px}
.product-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 16px;
  max-width:550px;
  margin:0 0 28px;
  color:#55675f;
  font-size:12px;
  font-weight:650;
}
.product-points span{display:flex;gap:7px;align-items:flex-start}
.smallprint{font-size:10px;color:#7c8782;margin-top:13px;max-width:470px;line-height:1.6}

.product-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:17px;
  padding:26px;
  box-shadow:var(--shadow);
}
.panel-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.panel-top h3{font-size:25px;margin-top:5px}
.status-live{
  font-size:9px;
  font-weight:800;
  color:var(--green);
  background:#edf4ed;
  border-radius:999px;
  padding:5px 9px;
  display:flex;
  align-items:center;
  gap:5px;
}
.status-live i{width:6px;height:6px;background:#62a278;border-radius:50%}
.panel-metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border:1px solid #e8ebe6;
  border-radius:9px;
  overflow:hidden;
  margin-bottom:13px;
}
.panel-metrics div{padding:16px;border-left:1px solid #e8ebe6;display:flex;flex-direction:column}
.panel-metrics div:first-child{border-left:0}
.panel-metrics span{font-size:8px;font-weight:800;letter-spacing:.09em;color:#7b8881}
.panel-metrics strong{font-size:30px;font-weight:520;margin:5px 0}
.panel-metrics small{font-size:8px;color:#849088}
.panel-row{
  display:grid;
  grid-template-columns:74px 1fr auto;
  align-items:center;
  gap:13px;
  border-top:1px solid #edf0eb;
  padding:16px 4px;
}
.panel-row div{display:flex;flex-direction:column}
.panel-row b{font-size:11px}
.panel-row small,.panel-row>span:last-child{font-size:9px;color:#7d8982}
.state{font-size:8px;font-weight:800;letter-spacing:.06em;padding:4px 7px;border-radius:5px;text-align:center}
.state.red{background:#fff0e8;color:#af4b28}
.state.green{background:#eaf3ea;color:#4b7755}
.state.violet{background:#efebf4;color:#705f86}
.panel-foot{
  margin-top:8px;
  background:#f6f7f3;
  border-radius:9px;
  padding:13px 14px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  font-size:9px;
  color:#718079;
}
.panel-foot b{color:var(--ink);font-size:9px}

.safety{display:grid;grid-template-columns:.76fr 1.24fr;gap:70px;align-items:start}
.safety-intro{color:var(--muted);line-height:1.78;margin-top:25px;max-width:430px}
.safety-cards{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.safety-cards article{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:23px;
  min-height:190px;
}
.safety-icon{
  width:34px;height:34px;border-radius:9px;
  background:#f3ebe4;color:var(--orange);
  display:grid;place-items:center;
  font-size:14px;
  margin-bottom:22px;
}
.safety-cards b{display:block;font-size:13px}
.safety-cards p{font-size:12px;color:#6c7972;line-height:1.72;margin-top:8px}

.closing{background:linear-gradient(135deg,var(--forest-2),#102a27);color:#fff;padding:92px 0}
.closing-inner{display:grid;grid-template-columns:1fr .72fr;gap:80px;align-items:center}
.closing h2 em{color:var(--peach)}
.closing-inner>div:last-child p{color:#c2d0c9;line-height:1.82;margin-bottom:25px}

.footer{
  min-height:120px;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  align-items:center;
  border-top:1px solid var(--line);
  font-size:11px;
  color:#6c7972;
}
.footer>span{text-align:right}

@media(max-width:950px){
  .shell{width:min(100% - 44px,1220px)}
  .header nav{display:none}
  .hero,.fit-grid,.product-section,.safety,.section-head,.closing-inner{grid-template-columns:1fr}
  .hero{gap:62px}
  .hero-card{max-width:680px}
  .bar-inner{grid-template-columns:1fr 1fr}
  .bar-inner span{padding:18px 10px;border:0;border-top:1px solid #d9ddd5}
  .steps{grid-template-columns:1fr}
  .steps article{min-height:0}
  .outcomes{grid-template-columns:1fr}
  .outcomes article{min-height:0}
  .industry-grid{grid-template-columns:repeat(2,1fr)}
  .safety-cards{grid-template-columns:1fr 1fr}
  .section-head{gap:28px}
  .footer{grid-template-columns:1fr;gap:10px;padding:30px 0}
  .footer>span{text-align:left}
}

@media(max-width:620px){
  .shell{width:calc(100% - 30px)}
  .topline{font-size:8px;letter-spacing:.08em}
  .header{height:78px;gap:12px}
  .logo{font-size:22px}
  .logo-mark{width:32px;height:32px}
  .header-cta{
    display:inline-flex;
    min-height:36px;
    padding:7px 10px;
    font-size:10px;
    gap:8px;
  }
  .hero{padding-top:54px;padding-bottom:72px}
  .hero:before{display:none}
  .hero h1{font-size:48px}
  .lead{font-size:15px}
  .hero-actions{align-items:stretch;flex-direction:column;gap:14px}
  .plain-link{justify-content:center}
  .trust-row{display:grid}
  .hero-card{padding:21px 15px 53px;transform:none}
  .mockbar{font-size:8px}
  .mockbar small{display:none}
  .mockbody{padding:18px 13px 7px;transform:none}
  .mockhead h2{font-size:23px}
  .metrics strong{font-size:22px}
  .task{gap:8px}
  .float-note{right:-5px;max-width:94%}
  .bar-inner{grid-template-columns:1fr}
  .section{padding-top:80px;padding-bottom:80px}
  .section-head h2,.product-copy h2,.safety h2,.fit-grid h2,.closing h2{font-size:39px}
  .industry-grid{grid-template-columns:1fr 1fr}
  .product-points{grid-template-columns:1fr}
  .panel-metrics{grid-template-columns:1fr}
  .panel-metrics div{border-left:0;border-top:1px solid #e8ebe6}
  .panel-metrics div:first-child{border-top:0}
  .panel-row{grid-template-columns:62px 1fr}
  .panel-row>span:last-child{display:none}
  .panel-foot{flex-direction:column;gap:3px}
  .safety-cards{grid-template-columns:1fr}
  .safety-cards article{min-height:0}
  .closing{padding:72px 0}
  .footer{min-height:0}
}

@media(max-width:390px){
  .header-cta span{display:none}
  .header-cta{padding-inline:9px}
  .hero h1{font-size:43px}
  .industry-grid{grid-template-columns:1fr}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*:before,*:after{transition:none!important}
}
