/* ==========================================================================
   Rowlty — design system
   Palette pulled from the mascot: orange chest glow, cool robot greys, white shell
   ========================================================================== */

:root{
  --ink:#161B20;
  --slate:#3E4A51;
  --steel:#6B757C;
  --fog:#9BA4AA;
  --mist:#E4E8EA;
  --bone:#F5F7F8;
  --paper:#FFFFFF;

  --orange:#EE7600;
  --orange-hi:#FF9420;
  --orange-deep:#C25E00;
  --glow:#FFC761;
  --amber-soft:#FFF4E4;

  --ok:#12876F;

  --shadow-sm:0 1px 2px rgba(22,27,32,.06),0 2px 6px rgba(22,27,32,.05);
  --shadow-md:0 4px 12px rgba(22,27,32,.07),0 12px 28px rgba(22,27,32,.07);
  --shadow-lg:0 18px 50px rgba(22,27,32,.13);
  --shadow-orange:0 8px 24px rgba(238,118,0,.28);

  --r-sm:10px;
  --r:16px;
  --r-lg:24px;
  --r-xl:34px;

  --wrap:1160px;
  --nav-h:74px;

  --sans:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --display:'Outfit',var(--sans);
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--paper);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:var(--orange-deep);text-decoration:none}
a:hover{text-decoration:underline}

h1,h2,h3,h4,h5{font-family:var(--display);margin:0 0 .5em;line-height:1.1;letter-spacing:-.02em;font-weight:800}
h1{font-size:clamp(2.5rem,5.6vw,4.15rem);letter-spacing:-.035em}
h2{font-size:clamp(1.95rem,3.7vw,2.85rem);letter-spacing:-.03em}
h3{font-size:1.3rem}
h4{font-size:1.06rem;font-weight:700}
p{margin:0 0 1.1em}
ul,ol{margin:0 0 1.1em;padding-left:1.25em}
li{margin-bottom:.42em}
strong{font-weight:650}
small{font-size:.86rem}

