/* Potu-inspired local redesign layer. Kept separate so this direction can be reviewed safely before publishing. */
.potu-refresh{
  --potu-bg:#f7f2ee;
  --potu-ink:#0d0d0b;
  --potu-muted:#6e6862;
  --potu-soft:#ebe1d8;
  --potu-card:#fffaf5;
  --potu-orange:#ff6f0f;
  --potu-line:#ded3ca;
  --potu-dark:#11100e;
  background:var(--potu-bg);
  color:var(--potu-ink);
  cursor:none;
}
.potu-refresh[data-theme="dark"],html[data-theme="dark"] .potu-refresh{
  --potu-bg:#11100e;
  --potu-ink:#f8f1ea;
  --potu-muted:#b7aca3;
  --potu-soft:#1d1a17;
  --potu-card:#191612;
  --potu-line:#302b25;
  --potu-dark:#080806;
}
.potu-refresh .potu-loader{
  position:fixed;
  inset:0;
  z-index:999;
  display:grid;
  place-items:center;
  grid-auto-flow:column;
  gap:10px;
  background:var(--potu-dark);
  color:var(--potu-orange);
  font-family:Manrope,sans-serif;
  font-size:clamp(42px,8vw,120px);
  letter-spacing:.18em;
  pointer-events:none;
  animation:potu-loader-out .9s ease 1.1s forwards;
}
.potu-refresh .potu-loader span{
  animation:potu-loader-letter .9s ease both;
}
.potu-refresh .potu-loader span:nth-child(2){animation-delay:.08s}
.potu-refresh .potu-loader span:nth-child(3){animation-delay:.16s}
.potu-refresh .potu-loader span:nth-child(4){animation-delay:.24s}
.potu-refresh .potu-loader span:nth-child(5){animation-delay:.32s}
.potu-refresh .potu-loader span:nth-child(6){animation-delay:.4s}
.potu-refresh .potu-cursor{
  position:fixed;
  z-index:1000;
  width:22px;
  height:22px;
  border:1px solid var(--potu-orange);
  border-radius:50%;
  transform:translate(-50%,-50%);
  pointer-events:none;
  mix-blend-mode:difference;
  opacity:0;
  transition:width .18s,height .18s,opacity .18s,background .18s;
}
.potu-refresh .potu-cursor.is-visible{opacity:1}
.potu-refresh .potu-cursor.is-hovering{
  width:58px;
  height:58px;
  background:rgba(255,111,15,.2);
}
.potu-refresh header{
  height:92px;
  top:18px;
  left:4vw;
  right:4vw;
  width:auto;
  margin:0 auto;
  border:1px solid color-mix(in srgb,var(--potu-line),transparent 20%);
  border-radius:999px;
  background:color-mix(in srgb,var(--potu-bg),transparent 10%);
  box-shadow:0 24px 80px rgba(20,15,10,.08);
}
.potu-refresh .logo{
  display:inline-flex;
  align-items:center;
  gap:2px;
  color:var(--potu-ink);
  font-family:Manrope,sans-serif;
  font-size:22px;
  font-weight:600;
  letter-spacing:-.045em;
  white-space:nowrap;
}
.potu-refresh .logo span{
  color:var(--potu-orange);
}
.potu-refresh nav{
  gap:10px;
  align-items:center;
}
.potu-refresh nav a{
  color:var(--potu-ink);
  padding:12px 18px;
  border-radius:999px;
  font-weight:600;
}
.potu-refresh nav a:hover{
  color:var(--potu-orange);
  box-shadow:inset 0 0 0 1px var(--potu-orange);
  transform:rotate(-4deg);
}
.potu-refresh .avail,
.potu-refresh .theme-toggle{
  background:var(--potu-card);
  border-color:var(--potu-line);
  color:var(--potu-ink);
  box-shadow:0 14px 35px rgba(18,13,8,.07);
}
.potu-refresh .avail{
  padding:14px 20px;
  font-weight:700;
}
.potu-refresh .avail i{background:var(--potu-orange);box-shadow:0 0 16px var(--potu-orange)}
.potu-refresh main{overflow:hidden}
.potu-refresh .hero{
  position:relative;
  max-width:none;
  min-height:calc(100vh - 20px);
  padding:170px max(4vw,calc((100vw - 1500px)/2)) 90px;
  background:
    radial-gradient(circle at 88% 14%,rgba(255,111,15,.16),transparent 28%),
    radial-gradient(circle at 15% 70%,rgba(207,244,91,.22),transparent 26%),
    linear-gradient(180deg,var(--potu-bg),color-mix(in srgb,var(--potu-bg),#fff 8%));
}
.potu-refresh .hero:after{
  content:"";
  position:absolute;
  left:-5vw;
  right:-5vw;
  bottom:-1px;
  height:90px;
  background:var(--potu-bg);
  clip-path:polygon(0 55%,18% 70%,36% 50%,54% 76%,72% 54%,100% 70%,100% 100%,0 100%);
}
.potu-refresh .hero-positioning{
  display:flex;
  align-items:center;
  gap:18px;
  color:var(--potu-orange);
  margin:0 0 34px;
}
.potu-refresh .hero-positioning strong{
  color:var(--potu-orange);
}
.potu-refresh .hero-positioning span{
  color:var(--potu-muted);
  letter-spacing:.08em;
}
.potu-refresh .hero-heading-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:40px;
  align-items:end;
  margin-bottom:52px;
}
.potu-refresh .hero-title-stack{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.potu-refresh .hero h1{
  max-width:970px;
  font-size:clamp(76px,9.5vw,162px);
  line-height:.88;
  letter-spacing:-.085em;
  color:var(--potu-ink);
  margin:0;
}
.potu-refresh .hero h1 em{
  color:var(--potu-orange);
  font-style:normal;
}
.potu-refresh .about-contact{
  padding:20px;
  border:1px solid var(--potu-line);
  border-radius:28px;
  background:color-mix(in srgb,var(--potu-card),transparent 8%);
  box-shadow:0 22px 70px rgba(30,20,12,.08);
}
.potu-refresh .about-contact a,
.potu-refresh .about-contact div{
  color:var(--potu-ink);
  border-bottom-color:var(--potu-line);
}
.potu-refresh .about-contact span,
.potu-refresh .about-contact .location-pin{
  color:var(--potu-orange);
}
.potu-refresh .hero-grid{
  grid-template-columns:.78fr 1fr;
  align-items:stretch;
  gap:48px;
}
.potu-refresh .portrait{
  height:min(58vw,640px);
  min-height:520px;
  border-radius:46px;
  background:#d9b38c;
  box-shadow:0 45px 100px rgba(40,24,12,.18);
  transform:none;
}
.potu-refresh .portrait:before{
  content:"";
  position:absolute;
  inset:18px;
  border:1px solid rgba(255,255,255,.45);
  border-radius:34px;
  z-index:2;
  pointer-events:none;
}
.potu-refresh .portrait img{
  filter:saturate(.95) contrast(1.04);
  transform:scale(1.04);
}
.potu-refresh .portrait span{
  z-index:3;
  background:var(--potu-card);
  border-color:var(--potu-line);
  color:var(--potu-ink);
  font-weight:700;
}
.potu-refresh .intro{
  justify-content:end;
  padding:44px;
  border-radius:46px;
  background:var(--potu-card);
  border:1px solid var(--potu-line);
  box-shadow:0 30px 90px rgba(30,20,12,.08);
}
.potu-refresh .intro>p{
  max-width:860px;
  font-size:24px;
  line-height:1.46;
  color:var(--potu-ink);
}
.potu-refresh .primary,
.potu-refresh .secondary{
  position:relative;
  overflow:hidden;
  border-radius:999px;
  padding:16px 24px;
}
.potu-refresh .primary{
  background:var(--potu-orange);
  border-color:var(--potu-orange);
  color:#fff;
}
.potu-refresh .secondary{
  border-color:var(--potu-line);
  color:var(--potu-ink);
  background:transparent;
}
.potu-refresh .potu-socials{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:34px;
}
.potu-refresh .potu-socials span{
  color:var(--potu-muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
}
.potu-refresh .potu-socials a{
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--potu-bg);
  color:var(--potu-ink);
  font-size:12px;
  font-weight:700;
  box-shadow:0 15px 35px rgba(18,13,8,.08);
}
.potu-refresh .potu-socials a:hover{
  background:var(--potu-orange);
  color:#fff;
  transform:translateY(-4px);
}
.potu-marquee{
  max-width:none;
  padding:28px 0!important;
  background:var(--potu-dark);
  color:#fff;
  overflow:hidden;
}
.potu-marquee div{
  display:flex;
  width:max-content;
  gap:34px;
  animation:potu-marquee 38s linear infinite;
}
.potu-marquee span{
  display:flex;
  align-items:center;
  gap:34px;
  white-space:nowrap;
  font-family:Manrope,sans-serif;
  font-size:clamp(28px,4vw,64px);
  letter-spacing:-.055em;
}
.potu-marquee span:after{
  content:"";
  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--potu-orange);
}
.potu-refresh .skills,
.potu-refresh .work,
.potu-refresh .experience,
.potu-refresh .contact{
  max-width:none;
  padding-left:max(4vw,calc((100vw - 1500px)/2));
  padding-right:max(4vw,calc((100vw - 1500px)/2));
  background:var(--potu-bg);
  border-top:0;
}
.potu-refresh .capability-intro,
.potu-refresh .section-head{
  border-bottom:1px solid var(--potu-line);
  padding-bottom:42px;
}
.potu-refresh .capability-intro{
  grid-template-columns:minmax(0,1fr);
  gap:24px;
  align-items:start;
  max-width:1180px;
}
.potu-refresh .eyebrow{
  color:var(--potu-orange);
}
.potu-refresh .section-head h2,
.potu-refresh .capability-intro h2,
.potu-refresh .contact h2{
  color:var(--potu-ink);
  font-size:clamp(52px,6vw,96px);
  letter-spacing:-.075em;
}
.potu-refresh .capability-intro p,
.potu-refresh .section-head p,
.potu-refresh .contact p{
  color:var(--potu-muted);
}
.potu-refresh .capability-intro>p{
  max-width:760px;
  font-size:21px;
  line-height:1.55;
  margin:0;
}
.potu-refresh .capability-proof{
  border:1px solid var(--potu-line);
  border-radius:34px;
  background:var(--potu-card);
  overflow:hidden;
  margin:44px 0;
}
.potu-refresh .capability-proof article{
  border-color:var(--potu-line);
}
.potu-refresh .capability-proof strong{
  color:var(--potu-orange);
}
.potu-refresh .skill-grid{
  display:block;
  border:0;
}
.potu-refresh .skill-grid article{
  min-height:0!important;
  margin:0;
  padding:34px 0;
  border-right:0;
  border-left:0;
  border-bottom:1px solid var(--potu-line);
  background:transparent;
  color:var(--potu-ink);
  display:grid;
  grid-template-columns:160px minmax(330px,1fr) minmax(340px,460px);
  gap:34px;
  align-items:center;
  text-align:left;
}
.potu-refresh .skill-grid article.service-featured,
.potu-refresh .skill-grid article.service-compact,
.potu-refresh .skill-grid article.service-wide,
.potu-refresh .skill-grid article.capability-ops{
  display:grid;
  grid-template-columns:160px minmax(330px,1fr) minmax(340px,460px);
  grid-column:auto;
  min-height:0!important;
  align-items:center;
  height:auto;
  flex-direction:initial;
}
.potu-refresh .skill-grid article>h3{
  grid-column:2;
  grid-row:1;
}
.potu-refresh .skill-grid article>p{
  grid-column:2;
  grid-row:2;
}
.potu-refresh .skill-grid article>.service-tags{
  grid-column:3;
  grid-row:1;
}
.potu-refresh .skill-grid article>.service-output,
.potu-refresh .skill-grid article>.service-meter,
.potu-refresh .skill-grid article>.service-loop{
  grid-column:3;
  grid-row:2;
}
.potu-refresh .skill-grid article:hover{
  background:color-mix(in srgb,var(--potu-card),transparent 24%);
  color:var(--potu-ink);
  transform:none;
}
.potu-refresh .service-top{
  display:block;
}
.potu-refresh .service-icon{
  width:66px;
  height:66px;
  margin-bottom:14px;
  display:grid;
  place-items:center;
  border:1px solid var(--potu-line);
  border-radius:50%;
  background:var(--potu-card);
  color:var(--potu-orange);
  font-size:30px;
}
.potu-refresh .skill-grid b{
  color:var(--potu-orange);
}
.potu-refresh .skill-grid h3{
  margin:0;
  font-family:Manrope,sans-serif;
  font-size:clamp(32px,4vw,62px);
  line-height:.98;
  letter-spacing:-.065em;
}
.potu-refresh .skill-grid p{
  color:var(--potu-muted);
  font-size:17px;
  line-height:1.55;
}
.potu-refresh .service-tags{
  justify-content:flex-start;
  margin-top:0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.potu-refresh .service-tags span,
.potu-refresh .service-loop span,
.potu-refresh .engagement-options article{
  background:var(--potu-card);
  border-color:var(--potu-line);
  color:var(--potu-ink);
}
.potu-refresh .service-tags span{
  padding:11px 15px;
  font-size:12px;
  line-height:1;
  color:var(--potu-ink);
  box-shadow:0 12px 30px rgba(25,18,12,.05);
}
.potu-refresh .service-output,
.potu-refresh .service-meter,
.potu-refresh .service-loop{
  grid-column:3;
  margin-top:0;
  position:static!important;
  left:auto!important;
  right:auto!important;
  bottom:auto!important;
  width:auto!important;
  border-top:0;
}
.potu-refresh .service-output{
  padding:18px;
  border:1px solid var(--potu-line);
  border-radius:22px;
  background:var(--potu-card);
}
.potu-refresh .service-output span{
  color:var(--potu-muted);
}
.potu-refresh .service-meter{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:10px 14px;
  padding:18px;
  border:1px solid var(--potu-line);
  border-radius:22px;
  background:var(--potu-card);
}
.potu-refresh .service-meter span{font-size:12px;color:var(--potu-muted)}
.potu-refresh .service-meter i{height:8px;background:var(--potu-soft);border-radius:99px;overflow:hidden}
.potu-refresh .service-meter i b{display:block;height:100%;background:var(--potu-orange)}
.potu-refresh .service-loop{
  justify-content:flex-start;
  flex-wrap:wrap;
  gap:10px;
  padding:18px;
  border:1px solid var(--potu-line);
  border-radius:22px;
  background:var(--potu-card);
}
.potu-refresh .service-loop span{padding:10px 13px;border-radius:999px;font-size:12px}
.potu-refresh .service-loop i{color:var(--potu-orange);font-style:normal}
.potu-refresh .capability-engagement{
  border-radius:38px;
  border:1px solid var(--potu-line);
  background:var(--potu-dark);
  color:#fff;
  box-shadow:0 40px 90px rgba(20,15,10,.18);
}
.potu-refresh .capability-engagement span,
.potu-refresh .capability-engagement h3{
  color:#fff;
}
.potu-refresh .engagement-options article{
  background:rgba(255,255,255,.08);
  color:#fff;
  border-color:rgba(255,255,255,.14);
}
.potu-refresh .projects{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:70px 28px;
}
.potu-refresh .project-img{
  height:520px;
  border-radius:42px;
  box-shadow:0 30px 80px rgba(20,15,10,.12);
}
.potu-refresh .projects article:nth-child(even){
  transform:translateY(70px);
}
.potu-refresh .projects article>a{
  display:block;
}
.potu-refresh .projects article>p,
.potu-refresh .projects article a>p{
  color:var(--potu-orange);
}
.potu-refresh .projects h3{
  color:var(--potu-ink);
  font-size:clamp(34px,3vw,54px);
  letter-spacing:-.055em;
}
.potu-refresh .projects h4{
  color:var(--potu-muted);
}
.potu-refresh .quote{
  position:relative;
  margin-top:100px;
  background:var(--potu-orange);
  color:#fff;
  overflow:hidden;
}
.potu-refresh .quote:before{
  content:"DESIGN WITH PURPOSE";
  position:absolute;
  left:-2vw;
  top:20px;
  font-family:Manrope,sans-serif;
  font-size:12vw;
  color:rgba(255,255,255,.12);
  white-space:nowrap;
  letter-spacing:-.08em;
}
.potu-refresh .quote p,
.potu-refresh .quote span{
  position:relative;
  z-index:2;
}
.potu-refresh .contact{
  grid-template-columns:.86fr 1.14fr;
  background:var(--potu-dark);
  color:#fff;
}
.potu-refresh .contact h2{
  color:#fff;
}
.potu-refresh .contact form{
  padding:28px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:36px;
  background:rgba(255,255,255,.06);
}
.potu-refresh .contact input,
.potu-refresh .contact select,
.potu-refresh .contact textarea{
  border-color:rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  color:#fff;
  border-radius:18px;
}
.potu-refresh .contact label{
  color:#d5cbc2;
}
.potu-refresh footer{
  background:var(--potu-dark);
  color:#d5cbc2;
  border-top-color:rgba(255,255,255,.12);
}
.potu-reveal{
  opacity:0;
  transform:translateY(54px);
  transition:opacity .9s cubic-bezier(.16,1,.3,1),transform .9s cubic-bezier(.16,1,.3,1);
  transition-delay:var(--potu-delay,0ms);
}
.potu-reveal.is-visible{
  opacity:1;
  transform:none;
}
@keyframes potu-loader-out{
  to{opacity:0;visibility:hidden}
}
@keyframes potu-loader-letter{
  from{opacity:0;transform:translateY(28px) rotateX(-35deg)}
  to{opacity:1;transform:none}
}
@keyframes potu-marquee{
  to{transform:translateX(-50%)}
}
@media(max-width:1100px){
  .potu-refresh header{left:20px;right:20px}
  .potu-refresh .hero-heading-row,
  .potu-refresh .hero-grid,
  .potu-refresh .contact{grid-template-columns:1fr}
  .potu-refresh .skill-grid article{grid-template-columns:1fr;gap:18px}
  .potu-refresh .skill-grid article.service-featured,
  .potu-refresh .skill-grid article.service-compact,
  .potu-refresh .skill-grid article.service-wide,
  .potu-refresh .skill-grid article.capability-ops{grid-template-columns:1fr;gap:18px}
  .potu-refresh .skill-grid article>h3,
  .potu-refresh .skill-grid article>p,
  .potu-refresh .skill-grid article>.service-tags,
  .potu-refresh .skill-grid article>.service-output,
  .potu-refresh .skill-grid article>.service-meter,
  .potu-refresh .skill-grid article>.service-loop{grid-column:auto;grid-row:auto}
  .potu-refresh .service-output,
  .potu-refresh .service-meter,
  .potu-refresh .service-loop{grid-column:auto}
  .potu-refresh .projects{grid-template-columns:1fr}
  .potu-refresh .projects article:nth-child(even){transform:none}
}
@media(max-width:800px){
  .potu-refresh{cursor:auto}
  .potu-refresh .potu-cursor{display:none}
  .potu-refresh header{
    top:0;
    left:0;
    right:0;
    border-radius:0;
    height:74px;
  }
  .potu-refresh nav.open{
    top:74px;
    background:var(--potu-card);
  }
  .potu-refresh .hero{
    padding:120px 20px 70px;
  }
  .potu-refresh .hero h1{font-size:clamp(58px,18vw,90px)}
  .potu-refresh .portrait{min-height:440px;height:520px;border-radius:32px}
  .potu-refresh .intro{padding:28px;border-radius:30px}
  .potu-refresh .intro>p{font-size:19px}
  .potu-refresh .skills,
  .potu-refresh .work,
  .potu-refresh .contact{padding-left:20px;padding-right:20px}
  .potu-refresh .project-img{height:360px;border-radius:28px}
}

/* Potu-inspired capabilities section */
.potu-refresh .skills{
  position:relative;
  isolation:isolate;
  display:grid;
  grid-template-columns:minmax(330px,.42fr) minmax(0,.58fr);
  gap:clamp(54px,7vw,116px);
  padding-top:clamp(96px,9vw,150px);
  padding-bottom:clamp(96px,9vw,150px);
  background:#12110f;
  color:#fff;
  overflow:hidden;
}
.potu-refresh .skills:before{
  content:"";
  position:absolute;
  left:-12vw;
  bottom:-18vw;
  width:36vw;
  height:36vw;
  min-width:420px;
  min-height:420px;
  border-radius:50%;
  background:var(--potu-orange);
  z-index:-1;
}
.potu-refresh .skills:after{
  content:"";
  position:absolute;
  top:70px;
  left:64%;
  width:12px;
  height:12px;
  border-radius:50%;
  background:#f3f0ea;
  opacity:.95;
  z-index:0;
}
.potu-refresh .skills .capability-proof,
.potu-refresh .skills .capability-engagement{
  display:none;
}
.potu-refresh .skills .capability-intro{
  position:sticky;
  top:132px;
  align-self:start;
  display:block;
  max-width:none;
  padding:0 0 180px;
  border:0;
  z-index:1;
}
.potu-refresh .skills .capability-intro:before{
  content:"POWERS";
  position:absolute;
  left:-9vw;
  bottom:8px;
  font-family:Manrope,sans-serif;
  font-size:clamp(118px,18vw,280px);
  line-height:.75;
  letter-spacing:-.09em;
  color:transparent;
  -webkit-text-stroke:1px rgba(255,255,255,.05);
  text-stroke:1px rgba(255,255,255,.05);
  z-index:-1;
  pointer-events:none;
}
.potu-refresh .skills .capability-intro .eyebrow{
  display:none;
}
.potu-refresh .skills .capability-intro h2{
  position:relative;
  max-width:560px;
  margin:0;
  color:#fff;
  font-size:clamp(58px,6.1vw,104px);
  line-height:.94;
  letter-spacing:-.058em;
  word-spacing:.08em;
}
.potu-refresh .skills .capability-intro h2 span{
  display:block;
  color:rgba(255,255,255,.42);
}
.potu-refresh .skills .capability-intro h2:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-34px;
  width:min(300px,72%);
  height:16px;
  background:var(--potu-orange);
  border-radius:999px;
  transform:rotate(-5deg);
  clip-path:polygon(0 40%,12% 24%,28% 34%,46% 20%,62% 33%,80% 18%,100% 38%,100% 68%,82% 58%,64% 72%,48% 56%,30% 74%,12% 58%,0 78%);
}
.potu-refresh .skills .capability-intro>p{
  max-width:430px;
  margin:92px 0 0;
  color:rgba(255,255,255,.48);
  font-size:clamp(20px,1.7vw,28px);
  line-height:1.55;
}
.potu-refresh .skills .skill-grid{
  position:relative;
  display:block;
  border:0;
  z-index:1;
}
.potu-refresh .skills .skill-grid article,
.potu-refresh .skills .skill-grid article.service-featured,
.potu-refresh .skills .skill-grid article.service-compact,
.potu-refresh .skills .skill-grid article.service-wide,
.potu-refresh .skills .skill-grid article.capability-ops{
  position:relative;
  display:grid;
  grid-template-columns:112px minmax(0,1fr);
  column-gap:38px;
  row-gap:20px;
  align-items:center;
  min-height:0!important;
  padding:50px 0;
  border:0;
  border-top:1px solid rgba(255,255,255,.14);
  background:transparent!important;
  border-radius:0!important;
  box-shadow:none!important;
  color:#fff;
  overflow:visible;
}
.potu-refresh .skills .skill-grid article:last-child{
  border-bottom:1px solid rgba(255,255,255,.14);
}
.potu-refresh .skills .skill-grid article:hover{
  background:transparent!important;
  transform:none;
}
.potu-refresh .skills .service-top{
  grid-column:1;
  grid-row:1 / span 2;
  align-self:center;
  display:block;
}
.potu-refresh .skills .service-icon{
  width:82px;
  height:82px;
  margin:0;
  border:1px solid rgba(255,255,255,.6);
  border-radius:50%;
  background:transparent;
  color:#fff;
  box-shadow:none;
  font-size:36px;
}
.potu-refresh .skills .service-top>b{
  display:none;
}
.potu-refresh .skills .skill-grid article>h3{
  grid-column:2;
  grid-row:1;
  max-width:680px;
  margin:0;
  color:#fff;
  font-size:clamp(34px,3.5vw,60px);
  line-height:1.02;
  letter-spacing:-.045em;
  word-spacing:.05em;
}
.potu-refresh .skills .skill-grid article>p,
.potu-refresh .skills .skill-grid article>.service-output,
.potu-refresh .skills .skill-grid article>.service-meter,
.potu-refresh .skills .skill-grid article>.service-loop{
  display:none;
}
.potu-refresh .skills .skill-grid article:before{
  content:none;
}
.potu-refresh .skills .skill-grid article>.service-tags{
  grid-column:2;
  grid-row:2;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  margin:0;
}
.potu-refresh .skills .skill-grid article>.service-tags span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:9px 14px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  background:rgba(255,255,255,.07);
  color:rgba(255,255,255,.68);
  box-shadow:none;
  font-size:12px;
  font-weight:700;
  letter-spacing:.01em;
  line-height:1;
}
.potu-refresh .skills .skill-grid article:after{
  content:none;
  display:none;
}
.potu-refresh .skills .skill-grid article:hover:after{
  display:none;
}
@media(max-width:1100px){
  .potu-refresh .skills{
    grid-template-columns:1fr;
    gap:42px;
  }
  .potu-refresh .skills .capability-intro{
    position:relative;
    top:auto;
    padding-bottom:40px;
  }
  .potu-refresh .skills .capability-intro:before{
    bottom:-42px;
  }
}
@media(max-width:800px){
  .potu-refresh .skills{
    padding:92px 20px;
  }
  .potu-refresh .skills:before{
    left:-210px;
    bottom:-260px;
  }
  .potu-refresh .skills:after{
    display:none;
  }
  .potu-refresh .skills .capability-intro h2{
    font-size:clamp(56px,16vw,80px);
  }
  .potu-refresh .skills .capability-intro>p{
    margin-top:72px;
    font-size:20px;
  }
  .potu-refresh .skills .skill-grid article,
  .potu-refresh .skills .skill-grid article.service-featured,
  .potu-refresh .skills .skill-grid article.service-compact,
  .potu-refresh .skills .skill-grid article.service-wide,
  .potu-refresh .skills .skill-grid article.capability-ops{
    grid-template-columns:62px minmax(0,1fr);
    gap:18px;
    padding:34px 0;
  }
  .potu-refresh .skills .service-icon{
    width:54px;
    height:54px;
    font-size:24px;
  }
  .potu-refresh .skills .skill-grid article>h3{
    font-size:clamp(28px,9vw,40px);
    letter-spacing:-.035em;
  }
  .potu-refresh .skills .skill-grid article>.service-tags{
    grid-column:2;
    gap:8px;
  }
  .potu-refresh .skills .skill-grid article>.service-tags span{
    min-height:30px;
    padding:8px 11px;
    font-size:11px;
  }
  .potu-refresh .skills .skill-grid article:after{
    display:none;
  }
}
