:root{
      --blue:#0a88b5;
      --blue-dark:#076d94;
      --blue-light:#edf6fa;
      --ink:#202124;
      --muted:#62676c;
      --line:#d9dcde;
      --soft:#f4f5f5;
      --mint:#edf8f4;
      --white:#fff;
      --gold:#b98942;
      --navy:#173347;
    }

    html{scroll-behavior:smooth}
    body{
      margin:0;
      background:var(--white);
      color:var(--ink);
      font-family:Arial,Helvetica,sans-serif;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }

    a{color:inherit;text-decoration:none}
    img{max-width:100%;height:auto}
    .wrap{width:min(1080px,calc(100% - 56px));margin-inline:auto}

    /* Typography */
    h1,h2,h3{
      font-family:Georgia,"Times New Roman",serif;
      font-weight:400;
      letter-spacing:-.04em;
    }

    .eyebrow{
      margin:0 0 18px;
      color:var(--blue);
      font-size:11px;
      line-height:1.3;
      font-weight:800;
      letter-spacing:.10em;
      text-transform:uppercase;
    }

    /* Buttons copied from the visual language of Pareto-Marketing-Page */
    .button{
      min-height:48px;
      padding:0 33px;
      border-radius:999px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:16px;
      font-size:13px;
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:.015em;
      transition:background .2s ease,border-color .2s ease,transform .2s ease;
    }
    .button:hover{transform:translateY(-1px)}
    .button-primary{
      color:var(--white);
      background:var(--blue);
      border:1px solid var(--blue);
    }
    .button-primary:hover{background:var(--blue-dark);border-color:var(--blue-dark)}
    .button-secondary{
      color:var(--blue-dark);
      background:transparent;
      border:1px solid var(--blue);
    }
    .button-secondary:hover{background:var(--blue-light)}
    .hero .button-secondary{
      color:var(--white);
      border-color:#5ccbe8;
    }
    .hero .button-secondary:hover{
      background:rgba(92,203,232,.12);
    }

    /* HERO */
    .hero{
      position:relative;
      padding:100px 0 88px;
      border-bottom:1px solid var(--line);
      overflow:hidden;
      color:var(--white);
      background:linear-gradient(110deg,#071e31,#0c314e 62%,#0b3857);
    }

    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      opacity:.09;
      pointer-events:none;
      background-image:
        linear-gradient(#fff 1px,transparent 1px),
        linear-gradient(90deg,#fff 1px,transparent 1px);
      background-size:72px 72px;
    }

    .hero-grid{
      position:relative;
      z-index:1;
      display:grid;
      /*grid-template-columns:1.18fr 1.1fr;*/ /*.84fr;*/
      align-items:center;
      gap:72px;
    }

    .hero-pill{
      width:max-content;
      max-width:100%;
      margin:0 0 30px;
      padding:8px 15px;
      border-radius:999px;
      color:#187799;
      background:var(--blue-light);
      font-size:13px;
    }
    .hero-pill span{
      display:inline-block;
      width:6px;
      height:6px;
      margin-right:9px;
      border-radius:50%;
      background:var(--blue);
      vertical-align:middle;
    }

    h1{
      margin:0;
      max-width:800px; /*720px;*/
      font-size:clamp(46px,5vw,68px);
      line-height:1.05;
    }
    h1 em{color:var(--blue);font-style:normal}

    .hero-lead{
      max-width:680px;
      margin:29px 0 30px;
      color:#c8d7e0;
      font-size:17px;
      line-height:1.75;
    }

    .hero-buttons{
      display:flex;
      flex-wrap:nowrap;
      gap:12px;
    }
    
    .hero-buttons .button{
	  flex:0 0 auto;      /* size to content, don't stretch */
	  white-space:nowrap; /* keep each label on one line */
	}

    .hero-benefits{
      list-style:none;
      padding:0;
      margin:38px 0 0;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px 24px;
      color:#d4e0e7;
      font-size:13px;
    }
    .hero-benefits li{display:flex;align-items:center}
    .hero-benefits span{
      flex:0 0 19px;
      width:19px;
      height:19px;
      margin-right:8px;
      border-radius:4px;
      display:inline-grid;
      place-items:center;
      color:#48a98d;
      background:var(--mint);
      font-size:11px;
      font-weight:800;
    }

    /* Main hero visual adapted from the Marketing & Technology page */
    .ecosystem-visual{
      position:relative;
      min-height:450px;
      border:1px solid var(--line);
      border-radius:14px;
      background:
        linear-gradient(rgba(10,136,181,.045) 1px,transparent 1px),
        linear-gradient(90deg,rgba(10,136,181,.045) 1px,transparent 1px),
        linear-gradient(155deg,#fbfcfd 0%,#e8f4f8 100%);
      background-size:44px 44px,44px 44px,auto;
      box-shadow:0 10px 24px rgba(32,42,48,.08);
      overflow:hidden;
    }

    .ecosystem-top{
      height:54px;
      padding:0 21px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      border-bottom:1px solid var(--line);
      color:var(--muted);
      font-size:10px;
      font-weight:700;
      letter-spacing:.10em;
      text-transform:uppercase;
      background:rgba(255,255,255,.78);
    }

/* ECOSYSTEM QUICK-LINKS (replaces the orbit visual) */
/*
.ecosystem-links{
  position:relative;
  min-height:450px;
  border:1px solid var(--line);
  border-radius:0;
  background:var(--white);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
*/
/* container becomes a transparent stack, not a bordered card */
.ecosystem-links{
  display: none !important;
  position:relative;
  min-height:465px; /*450px;*/
  border:0;                 /* was 1px solid — remove the outer card border */
  border-radius:0;
  background:transparent;   /* was white */
  overflow:visible;
  display:flex;
  flex-direction:column;
  gap:12px;                 /* space between the separate link cards */
  justify-content:space-between;
}

/* top bar — reuses the same look as the old .ecosystem-top */
.ecosystem-links .ecosystem-top{
  height:54px;
  padding:0 21px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
  color:var(--muted);
  font-size:10px;
  font-weight:700;
  letter-spacing:.10em;
  text-transform:uppercase;
  background:rgba(255,255,255,.78);
  flex:0 0 auto;
}

/* each row: number chip | tinted label | white logo area | chevron */
/*.eco-link{
  display:grid;
  grid-template-columns:56px 1.05fr 1.25fr 34px;
  align-items:stretch;
  flex:1;
  min-height:0;
  border-bottom:1px solid var(--line);
  background:var(--white);
  transition:background .2s ease;
}
.eco-link:last-of-type{border-bottom:0}
.eco-link:hover{background:#f7fafb}*/

/* each row becomes its own bordered, rounded card */
.eco-link{
  display:grid;
  grid-template-columns:32px 1.05fr 1.25fr 40px; /*grid-template-columns:34px 1.05fr 1.25fr 34px;*/ /*grid-template-columns:56px 1.05fr 1.25fr 34px;*/
  align-items:stretch;
  flex:1;
  min-height:0;
  border:0; /*1px solid var(--line);*/   /* was border-bottom only */
  border-radius:0px;             /* rounded like the mockup */
  overflow:hidden;                /* clip children to the rounded corners */
  background:var(--white);
  transition:background .2s ease, transform .2s ease;
}
.eco-link:hover{
  background:#f7fafb;
  transform:translateY(-1px);     /* subtle lift, optional */
}


/* brand-colored number chip */
.eco-num{
  display:grid;
  place-items:center;
  color:#fff;
  font-size:11px;         /* was 13px */
  letter-spacing:0;       /* was .04em */
  font-weight:500;
}
.eco-link.toolkit .eco-num{background:#16387D}
.eco-link.lavish  .eco-num{background:#224568}
.eco-link.idea    .eco-num{background:#EF4823}
.eco-link.design  .eco-num{background:#016BA5}
.eco-link.amplify .eco-num{background:#CC0436}
.eco-link.pfo     .eco-num{background:#705844}

/* tinted descriptor label, fading right into the white logo area */
.eco-label{
  display:flex;
  align-items:center;
  padding:0 18px;
  color:#8a9096;/*#5b6166;*/
  font-size:12px;
  font-weight:700;
  line-height:1.2;
  letter-spacing:.14em;
  text-transform:uppercase;
  white-space:nowrap;
}
/*
.eco-link.toolkit .eco-label{color:#16387D}
.eco-link.lavish  .eco-label{color:#224568}
.eco-link.idea    .eco-label{color:#EF4823}
.eco-link.design  .eco-label{color:#016BA5}
.eco-link.amplify .eco-label{color:#CC0436}
.eco-link.pfo     .eco-label{color:#705844}
*/
.eco-link.toolkit .eco-label{background:linear-gradient(90deg,#eef2f7,#ffffff)}
.eco-link.lavish  .eco-label{background:linear-gradient(90deg,#eef2f6,#ffffff)}
.eco-link.idea    .eco-label{background:linear-gradient(90deg,#fdeee9,#ffffff)}
.eco-link.design  .eco-label{background:linear-gradient(90deg,#e9f2f8,#ffffff)}
.eco-link.amplify .eco-label{background:linear-gradient(90deg,#fbe9ee,#ffffff)}
.eco-link.pfo     .eco-label{background:linear-gradient(90deg,#f2eee9,#ffffff)}
/*
.eco-link.toolkit .eco-label{background:linear-gradient(90deg,#eaeff7,#ffffff)}
.eco-link.lavish  .eco-label{background:linear-gradient(90deg,#eaf0f6,#ffffff)}
.eco-link.idea    .eco-label{background:linear-gradient(90deg,#fdece7,#ffffff)}
.eco-link.design  .eco-label{background:linear-gradient(90deg,#e6f2f8,#ffffff)}
.eco-link.amplify .eco-label{background:linear-gradient(90deg,#fbe6ec,#ffffff)}
.eco-link.pfo     .eco-label{background:linear-gradient(90deg,#f1ece7,#ffffff)}
*/
/* white area holding the logo */
.eco-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px 18px;
  background:var(--white);
}

/*
.eco-logo img{
  max-height:44px;
  max-width:100%;
  width:auto;
  height:auto;
  object-fit:contain;
}
*/

.eco-logo img{
  height:40px;          /* fixed — every logo renders at this height */
  max-height:none;      /* remove the old max-height cap */
  width:auto;
  max-width:100%;
  object-fit:contain;
}

/* chevron */
.eco-arrow{
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  color:#2c3238;
  font-size:20px;
  font-weight:800;
}
/*
.eco-arrow{
  display:grid;
  place-items:center;
  color:var(--muted);
  font-size:22px;
  font-weight:700;
}
*/
.partner-card{
  scroll-margin-top:70px;   /* adjust to roughly your header height + a little breathing room */
}

/* Mobile */
@media(max-width:600px){
  .ecosystem-links{min-height:0}
  .eco-link{grid-template-columns:26px 1fr 1.1fr 28px} /*(grid-template-columns:44px 1fr 1.1fr 28px*/
  .eco-num{font-size:12px}
  .eco-label{padding:0 12px;font-size:10px;letter-spacing:.10em}
  .eco-logo{padding:8px 12px}
  .eco-logo img{max-height:28px}
  .eco-arrow{font-size:18px}
}
 .orbit{
   position:absolute;
   width:356px;
   height:356px;
   left:50%;
   top:56%;
   transform:translate(-50%,-50%);
 }

 .ring{
   position:absolute;
   inset:12px;
   border:1px solid rgba(10,136,181,.35);
   border-radius:50%;
 }
 .ring.two{
   inset:71px;
   border-style:dashed;
   border-color:rgba(10,136,181,.28);
 }

 .core{
   position:absolute;
   inset:119px;
   display:flex;
   flex-direction:column;
   align-items:center;
   justify-content:center;
   border:1px solid var(--line);
   background:var(--white);
   box-shadow:0 12px 30px rgba(23,51,71,.12);
 }
 .core-mark{
   width:44px;
   height:44px;
   display:grid;
   place-items:center;
   border-radius:50%;
   background:var(--blue);
   color:var(--white);
   font:24px Georgia,serif;
 }
 .core small{
   margin-top:9px;
   color:var(--navy);
   text-align:center;
   font-size:9px;
   line-height:1.25;
   font-weight:800;
   letter-spacing:.12em;
 }

 .node{
   position:absolute;
   min-width:94px;
   padding:10px 12px;
   border:1px solid #c9dfe8;
   border-radius:999px;
   background:rgba(255,255,255,.94);
   color:var(--blue-dark);
   text-align:center;
   font-size:9px;
   line-height:1.15;
   font-weight:800;
   letter-spacing:.10em;
   text-transform:uppercase;
   box-shadow:0 5px 13px rgba(32,42,48,.05);
 }
 .n1{top:7px;left:50%;transform:translateX(-50%)}
 .n2{right:-10px;top:50%;transform:translateY(-50%)}
 .n3{left:-12px;top:50%;transform:translateY(-50%)}
 .n4{bottom:4px;left:50%;transform:translateX(-50%)}

 /* BRIDGE */
 .bridge{
   padding:88px 0 94px;
   background:var(--soft);
   border-bottom:1px solid #e3e5e6;
 }

 .bridge-grid{
   display:grid;
   grid-template-columns:1fr 1fr;
   gap:85px;
   align-items:start;
 }

 h2{
   margin:0;
   font-size:clamp(38px,4vw,54px);
   line-height:1.07;
 }

 .bridge-copy > p{
   margin:0 0 30px;
   color:var(--muted);
   font-size:16px;
   line-height:1.75;
 }

 .outcomes{border-top:1px solid var(--line)}
 .outcome{
   display:grid;
   grid-template-columns:36px 1fr;
   gap:12px;
   align-items:center;
   padding:16px 0;
   border-bottom:1px solid var(--line);
   color:#3f474c;
   font-size:14px;
   font-weight:700;
 }
 .outcome b{
   color:var(--blue);
   font-size:10px;
   letter-spacing:.08em;
 }

 /* PARTNERS */
   .partners{padding:96px 0 104px}

   .section-intro{
     display:grid;
     grid-template-columns:1.12fr .88fr;
     gap:90px;
     align-items:end;
     margin-bottom:55px;
   }

   .section-intro > p{
     margin:0;
     color:var(--muted);
     font-size:15px;
     line-height:1.72;
   }

   .partner-list{
     display:flex;
     flex-direction:column;
     gap:26px;
   }

   .partner-card{
     display:grid;
     grid-template-columns:minmax(330px,.86fr) 1.14fr;
     min-height:445px;
     border:1px solid var(--line);
     border-radius:12px;
     overflow:hidden;
     background:var(--white);
     box-shadow:0 7px 20px rgba(32,42,48,.035);
   }

   .partner-visual{
     position:relative;
     min-height:420px;
     padding:27px;
     overflow:hidden;
     border-right:1px solid var(--line);
     background:
       linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),
       linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px),
       var(--navy);
     background-size:42px 42px,42px 42px,auto;
     color:var(--white);
   }

   .visual-top{
     display:flex;
     justify-content:space-between;
     gap:20px;
     color:rgba(255,255,255,.72);
     font-size:9px;
     font-weight:800;
     letter-spacing:.14em;
     text-transform:uppercase;
   }

   .visual-symbol{
     position:absolute;
     inset:78px 42px 102px;
     display:grid;
     place-items:center;
     border:1px solid rgba(255,255,255,.26);
     font:58px Georgia,serif;
     background:rgba(255,255,255,.045);
   }

   .visual-mark{
     position:absolute;
     left:42px;
     right:42px;
     bottom:36px;
     font-size:16px;
     line-height:1.25;
     font-weight:800;
     letter-spacing:.08em;
     text-transform:uppercase;
   }
   
   .visual-symbol img{
  max-width:78%;
  max-height:60%;
  object-fit:contain;
}

/* Toolkit: full image fill instead of white logo plate */
.visual-symbol.visual-image{
  background:transparent;      /* kill the white plate */
  border:0;                    /* kill the plate border */
  padding:0;
  overflow:hidden;
}
.visual-symbol.visual-image img{
  max-width:100%;
  max-height:100%;
  width:100%;
  height:100%;
  object-fit:cover;            /* fill the area, cropping as needed */
}

/* make the plate white so every logo stays legible on the colored panel */
/*.toolkit .visual-symbol,*/
.lavish  .visual-symbol,

.amplify .visual-symbol,
.pfo     .visual-symbol,
.design  .visual-symbol{
  background:var(--white);
  border-color:rgba(0,0,0,.06);
}

.idea .visual-symbol{background-color:#ec7055;}
   
/*
    .idea .visual-symbol{color:#ec7055}

    .toolkit .visual-symbol{color:#f2c84b}
*/
 
/*
    .design .visual-symbol{
      color:#138ab6;
      background:var(--white);
    }
*/
 
 
.toolkit .partner-visual{background-color:#16387D}   /* Toolkit CRM  — brand blue */
.lavish  .partner-visual{background-color:#224568}   /* Lavish Cards — brand blue */
.idea    .partner-visual{background-color:#EF4823}   /* Idea Decanter — brand orange */
.design  .partner-visual{background-color:#016BA5}   /* Pareto Graphic Design — brand blue */
.amplify .partner-visual{background-color:#CC0436}   /* Amplify Reviews — brand red */
.pfo     .partner-visual{background-color:#705844}   /* Amplify Reviews — brand brown */
/*
.idea .visual-symbol{color:#ec7055}
.toolkit .visual-symbol{color:#f2c84b}
.design .visual-symbol{color:#138ab6;background:var(--white)}
.lavish .visual-symbol{ border:13px solid #f5f1e7;background:linear-gradient(145deg,#d2a558,#5d795e 48%,#eee6d4 51%);color:transparent;}
.pfo .visual-symbol{ background:linear-gradient(140deg,#b9946c,#725740);box-shadow:16px 18px 25px rgba(0,0,0,.18);}
*/
 .partner-content{
   padding:45px clamp(32px,5vw,68px);
   display:flex;
   flex-direction:column;
   align-items:flex-start;
 }

 .partner-number{
   margin:0 0 9px;
   color:var(--blue);
   font-size:10px;
   font-weight:800;
   letter-spacing:.12em;
   text-transform:uppercase;
 }

 .partner-content h3{
   margin:0 0 16px;
   font-size:clamp(31px,3vw,39px);
   line-height:1.07;
 }

 .partner-content h4{
   margin:0 0 14px;
   font-size:19px;
   line-height:1.4;
   font-weight:700;
   color:#303438;
 }

 .partner-content > p:not(.partner-number){
   margin:0;
   color:var(--muted);
   font-size:14px;
   line-height:1.72;
 }

 .feature-list{
   width:100%;
   list-style:none;
   padding:0;
   margin:22px 0 25px;
   display:grid;
   grid-template-columns:1fr 1fr;
   gap:10px 24px;
 }

 .feature-list li{
   position:relative;
   padding-left:20px;
   color:#51595e;
   font-size:12px;
   line-height:1.45;
   font-weight:700;
 }

 .feature-list li::before{
   content:"✓";
   position:absolute;
   left:0;
   top:0;
   color:#48a98d;
   font-size:12px;
   font-weight:800;
 }

 .text-link{
   margin-top:auto;
   padding-top:16px;
   border-top:1px solid var(--line);
   color:#187799;
   font-size:11px;
   font-weight:800;
   letter-spacing:.025em;
   text-transform:uppercase;
 }

 /* FINAL CTA */
 .closing{
   padding:70px 0;
   background:var(--blue-med);
   color:var(--white);
 }

 .closing-grid{
   display:flex;
   align-items:center;
   justify-content:space-between;
   gap:40px;
 }

 .closing .eyebrow{color:#d8f1fa}
 .closing h2{max-width:720px}
 .button-light{
   flex:0 0 auto;
   color:var(--blue-dark);
   background:var(--white);
   border:1px solid var(--white);
   white-space:nowrap;
 }
 .button-light:hover{background:#eff7fa}

 /* Mobile */
 @media(max-width:920px){
   .wrap{width:min(720px,calc(100% - 48px))}
   .hero{padding:58px 0 68px}
   .hero-grid{grid-template-columns:1fr;gap:48px}
   .ecosystem-visual{min-height:410px}
   .bridge-grid,.section-intro{grid-template-columns:1fr;gap:28px}
   .partner-card{grid-template-columns:1fr}
   .partner-visual{
     min-height:330px;
     border-right:0;
     border-bottom:1px solid var(--line);
   }
   .closing-grid{align-items:flex-start;flex-direction:column}
 }

 @media(max-width:600px){
   .wrap{width:calc(100% - 40px)}
   .hero{padding:75px 0 58px}
   h1{font-size:41px}
   .hero-lead{font-size:15px}
   .hero-buttons{flex-direction:column}
   .hero-benefits{grid-template-columns:1fr;margin-top:32px}

   .ecosystem-visual{min-height:345px}
   .ecosystem-top{height:50px;padding:0 17px}
   .orbit{
     width:284px;
     height:284px;
     top:58%;
   }
   .ring{inset:15px}
   .ring.two{inset:58px}
   .core{inset:95px}
   .node{min-width:78px;padding:8px 9px;font-size:8px}
   .n2{right:-5px}
   .n3{left:-5px}

   .bridge{padding:64px 0 70px}
   .partners{padding:70px 0 78px}
   h2{font-size:36px}
   .section-intro{margin-bottom:40px}

   .partner-list{gap:20px}
   .partner-visual{min-height:285px;padding:22px}
   .visual-symbol{inset:63px 33px 80px;font-size:49px}
   .visual-mark{left:33px;right:33px;bottom:27px;font-size:14px}
   .visual-symbol.visual-image{inset:0;}
   .visual-symbol.visual-image::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.45) 0%,rgba(0,0,0,.10) 26%,rgba(0,0,0,.10) 58%,rgba(0,0,0,.60) 100%);}
   .partner-visual .visual-top{ position:relative; z-index:2; }
   .partner-visual .visual-mark{ z-index:2; }
   .partner-content{padding:34px 27px 38px}
   .partner-content h3{font-size:31px}
   .partner-content h4{font-size:17px}
   .feature-list{grid-template-columns:1fr}
   .idea .visual-symbol {inset: 34px 33px 80px;}
   .idea .visual-symbol{background:transparent;border:0;}
   .closing{padding:58px 0}
   .button-light{white-space:normal}
 }

 @media(prefers-reduced-motion:reduce){
   html{scroll-behavior:auto}
   .button{transition:none}
 }