.wrap{width:min(100% - 2.5rem,var(--wrap));margin-inline:auto}
.wrap-narrow{width:min(100% - 2.5rem,820px);margin-inline:auto}
.section{padding:clamp(4rem,8vw,7rem) 0}
.section-tight{padding:clamp(3rem,5vw,4.5rem) 0}
.bg-bone{background:var(--bone)}
.bg-ink{background:var(--ink);color:#fff}
.bg-ink h1,.bg-ink h2,.bg-ink h3{color:#fff}
.bg-amber{background:var(--amber-soft)}
.center{text-align:center}
.mb0{margin-bottom:0}
.muted{color:var(--steel)}
.bg-ink .muted{color:#A8B2B8}

/* ---------- eyebrow + section heads ---------- */
.eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:var(--display);font-weight:700;font-size:.775rem;
  letter-spacing:.13em;text-transform:uppercase;color:var(--orange-deep);
  background:var(--amber-soft);border-radius:100px;padding:.4rem .85rem;margin-bottom:1.1rem;
}
.bg-ink .eyebrow{background:rgba(238,118,0,.16);color:var(--glow)}
.section-head{max-width:730px;margin-bottom:3rem}
.section-head.center{margin-inline:auto}
.section-head p{font-size:1.12rem;color:var(--steel);margin-bottom:0}
.bg-ink .section-head p{color:#A8B2B8}
.lede{font-size:clamp(1.08rem,1.7vw,1.28rem);color:var(--slate);line-height:1.6}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--display);font-weight:700;font-size:1rem;
  padding:.88rem 1.6rem;border-radius:100px;border:2px solid transparent;
  cursor:pointer;transition:transform .15s ease,box-shadow .15s ease,background .15s ease;
  text-decoration:none;white-space:nowrap;line-height:1.2;
}
.btn:hover{text-decoration:none;transform:translateY(-2px)}
.btn-primary{background:var(--orange);color:#fff;box-shadow:var(--shadow-orange)}
.btn-primary:hover{background:var(--orange-hi);color:#fff}
.btn-dark{background:var(--ink);color:#fff}
.btn-dark:hover{background:var(--slate);color:#fff}
.btn-ghost{background:transparent;color:var(--ink);border-color:var(--mist)}
.btn-ghost:hover{border-color:var(--ink);color:var(--ink)}
.bg-ink .btn-ghost{color:#fff;border-color:rgba(255,255,255,.28)}
.bg-ink .btn-ghost:hover{border-color:#fff}
.btn-white{background:#fff;color:var(--ink)}
.btn-white:hover{background:var(--bone);color:var(--ink)}
.btn-lg{padding:1.05rem 2.05rem;font-size:1.075rem}
.btn-sm{padding:.6rem 1.15rem;font-size:.9rem}
.btn-block{width:100%}
.btn-row{display:flex;flex-wrap:wrap;gap:.85rem;align-items:center}
.btn-row.center{justify-content:center}

/* ---------- nav ---------- */
.nav{
  position:sticky;top:0;z-index:100;background:rgba(255,255,255,.9);
  backdrop-filter:saturate(180%) blur(14px);border-bottom:1px solid var(--mist);
}
.nav-inner{display:flex;align-items:center;gap:1.5rem;height:var(--nav-h)}
.brand{display:flex;align-items:center;gap:.6rem;font-family:var(--display);font-weight:800;
  font-size:1.4rem;letter-spacing:-.035em;color:var(--ink);text-decoration:none}
.brand:hover{text-decoration:none}
.brand img{height:40px;width:auto}
.brand span i{font-style:normal;color:var(--orange)}
.nav-links{display:flex;align-items:center;gap:1.85rem;margin-left:auto}
.nav-links a{color:var(--slate);font-weight:550;font-size:.965rem;text-decoration:none;position:relative}
.nav-links a:hover{color:var(--ink)}
.nav-links a.active{color:var(--ink);font-weight:650}
.nav-links > .btn{display:none} /* mobile-menu CTA only; desktop uses .nav-cta */
.nav-cta{display:flex;align-items:center;gap:.75rem}
.nav-phone{font-family:var(--display);font-weight:700;color:var(--ink);font-size:.95rem;white-space:nowrap}
.nav-toggle{display:none;background:none;border:0;padding:.5rem;cursor:pointer}
.nav-toggle span{display:block;width:23px;height:2.5px;background:var(--ink);border-radius:2px;margin:4.5px 0;transition:.2s}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle.open span:nth-child(2){opacity:0}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

@media(max-width:940px){
  .nav-links,.nav-phone{display:none}
  .nav-toggle{display:block;margin-left:auto;order:3}
  .nav-cta .btn{display:none}
  .nav-links.open{
    display:flex;flex-direction:column;align-items:flex-start;gap:.2rem;
    position:absolute;top:var(--nav-h);left:0;right:0;background:#fff;
    border-bottom:1px solid var(--mist);padding:1rem 1.25rem 1.6rem;box-shadow:var(--shadow-md);
  }
  .nav-links.open a{padding:.7rem 0;font-size:1.06rem;width:100%;border-bottom:1px solid var(--bone)}
  .nav-links.open > .btn{display:inline-flex;margin-top:.9rem;width:100%;border-bottom:0;color:#fff}
}

/* ---------- hero ---------- */
.hero{
  position:relative;overflow:hidden;
  background:
    radial-gradient(900px 520px at 78% 18%,rgba(255,199,97,.34),transparent 62%),
    radial-gradient(700px 500px at 8% 88%,rgba(228,232,234,.75),transparent 65%),
    var(--paper);
  padding:clamp(3.2rem,6vw,5.6rem) 0 clamp(3.5rem,6vw,5rem);
}
.hero-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:3rem;align-items:center}
.hero h1{margin-bottom:1.1rem}
.hero h1 em{font-style:normal;color:var(--orange);position:relative;white-space:nowrap}
.hero-sub{font-size:clamp(1.1rem,1.8vw,1.32rem);color:var(--slate);max-width:34ch;margin-bottom:1.9rem}
.hero-art{position:relative;display:flex;justify-content:center}
.hero-art::after{
  content:'';position:absolute;width:74%;aspect-ratio:1;border-radius:50%;
  background:radial-gradient(circle,rgba(255,180,60,.42),rgba(255,180,60,0) 68%);
  top:46%;left:50%;transform:translate(-50%,-50%);z-index:0;
}
.hero-art img{position:relative;z-index:1;width:min(100%,430px);
  filter:drop-shadow(0 30px 45px rgba(22,27,32,.18));
  animation:float 6s ease-in-out infinite}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-14px)}}
@media(prefers-reduced-motion:reduce){.hero-art img{animation:none}}
.trust-line{display:flex;flex-wrap:wrap;gap:.5rem 1.6rem;align-items:center;
  font-size:.9rem;color:var(--steel);margin-top:1.6rem}
.trust-line span{display:inline-flex;align-items:center;gap:.42rem}
.tick{color:var(--ok);font-weight:800}

/* On small screens the owl becomes a compact mascot ABOVE the headline
   instead of a full-height illustration that eats the first screen. */
@media(max-width:900px){
  .hero{padding:1.6rem 0 2.8rem}
  .hero-grid{grid-template-columns:1fr;gap:0}
  .hero-sub{max-width:none;margin-bottom:1.5rem}

  .hero-art{order:-1;margin-bottom:.9rem}
  .hero-art img{
    width:118px;height:auto;
    animation:none;
    filter:drop-shadow(0 10px 18px rgba(22,27,32,.16));
  }
  .hero-art::after{width:150px;height:150px;aspect-ratio:auto;top:50%}
}
@media(max-width:560px){
  .hero h1{font-size:clamp(2.05rem,8.6vw,2.6rem)}
  .hero-art img{width:104px}
  .hero-art::after{width:132px;height:132px}
  .trust-line{gap:.35rem 1.1rem;font-size:.85rem;margin-top:1.3rem}
  .btn-row .btn{flex:1 1 100%}
}

/* ---------- logo / stat strip ---------- */
.strip{border-block:1px solid var(--mist);background:var(--bone);padding:2.1rem 0}
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;text-align:center}
.stat b{display:block;font-family:var(--display);font-size:clamp(1.9rem,3.4vw,2.6rem);
  font-weight:800;color:var(--orange);line-height:1;letter-spacing:-.03em}
.stat span{font-size:.9rem;color:var(--steel);display:block;margin-top:.45rem}
@media(max-width:700px){.stats{grid-template-columns:repeat(2,1fr);gap:1.8rem 1rem}}

/* ---------- cards ---------- */
.grid{display:grid;gap:1.5rem}
.g2{grid-template-columns:repeat(2,1fr)}
.g3{grid-template-columns:repeat(3,1fr)}
.g4{grid-template-columns:repeat(4,1fr)}
@media(max-width:980px){.g4{grid-template-columns:repeat(2,1fr)}.g3{grid-template-columns:repeat(2,1fr)}}
@media(max-width:660px){.g2,.g3,.g4{grid-template-columns:1fr}}

.card{
  background:var(--paper);border:1px solid var(--mist);border-radius:var(--r-lg);
  padding:1.8rem;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
.card-hover:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:#D3D9DC}
.card h3{margin-bottom:.5rem}
.card p:last-child{margin-bottom:0}
.card .tag{font-family:var(--display);font-size:.72rem;font-weight:700;letter-spacing:.1em;
  text-transform:uppercase;color:var(--steel)}

.icon{
  width:52px;height:52px;border-radius:15px;display:grid;place-items:center;
  background:var(--amber-soft);color:var(--orange-deep);margin-bottom:1.15rem;flex:none;
}
.icon svg{width:26px;height:26px;stroke-width:1.9}
.icon-slate{background:#EDF1F2;color:var(--slate)}

/* ---------- module list (products) ---------- */
.module{
  display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:3.2rem;align-items:center;
  padding:clamp(2.5rem,5vw,4rem) 0;border-bottom:1px solid var(--mist);
}
.module:last-child{border-bottom:0}
.module.flip .module-visual{order:-1}
.module-visual{
  background:linear-gradient(160deg,var(--bone),#fff);border:1px solid var(--mist);
  border-radius:var(--r-lg);padding:1.6rem;box-shadow:var(--shadow-sm);
}
@media(max-width:860px){
  .module{grid-template-columns:1fr;gap:1.9rem}
  .module.flip .module-visual{order:0}
}
.module h2{font-size:clamp(1.6rem,3vw,2.15rem)}
.check-list{list-style:none;padding:0;margin:0 0 1.4rem}
.check-list li{position:relative;padding-left:1.9rem;margin-bottom:.62rem;color:var(--slate)}
.check-list li::before{
  content:'';position:absolute;left:0;top:.5em;width:1.15rem;height:1.15rem;border-radius:50%;
  background:var(--amber-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C25E00' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/.72rem no-repeat;
}

/* fake UI chrome */
.ui{background:#fff;border-radius:var(--r);border:1px solid var(--mist);overflow:hidden;font-size:.87rem}
.ui-bar{display:flex;align-items:center;gap:.4rem;padding:.65rem .85rem;background:var(--bone);
  border-bottom:1px solid var(--mist)}
.ui-bar i{width:9px;height:9px;border-radius:50%;background:#D7DDE0;display:block}
.ui-bar b{font-family:var(--display);font-size:.76rem;letter-spacing:.06em;text-transform:uppercase;
  color:var(--steel);margin-left:.5rem;font-weight:700}
.ui-body{padding:1rem}
.chat{display:flex;flex-direction:column;gap:.6rem}
.bubble{padding:.6rem .85rem;border-radius:14px;max-width:88%;line-height:1.45}
.bubble.them{background:var(--bone);border-bottom-left-radius:4px}
.bubble.us{background:var(--orange);color:#fff;align-self:flex-end;border-bottom-right-radius:4px}
.bubble small{display:block;opacity:.72;font-size:.74rem;margin-top:.25rem}
.row-item{display:flex;justify-content:space-between;gap:1rem;padding:.6rem 0;
  border-bottom:1px dashed var(--mist);align-items:center}
.row-item:last-child{border-bottom:0}
.pill{font-family:var(--display);font-size:.7rem;font-weight:700;letter-spacing:.05em;
  text-transform:uppercase;padding:.24rem .6rem;border-radius:100px;background:var(--amber-soft);
  color:var(--orange-deep);white-space:nowrap}
.pill-ok{background:#E4F4F0;color:var(--ok)}
.pill-slate{background:#EDF1F2;color:var(--slate)}

/* ---------- steps ---------- */
.steps{counter-reset:s;display:grid;gap:1.5rem;grid-template-columns:repeat(4,1fr)}
@media(max-width:900px){.steps{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.steps{grid-template-columns:1fr}}
.step{position:relative;padding-top:3.1rem}
.step::before{
  counter-increment:s;content:counter(s);
  position:absolute;top:0;left:0;width:2.35rem;height:2.35rem;border-radius:50%;
  background:var(--ink);color:#fff;display:grid;place-items:center;
  font-family:var(--display);font-weight:800;font-size:1.02rem;
}
.step h4{margin-bottom:.35rem}
.step p{color:var(--steel);font-size:.96rem;margin-bottom:0}

/* ---------- pricing ---------- */
.toggle{display:inline-flex;align-items:center;gap:.75rem;background:var(--bone);
  border:1px solid var(--mist);border-radius:100px;padding:.32rem;margin-bottom:2.5rem}
.toggle button{border:0;background:none;font-family:var(--display);font-weight:700;font-size:.93rem;
  padding:.55rem 1.15rem;border-radius:100px;cursor:pointer;color:var(--steel);transition:.15s;
  display:inline-flex;align-items:center;gap:.5rem;white-space:nowrap}
.toggle button.on{background:var(--ink);color:#fff}
.save-badge{background:var(--amber-soft);color:var(--orange-deep);font-size:.76rem;font-weight:700;
  padding:.2rem .55rem;border-radius:100px;font-family:var(--display)}

.tiers{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;align-items:start}
@media(max-width:940px){.tiers{grid-template-columns:1fr;max-width:520px;margin-inline:auto}}
.tier{background:#fff;border:1px solid var(--mist);border-radius:var(--r-lg);padding:2rem;
  display:flex;flex-direction:column;height:100%}
.tier.featured{border:2px solid var(--orange);box-shadow:var(--shadow-lg);position:relative}
.tier.featured::before{
  content:'Most popular';position:absolute;top:-.85rem;left:50%;transform:translateX(-50%);
  background:var(--orange);color:#fff;font-family:var(--display);font-weight:700;font-size:.75rem;
  letter-spacing:.08em;text-transform:uppercase;padding:.32rem .95rem;border-radius:100px;white-space:nowrap;
}
.tier-name{font-family:var(--display);font-weight:800;font-size:1.45rem;margin-bottom:.2rem}
.tier-for{color:var(--steel);font-size:.93rem;min-height:2.9em;margin-bottom:1.2rem}
.price{display:flex;align-items:baseline;gap:.3rem;font-family:var(--display);
  font-weight:800;letter-spacing:-.03em}
.price .amt{font-size:3rem;line-height:1}
.price .per{font-size:.95rem;color:var(--steel);font-weight:600}
.price-sub{font-size:.92rem;color:var(--steel);margin:.55rem 0 1.5rem;line-height:1.5}
.price-sub b{color:var(--ink);font-weight:650}
.tier .btn{margin-bottom:1.5rem}
.tier-list{list-style:none;padding:0;margin:0;font-size:.945rem}
.tier-list li{position:relative;padding-left:1.65rem;margin-bottom:.55rem;color:var(--slate)}
.tier-list li::before{content:'';position:absolute;left:0;top:.42em;width:1rem;height:1rem;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EE7600' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat}
.tier-list .head{font-family:var(--display);font-weight:700;color:var(--ink);padding-left:0;
  margin:1.3rem 0 .7rem;font-size:.79rem;letter-spacing:.1em;text-transform:uppercase}
.tier-list .head::before{display:none}

/* comparison table */
.table-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch;border:1px solid var(--mist);
  border-radius:var(--r-lg);background:#fff}
table{border-collapse:collapse;width:100%;min-width:660px;font-size:.94rem}
th,td{padding:.85rem 1.1rem;text-align:left;border-bottom:1px solid var(--mist)}
thead th{background:var(--bone);font-family:var(--display);font-weight:700;font-size:.83rem;
  letter-spacing:.06em;text-transform:uppercase;color:var(--slate);white-space:nowrap}
tbody th{font-weight:600;color:var(--ink)}
td.c,th.c{text-align:center}
tr:last-child td,tr:last-child th{border-bottom:0}
.yes{color:var(--orange);font-weight:800}
.no{color:var(--fog)}
.tbl-group td{background:var(--bone);font-family:var(--display);font-weight:700;font-size:.78rem;
  letter-spacing:.1em;text-transform:uppercase;color:var(--slate)}

/* ---------- ROI calculator ---------- */
.calc{display:grid;grid-template-columns:.95fr 1.05fr;gap:2rem;align-items:start}
@media(max-width:860px){.calc{grid-template-columns:1fr}}
.field{margin-bottom:1.3rem}
.field label{display:flex;justify-content:space-between;align-items:baseline;gap:1rem;
  font-family:var(--display);font-weight:700;font-size:.95rem;margin-bottom:.45rem}
.field label output{color:var(--orange-deep);font-size:1.02rem}
input[type=range]{width:100%;accent-color:var(--orange);height:6px;cursor:pointer}
.result{background:var(--ink);color:#fff;border-radius:var(--r-lg);padding:2rem}
.result .big{font-family:var(--display);font-weight:800;font-size:clamp(2.4rem,5vw,3.4rem);
  color:var(--glow);line-height:1;letter-spacing:-.03em;margin-bottom:.3rem}
.result .row-item{border-color:rgba(255,255,255,.14);color:#D6DCE0}
.result .row-item b{color:#fff}

/* ---------- forms ---------- */
.form-card{background:#fff;border:1px solid var(--mist);border-radius:var(--r-lg);
  padding:clamp(1.6rem,3.5vw,2.4rem);box-shadow:var(--shadow-md)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
@media(max-width:600px){.form-row{grid-template-columns:1fr}}
.form-group{margin-bottom:1.05rem}
.form-group label{display:block;font-family:var(--display);font-weight:700;font-size:.9rem;
  margin-bottom:.38rem}
.form-group .req{color:var(--orange)}
input[type=text],input[type=email],input[type=tel],select,textarea{
  width:100%;padding:.78rem .95rem;border:1.5px solid var(--mist);border-radius:var(--r-sm);
  font-family:var(--sans);font-size:1rem;color:var(--ink);background:#fff;transition:border-color .15s;
}
input:focus,select:focus,textarea:focus{outline:none;border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(238,118,0,.13)}
textarea{min-height:120px;resize:vertical}
select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B757C' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right .85rem center;background-size:1.05rem;padding-right:2.5rem}
.hp{position:absolute;left:-9999px;opacity:0;height:0;width:0}
.form-note{font-size:.86rem;color:var(--steel);margin:.9rem 0 0}

/* ---------- FAQ ---------- */
.faq-item{border-bottom:1px solid var(--mist)}
.faq-item summary{
  cursor:pointer;list-style:none;padding:1.25rem 2.5rem 1.25rem 0;position:relative;
  font-family:var(--display);font-weight:700;font-size:1.075rem;color:var(--ink);
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:'';position:absolute;right:.35rem;top:1.55rem;width:1.05rem;height:1.05rem;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EE7600' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat;
  transition:transform .2s;
}
.faq-item[open] summary::after{transform:rotate(180deg)}
.faq-item .answer{padding:0 2.5rem 1.4rem 0;color:var(--slate)}
.faq-item .answer p:last-child{margin-bottom:0}

/* ---------- quote / testimonial ---------- */
.quote{background:#fff;border:1px solid var(--mist);border-radius:var(--r-lg);padding:1.9rem;
  display:flex;flex-direction:column;height:100%}
.quote blockquote{margin:0 0 1.3rem;font-size:1.04rem;color:var(--slate);line-height:1.6;flex:1}
.quote blockquote::before{content:'“';font-family:var(--display);font-size:2.6rem;color:var(--orange);
  line-height:0;display:block;margin-bottom:.75rem;font-weight:800}
.who{display:flex;align-items:center;gap:.8rem}
.avatar{width:42px;height:42px;border-radius:50%;background:var(--amber-soft);color:var(--orange-deep);
  display:grid;place-items:center;font-family:var(--display);font-weight:800;font-size:.95rem;flex:none}
.who b{display:block;font-size:.95rem}
.who span{font-size:.85rem;color:var(--steel)}

/* ---------- CTA band ---------- */
.cta-band{
  background:linear-gradient(135deg,#1D242A,#161B20 55%);color:#fff;border-radius:var(--r-xl);
  padding:clamp(2.4rem,5vw,3.6rem);position:relative;overflow:hidden;
}
.cta-band::after{
  content:'';position:absolute;width:420px;height:420px;border-radius:50%;right:-90px;top:-140px;
  background:radial-gradient(circle,rgba(255,180,60,.34),transparent 66%);pointer-events:none;
}
.cta-band h2{color:#fff;margin-bottom:.6rem}
.cta-band p{color:#A8B2B8;max-width:52ch}
.cta-band .inner{position:relative;z-index:1;display:grid;grid-template-columns:1.4fr auto;
  gap:2rem;align-items:center}
@media(max-width:800px){.cta-band .inner{grid-template-columns:1fr}}

/* ---------- team ---------- */
.person{text-align:center}
.person .avatar{width:96px;height:96px;font-size:2rem;margin:0 auto 1rem}
.person b{display:block;font-family:var(--display);font-size:1.14rem;font-weight:800}
.person .role{color:var(--orange-deep);font-weight:650;font-size:.92rem;margin-bottom:.6rem}
.person p{color:var(--steel);font-size:.94rem;margin-bottom:0}

/* ---------- footer ---------- */
.footer{background:var(--ink);color:#A8B2B8;padding:4rem 0 2rem;font-size:.94rem}
.footer a{color:#A8B2B8;text-decoration:none}
.footer a:hover{color:#fff;text-decoration:none}
.footer-grid{display:grid;grid-template-columns:1.7fr 1fr 1fr 1.25fr;gap:2.5rem;margin-bottom:3rem}
@media(max-width:880px){.footer-grid{grid-template-columns:1fr 1fr;gap:2rem}}
@media(max-width:520px){.footer-grid{grid-template-columns:1fr}}
.footer .brand{color:#fff;margin-bottom:1rem}
.footer h5{color:#fff;font-family:var(--display);font-size:.8rem;letter-spacing:.11em;
  text-transform:uppercase;margin-bottom:1rem;font-weight:700}
.footer ul{list-style:none;padding:0;margin:0}
.footer li{margin-bottom:.6rem}
.footer .fine{border-top:1px solid rgba(255,255,255,.1);padding-top:1.8rem;
  display:flex;flex-wrap:wrap;gap:.8rem 1.6rem;justify-content:space-between;font-size:.87rem}
address{font-style:normal;line-height:1.7}

/* ---------- misc ---------- */
.badge-row{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1.2rem}
.badge{background:#fff;border:1px solid var(--mist);border-radius:100px;padding:.42rem .9rem;
  font-size:.86rem;font-weight:600;color:var(--slate);white-space:nowrap}
.bg-ink .badge{background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.14);color:#D6DCE0}
.hr{height:1px;background:var(--mist);border:0;margin:0}
.owl-inline{width:34px;height:34px;vertical-align:middle}
.prose h2{margin-top:2.4rem}
.prose h3{margin-top:1.8rem}
.prose li{color:var(--slate)}
.anchor{scroll-margin-top:calc(var(--nav-h) + 20px)}
.skip{position:absolute;left:-9999px;background:var(--ink);color:#fff;padding:.7rem 1.1rem;
  border-radius:0 0 var(--r-sm) 0;z-index:200}
.skip:focus{left:0;top:0}

/* mobile-menu phone link */
.nav-phone-m{display:none}
@media(max-width:940px){
  .nav-links.open .nav-phone-m{display:block;font-family:var(--display);font-weight:700;color:var(--ink)}
}
