@font-face{font-family:'Manrope';src:url('../fonts/Manrope-Bold.woff2?v=v20260922-audit') format('woff2'),url('../fonts/Manrope-Bold.woff?v=v20260922-audit') format('woff');font-style:normal;font-weight:700;font-display:swap}
@font-face{font-family:'Inter';src:url('../fonts/Inter-Regular.woff2?v=v20260922-audit') format('woff2'),url('../fonts/Inter-Regular.woff?v=v20260922-audit') format('woff');font-style:normal;font-weight:400;font-display:swap}
@font-face{font-family:'Inter';src:url('../fonts/Inter-Semibold.woff2?v=v20260922-audit') format('woff2'),url('../fonts/Inter-Semibold.woff?v=v20260922-audit') format('woff');font-style:normal;font-weight:600;font-display:swap}
/* ==========================================================================
   PRIME GROWTH — main.css
   Static multi-page marketing site. No build step, no dependencies.
   Brand: Synergy — forest #104B38, orange #FF7A21, ivory #F7F3E8.
   Typography: Manrope headings and Inter body, self-hosted and subset.
   ========================================================================== */

:root{
  --on-accent: #062C20;
  /* ---- Brand ---- */
  --navy:        #104B38;   /* darkest ground — hero, footer, dark bands */
  --navy-2:      #174F3E;   /* lifted dark surface */
  --navy-3:      #205D49;   /* hover on dark surfaces */
  --brand:       #104B38;   /* PRIMARY — signature green (CTAs, links, focus) */
  --brand-600:   #0B382A;   /* darker green — hover / pressed / text on white */
  --brand-ink:   #104B38;   /* green dark enough for body text on white (7.4:1) */
  --brand-tint:  #E9EDDF;   /* pale green wash */
  --growth:      #FF7A21;   /* brighter green accent — pops on near-black */
  --growth-deep: #104B38;   /* green for white text on light (5.4:1 — large ok) */
  --growth-tint: #E9EDDF;
  --accent:      #FF7A21;   /* orange-red — used sparingly (hover, labels) */

  --ink:         #173F32;   /* body text on light (site's text-dark) */
  --ink-soft:    #365447;
  --muted:       #56675B;   /* secondary text (AA on white) */
  --muted-dark:  rgba(255,255,255,.68);  /* secondary text on dark */

  --surface:     #EFEBDD;   /* alternating section band */
  --surface-2:   #E8E4D8;
  --line:        #D9DDCF;   /* hairlines on light (site's bd-color) */
  --line-dark:   rgba(255,255,255,.14); /* hairlines on dark */
  --white:       #F7F3E8;

  /* ---- Type ---- */
  --font-head: 'Manrope', 'Arial', sans-serif;
  --font-body: 'Inter', 'Arial', sans-serif;
  --h1: clamp(2.1rem, 4.6vw, 3.6rem);
  --h2: clamp(1.55rem, 2.7vw, 2.25rem);
  --h3: clamp(1.05rem, 1.4vw, 1.2rem);

  /* ---- Space / shape ---- */
  --wrap: 1440px;
  --pad: clamp(1.1rem, 3.5vw, 2.25rem);
  --sec-y: clamp(2.5rem, 5.5vw, 4.25rem);
  --r-sm: 7px;
  --r: 12px;
  --r-lg: 18px;

  --shadow:    0 1px 2px rgba(16,75,56,.06), 0 10px 30px rgba(16,75,56,.09);
  --shadow-lg: 0 4px 10px rgba(16,75,56,.08), 0 24px 60px rgba(16,75,56,.18);
  --ring: 0 0 0 3px var(--brand-tint);
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
body{
  margin:0;
  font-family:var(--font-body);
  font-size:clamp(1rem,.85vw,1.02rem);
  line-height:1.62;
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:clip; /* contains the off-canvas mobile nav without killing sticky/position */
}
h1,h2,h3,h4{
  margin:0;font-family:var(--font-head);font-weight:700;
  line-height:1.1;letter-spacing:-.02em;color:var(--navy);
}
h1{font-size:var(--h1)}
h2{font-size:var(--h2)}
h3{font-size:var(--h3);letter-spacing:-.01em}
p{margin:0 0 1rem}
ul,ol{margin:0;padding:0;list-style:none}
img,svg{display:block;max-width:100%}
a{color:var(--brand-ink);text-decoration:none}
a:hover{color:var(--brand)}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
strong,b{font-weight:600}

:focus-visible{outline:3px solid var(--brand);outline-offset:3px;border-radius:3px}
.on-navy :focus-visible{outline-color:var(--growth)}

.skip{
  position:absolute;left:-9999px;top:0;z-index:999;
  background:var(--brand);color:var(--white);font-weight:600;
  padding:.85rem 1.25rem;border-radius:0 0 var(--r-sm) 0;
}
.skip:focus{left:0}

/* ---------- Layout primitives ---------- */
.wrap{width:100%;max-width:var(--wrap);margin-inline:auto;padding-inline:var(--pad)}
.section{padding-block:var(--sec-y)}
.section--tight{padding-block:clamp(1.75rem,3.5vw,2.75rem)}
.section--surface{background:var(--surface)}
.section--navy{background:var(--navy);color:var(--white)}
.section--navy h1,.section--navy h2,.section--navy h3{color:var(--white)}
.section--navy p{color:var(--muted-dark)}

.eyebrow{
  display:inline-flex;align-items:center;
  margin:0 0 1rem;font-family:var(--font-head);
  font-size:.72rem;font-weight:600;letter-spacing:.18em;
  text-transform:uppercase;color:var(--brand);
}
.section--navy .eyebrow{color:var(--growth)}

.section__head{max-width:56ch;margin-bottom:clamp(1.25rem,2.5vw,2rem)}
.section__head--center{margin-inline:auto;text-align:center}
.section__head p{color:var(--muted);font-size:1.05em;margin-top:.75rem}
.section--navy .section__head p{color:var(--muted-dark)}

.lead{font-size:clamp(1.05rem,1.5vw,1.3rem);color:var(--ink-soft);line-height:1.6}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  padding:.95rem 1.6rem;border-radius:999px;
  font-family:var(--font-head);font-weight:600;font-size:.95rem;letter-spacing:.005em;
  border:2px solid transparent;text-align:center;cursor:pointer;
  transition:transform .16s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
}
.btn svg{width:1.05em;height:1.05em;flex:none}
.btn:hover{transform:translateY(-2px)}
.btn:active{transform:translateY(0)}
.btn--primary{background:var(--brand);color:var(--white)}
.btn--primary:hover{background:var(--brand-600);color:var(--white);box-shadow:0 10px 24px rgba(16,75,56,.32)}
.btn--growth{background:var(--growth);color:var(--on-accent)}
.btn--growth:hover{background:var(--growth-deep);color:var(--white)}
.btn--ghost{border-color:var(--line);color:var(--navy);background:var(--white)}
.btn--ghost:hover{border-color:var(--brand);color:var(--brand)}
.on-navy .btn--ghost{border-color:var(--line-dark);color:var(--white);background:transparent}
.on-navy .btn--ghost:hover{border-color:var(--growth);color:var(--growth)}
.btn--sm{padding:.65rem 1.15rem;font-size:.85rem}
.btn--lg{padding:1.1rem 2rem;font-size:1rem}
.btn--block{width:100%}

.arrow-link{
  display:inline-flex;align-items:center;gap:.4rem;
  font-family:var(--font-head);font-weight:600;font-size:.9rem;color:var(--brand);
}
.arrow-link svg{width:1em;height:1em;transition:transform .16s ease}
.arrow-link:hover svg{transform:translateX(4px)}

/* ==========================================================================
   HEADER
   ========================================================================== */
.util{background:var(--navy);color:rgba(255,255,255,.82);font-size:.8rem}
.util__in{display:flex;flex-wrap:wrap;align-items:center;gap:.6rem 1.4rem;padding-block:.55rem}
.util a{color:inherit;display:inline-flex;align-items:center;gap:.4rem}
.util a:hover{color:var(--growth)}
.util svg{width:.95em;height:.95em}
.util__spacer{margin-left:auto}
.util__promo{color:var(--growth);font-weight:600}
@media (max-width:720px){.util__hide-sm{display:none}}

.hdr{
  position:sticky;top:0;z-index:100;background:var(--white);
  border-bottom:1px solid var(--line);
  transition:box-shadow .2s ease;
}
.hdr.is-stuck{box-shadow:var(--shadow)}
.hdr__in{display:flex;align-items:center;gap:1.5rem;padding-block:.85rem}
.logo{display:inline-flex;align-items:center;gap:.6rem;font-family:var(--font-head);font-weight:700;font-size:1.15rem;color:var(--navy);letter-spacing:-.02em}
.logo:hover{color:var(--navy)}
.logo img{height:34px;width:auto}
.logo mark{background:none;color:var(--brand)}

.nav{display:flex;align-items:center;gap:.35rem;margin-left:auto}
.nav a{
  font-family:var(--font-head);font-weight:500;font-size:.92rem;color:var(--ink-soft);
  padding:.55rem .8rem;border-radius:var(--r-sm);line-height:1;
}
.nav a:hover{color:var(--brand);background:var(--surface)}
.nav a[aria-current="page"]{color:var(--brand);font-weight:600}
.hdr__cta{display:flex;align-items:center;gap:.6rem}

/* ---------- home page: chrome is hidden over the full-screen hero, ---------- */
/* revealed only once you start scrolling (not just transparent — gone). */
.page-home .home-chrome{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:transparent;
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .4s ease, background .35s ease, visibility 0s linear .4s;
}
.page-home .home-chrome.is-stuck{
  opacity:1;visibility:visible;pointer-events:auto;
  transition:opacity .4s ease, background .35s ease, visibility 0s linear 0s;
}
.page-home .home-chrome .hdr{position:static;background:transparent;border-bottom-color:transparent;box-shadow:none}
.page-home .home-chrome .util{background:transparent}
.page-home .home-chrome .logo,
.page-home .home-chrome .nav a{color:rgba(255,255,255,.88)}
.page-home .home-chrome .logo mark{color:var(--growth)}
.page-home .home-chrome .nav a:hover{color:var(--growth);background:rgba(255,255,255,.08)}
.page-home .home-chrome .nav a[aria-current="page"]{color:var(--growth)}
.page-home .home-chrome .burger span{background:var(--white)}
.page-home .home-chrome .util a:hover{color:var(--growth)}
.page-home .home-chrome.is-stuck{background:var(--white);box-shadow:var(--shadow)}
.page-home .home-chrome.is-stuck .util{background:var(--navy)}
.page-home .home-chrome.is-stuck .logo,
.page-home .home-chrome.is-stuck .nav a{color:var(--ink-soft)}
.page-home .home-chrome.is-stuck .logo{color:var(--navy)}
.page-home .home-chrome.is-stuck .logo mark{color:var(--brand)}
.page-home .home-chrome.is-stuck .nav a:hover{color:var(--brand);background:var(--surface)}
.page-home .home-chrome.is-stuck .nav a[aria-current="page"]{color:var(--brand)}
.page-home .home-chrome.is-stuck .burger span{background:var(--navy)}
/* mobile off-canvas drawer keeps its own opaque background regardless of chrome state */
.page-home .home-chrome .nav.is-open{background:var(--white)}
.page-home .home-chrome .nav.is-open a{color:var(--ink-soft)}
.page-home .home-chrome .nav.is-open a[aria-current="page"]{color:var(--brand)}
/* no-js: skip the transparent-overlay trick entirely, use a plain solid header */
html.no-js .home-chrome{position:static;background:var(--white)}
html.no-js .home-chrome .util{background:var(--navy)}
html.no-js .home-chrome .logo,
html.no-js .home-chrome .nav a{color:var(--ink-soft)}
html.no-js .home-chrome .logo{color:var(--navy)}
html.no-js .home-chrome .logo mark{color:var(--brand)}

.burger{display:none;flex-direction:column;width:44px;height:44px;border-radius:var(--r-sm);align-items:center;justify-content:center}
.burger span{display:block;width:22px;height:2px;background:var(--navy);border-radius:2px;transition:transform .2s ease, opacity .2s ease}
.burger span+span{margin-top:5px}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

@media (max-width:960px){
  .hdr__cta .btn{display:none}
  .burger{display:flex}
  .nav{
    position:fixed;inset:0 0 0 auto;width:min(320px,82vw);
    flex-direction:column;align-items:stretch;gap:.15rem;
    background:var(--white);padding:5.5rem 1.25rem 2rem;margin:0;
    transform:translateX(100%);transition:transform .25s ease;
    box-shadow:var(--shadow-lg);overflow-y:auto;
  }
  .nav.is-open{transform:translateX(0)}
  .nav a{padding:.9rem 1rem;font-size:1rem;border-radius:var(--r-sm)}
  .nav-backdrop{position:fixed;inset:0;background:rgba(10,27,46,.45);opacity:0;pointer-events:none;transition:opacity .25s ease;z-index:99}
  .nav-backdrop.is-open{opacity:1;pointer-events:auto}
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{position:relative;background:var(--navy);color:var(--white);overflow:hidden}
.hero::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(58% 52% at 80% 6%, rgba(255,122,33,.42), transparent 62%),
    radial-gradient(46% 46% at 6% 96%, rgba(16,75,56,.34), transparent 60%);
}
.hero__in{position:relative;display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(1.5rem,4vw,3rem);align-items:center;padding-block:clamp(2.25rem,5.5vw,4rem)}
.hero__in>*{min-width:0}
.hero h1{color:var(--white);margin-bottom:1rem;overflow-wrap:break-word}
.hero h1 .u{color:var(--growth)}
.hero p{color:var(--muted-dark);font-size:clamp(.98rem,1.15vw,1.1rem);max-width:52ch;margin-bottom:1.5rem}
.hero__cta{display:flex;flex-wrap:wrap;gap:.75rem;margin-bottom:1.5rem}
.hero__trust{display:flex;flex-wrap:wrap;gap:1.5rem;align-items:center;font-size:.85rem;color:rgba(255,255,255,.6)}
.hero__trust b{color:var(--white);font-family:var(--font-head)}

.hero__panel{
  position:relative;background:var(--navy-2);border:1px solid var(--line-dark);
  border-radius:var(--r-lg);padding:clamp(1.25rem,2.5vw,2rem);
  box-shadow:var(--shadow-lg);
}
.hero__panel h2{font-size:1.05rem;color:var(--white);margin-bottom:1rem}
.hero__stat-grid{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--line-dark);border-radius:var(--r);overflow:hidden}
.hero__stat{background:var(--navy-2);padding:1.1rem}
.hero__stat b{display:block;font-family:var(--font-head);font-size:1.8rem;color:var(--growth);line-height:1}
.hero__stat span{font-size:.8rem;color:rgba(255,255,255,.62)}

@media (max-width:900px){
  .hero__in{grid-template-columns:1fr;gap:2.5rem}
  .hero__panel{order:2}
}

/* ---------- Logo / trust marquee ---------- */
.marquee{overflow:hidden;-webkit-mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent);mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent)}
.marquee__track{display:flex;gap:3rem;width:max-content;animation:scroll-x 32s linear infinite}
.marquee:hover .marquee__track{animation-play-state:paused}
.marquee__track span{font-family:var(--font-head);font-weight:600;font-size:1.05rem;color:var(--muted);white-space:nowrap;opacity:.75}
@keyframes scroll-x{to{transform:translateX(-50%)}}
@media (prefers-reduced-motion:reduce){.marquee__track{animation:none;flex-wrap:wrap;justify-content:center}}

/* ==========================================================================
   CARDS / GRIDS
   ========================================================================== */
.grid{display:grid;gap:1rem}
.grid--2{grid-template-columns:repeat(2,1fr)}
.grid--3{grid-template-columns:repeat(3,1fr)}
.grid--4{grid-template-columns:repeat(4,1fr)}
@media (max-width:900px){.grid--3,.grid--4{grid-template-columns:repeat(2,1fr)}}
@media (max-width:600px){.grid--2,.grid--3,.grid--4{grid-template-columns:1fr}}

.card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--r);
  padding:1.25rem;transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:transparent}
.card__icon{
  width:40px;height:40px;border-radius:10px;display:grid;place-items:center;
  background:var(--brand-tint);color:var(--brand);margin-bottom:.85rem;
}
.card__icon svg{width:21px;height:21px}
.card h3{margin-bottom:.4rem}
.card p{color:var(--muted);font-size:.92rem;margin-bottom:.75rem}
.card--navy{background:var(--navy-2);border-color:var(--line-dark)}
.card--navy h3{color:var(--white)}
.card--navy p{color:var(--muted-dark)}
.card--navy .card__icon{background:rgba(255,122,33,.16);color:var(--growth)}

/* feature list with check bullets */
.checks li{position:relative;padding-left:1.6rem;margin-bottom:.4rem;font-size:.9rem;color:var(--ink-soft)}
.checks li::before{
  content:"";position:absolute;left:0;top:.32em;width:1.05rem;height:1.05rem;border-radius:50%;
  background:var(--growth-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23104B38' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/.7rem no-repeat;
}
.on-navy .checks li{color:var(--muted-dark)}

/* ==========================================================================
   STATS
   ========================================================================== */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--line);border-radius:var(--r);overflow:hidden}
.section--navy .stats{background:var(--line-dark)}
.stat{background:var(--white);padding:1.25rem 1rem;text-align:center}
.section--navy .stat{background:var(--navy)}
.stat b{display:block;font-family:var(--font-head);font-size:clamp(2rem,4vw,2.9rem);color:var(--brand);line-height:1}
.section--navy .stat b{color:var(--growth)}
.stat span{font-size:.85rem;color:var(--muted)}
.section--navy .stat span{color:var(--muted-dark)}
@media (max-width:700px){.stats{grid-template-columns:1fr 1fr}}

/* ==========================================================================
   PROCESS / STEPS
   ========================================================================== */
.steps{counter-reset:step;display:grid;gap:1rem}
.step{
  position:relative;background:var(--white);border:1px solid var(--line);border-radius:var(--r);
  padding:1.1rem 1.1rem 1.1rem 3.75rem;
}
.step::before{
  counter-increment:step;content:counter(step,decimal-leading-zero);
  position:absolute;left:1.1rem;top:1.1rem;
  font-family:var(--font-head);font-weight:700;font-size:1.05rem;color:var(--brand);
}
.step h3{margin-bottom:.35rem}
.step p{color:var(--muted);font-size:.93rem;margin:0}

/* ==========================================================================
   TABS (service categories / pricing)
   ========================================================================== */
.tabs__list{display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:1.5rem}
.tabs__tab{
  padding:.55rem .95rem;border-radius:999px;border:1px solid var(--line);
  font-family:var(--font-head);font-weight:500;font-size:.9rem;color:var(--ink-soft);background:var(--white);
}
.tabs__tab:hover{border-color:var(--brand);color:var(--brand)}
.tabs__tab[aria-selected="true"]{background:var(--navy);border-color:var(--navy);color:var(--white)}
.tabs__panel[hidden]{display:none}

/* ==========================================================================
   PRICING
   ========================================================================== */
.price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;align-items:stretch}
@media (max-width:960px){.price-grid{grid-template-columns:1fr 1fr}}
@media (max-width:640px){.price-grid{grid-template-columns:1fr}}
.plan{
  display:flex;flex-direction:column;background:var(--white);border:1px solid var(--line);
  border-radius:var(--r-lg);padding:1.35rem;
}
.plan--featured{border-color:var(--brand);box-shadow:0 0 0 1px var(--brand), var(--shadow-lg);position:relative}
.plan--featured::after{
  content:"Most Popular";position:absolute;top:-.8rem;left:1.75rem;
  background:var(--brand);color:var(--white);font-family:var(--font-head);font-weight:600;
  font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;padding:.3rem .7rem;border-radius:999px;
}
.plan__name{font-family:var(--font-head);font-weight:600;font-size:1.15rem;color:var(--navy)}
.plan__desc{color:var(--muted);font-size:.88rem;min-height:2.6em;margin:.35rem 0 1rem}
.plan__price{font-family:var(--font-head);font-size:2.2rem;color:var(--navy);line-height:1}
.plan__price small{font-size:.85rem;color:var(--muted);font-family:var(--font-body)}
.plan__price .from{display:block;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);margin-bottom:.2rem}
.plan hr{border:0;border-top:1px solid var(--line);margin:1.1rem 0}
.plan .checks{margin-bottom:1.25rem}
.plan .btn{margin-top:auto}
.plan__more{margin-top:.85rem;border-top:1px solid var(--line);padding-top:.55rem}
.plan__more summary{
  cursor:pointer;list-style:none;display:flex;align-items:center;gap:.35rem;
  font-family:var(--font-head);font-weight:600;font-size:.8rem;color:var(--brand);
}
.plan__more summary::-webkit-details-marker{display:none}
.plan__more summary::after{content:"\25be";font-size:.85em;transition:transform .15s ease}
.plan__more[open] summary::after{transform:rotate(180deg)}
.plan__more-in{padding-top:.6rem;font-size:.8rem;color:var(--muted);line-height:1.55}
.plan__more-in p{margin:0 0 .5rem}
.plan__more-in p:last-child{margin:0}
.price-note{margin-top:1.5rem;font-size:.85rem;color:var(--muted);text-align:center}
.price-cta{margin-top:1.75rem;text-align:center}

/* ---------- floating currency widget (separate from page content) ---------- */
#fx-widget{
  position:fixed;left:16px;top:50%;transform:translateY(-50%);z-index:70;
  display:flex;flex-direction:column;align-items:stretch;gap:.3rem;
  background:var(--navy);border-radius:16px;padding:.6rem .5rem;box-shadow:var(--shadow-lg);
}
.fx-widget__label{
  font-family:var(--font-head);font-weight:700;font-size:.62rem;letter-spacing:.1em;text-transform:uppercase;
  color:rgba(255,255,255,.5);text-align:center;margin-bottom:.15rem;
}
.currency-switch__opt{
  padding:.5rem .7rem;border-radius:9px;min-width:56px;text-align:center;
  font-family:var(--font-head);font-weight:700;font-size:.76rem;letter-spacing:.02em;
  color:rgba(255,255,255,.7);transition:background .15s ease,color .15s ease;
}
.currency-switch__opt:hover{color:var(--white);background:var(--navy-3)}
.currency-switch__opt[aria-pressed="true"]{background:var(--brand);color:var(--white)}
@media (max-width:760px){
  #fx-widget{
    left:50%;top:auto;bottom:14px;transform:translateX(-50%);
    flex-direction:row;border-radius:999px;padding:.4rem;
  }
  .fx-widget__label{display:none}
  .currency-switch__opt{min-width:44px;padding:.45rem .6rem;font-size:.7rem}
}

/* on the home page, the widget hides with the header — revealed on scroll */
.page-home #fx-widget{
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .4s ease, visibility 0s linear .4s;
}
.page-home.is-scrolled #fx-widget{
  opacity:1;visibility:visible;pointer-events:auto;
  transition:opacity .4s ease, visibility 0s linear 0s;
}
html.no-js.page-home #fx-widget{opacity:1;visibility:visible;pointer-events:auto}

/* ---------- draggable package carousel ---------- */
.plan-carousel{position:relative}
.plan-track{
  display:flex;gap:1.25rem;overflow-x:auto;scroll-snap-type:x proximity;cursor:grab;
  padding:.4rem .25rem 1.5rem;margin:0 -.25rem;touch-action:pan-x pan-y;
  scrollbar-width:none;-ms-overflow-style:none;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 1%,#000 97%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 1%,#000 97%,transparent);
}
.plan-track::-webkit-scrollbar{display:none}
.plan-track.is-dragging{cursor:grabbing;scroll-snap-type:none}
.plan-track>*{flex:0 0 300px;width:300px;scroll-snap-align:start}
@media (max-width:640px){.plan-track>*{flex:0 0 82vw;width:82vw}}
.plan-track:focus-visible{outline:3px solid var(--brand);outline-offset:4px}

.carousel__nav{display:flex;justify-content:center;align-items:center;gap:.75rem;margin-top:.25rem}
.carousel__hint-label{font-size:.78rem;color:var(--muted);display:none}
@media (hover:hover) and (pointer:fine){.carousel__hint-label{display:inline}}
.carousel__btn{
  width:42px;height:42px;flex:none;border-radius:50%;border:1px solid var(--line);background:var(--white);color:var(--navy);
  display:grid;place-items:center;transition:background .15s ease,color .15s ease,border-color .15s ease,transform .15s ease;
}
.carousel__btn:hover{background:var(--brand);border-color:var(--brand);color:var(--white);transform:translateY(-1px)}
.carousel__btn svg{width:18px;height:18px}
.on-navy .carousel__hint-label{color:rgba(255,255,255,.55)}
.on-navy .carousel__btn{background:transparent;border-color:var(--line-dark);color:var(--white)}
.on-navy .carousel__btn:hover{background:var(--growth);border-color:var(--growth);color:var(--navy)}

.carousel__drag-hint{
  position:fixed;top:0;left:0;z-index:80;pointer-events:none;
  display:flex;align-items:center;gap:.4rem;
  background:var(--brand);color:var(--white);font-family:var(--font-head);font-weight:600;font-size:.78rem;
  padding:.5rem .95rem;border-radius:999px;box-shadow:var(--shadow-lg);
  opacity:0;transform:translate(-50%,-50%) scale(.8);transition:opacity .15s ease,transform .15s ease;
  white-space:nowrap;
}
.carousel__drag-hint svg{width:14px;height:14px}
.carousel__drag-hint.is-visible{opacity:1;transform:translate(-50%,-50%) scale(1)}
@media (hover:none), (pointer:coarse){.carousel__drag-hint{display:none}}
@media (prefers-reduced-motion:reduce){.carousel__drag-hint{transition:none}}

/* placeholder banner for content still to come */
.todo-banner{
  border:2px dashed var(--brand);border-radius:var(--r);background:var(--brand-tint);
  padding:1.25rem 1.5rem;color:var(--brand-ink);font-size:.92rem;
}
.todo-banner b{font-family:var(--font-head)}

/* ==========================================================================
   PORTFOLIO
   ========================================================================== */
.folio-filter{display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:1.5rem}
.folio-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.85rem}
@media (max-width:900px){.folio-grid{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.folio-grid{grid-template-columns:1fr}}
.folio{
  position:relative;border-radius:var(--r);overflow:hidden;border:1px solid var(--line);
  background:var(--surface-2);aspect-ratio:4/3;display:block;
}
.folio img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:top center;z-index:1}
.folio__ph{
  position:absolute;inset:0;display:grid;place-items:center;
  color:var(--ink);font-family:var(--font-head);font-weight:600;font-size:1rem;line-height:1.3;
  text-align:center;padding:1.25rem;
  background:linear-gradient(135deg,var(--surface),var(--brand-tint));
}
.folio__ph::before{content:"";position:absolute;left:0;top:0;width:100%;height:4px;background:var(--brand)}
.folio__meta{
  position:absolute;left:0;right:0;bottom:0;padding:1.5rem 1.1rem .9rem;
  background:linear-gradient(transparent, rgba(16,75,56,.9));
  color:var(--white);transform:translateY(30%);opacity:0;transition:transform .2s ease, opacity .2s ease;
}
.folio:hover .folio__meta,.folio:focus-within .folio__meta{transform:translateY(0);opacity:1}
.folio__meta b{display:block;font-family:var(--font-head);font-size:.95rem}
.folio__meta span{font-size:.78rem;color:rgba(255,255,255,.7)}
.folio[hidden]{display:none}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.quote{
  background:var(--white);border:1px solid var(--line);border-radius:var(--r);padding:1.25rem;
}
.quote p{font-size:.98rem;color:var(--ink-soft)}
.quote__by{display:flex;align-items:center;gap:.8rem;margin-top:1.1rem}
.quote__avatar{width:42px;height:42px;border-radius:50%;background:var(--brand-tint);color:var(--brand);display:grid;place-items:center;font-family:var(--font-head);font-weight:700}
.quote__by b{font-family:var(--font-head);font-size:.9rem;color:var(--navy);display:block}
.quote__by span{font-size:.8rem;color:var(--muted)}
.stars{display:flex;gap:2px;color:var(--brand);margin-bottom:.8rem}
.stars svg{width:1rem;height:1rem}

/* ==========================================================================
   REVIEW MARQUEE  —  "Hear From Our Happy Customers"
   Two rows of cards scrolling in opposite directions. Pure CSS animation;
   each row holds the card set twice for a seamless -50% loop.
   ========================================================================== */
.reviews-head{text-align:center;max-width:640px;margin:0 auto clamp(2rem,4vw,3rem)}
.reviews-head .stars{justify-content:center;margin-bottom:.65rem}
.reviews-sub{font-size:1rem;color:var(--muted);margin:0}
.reviews-sub b{color:var(--ink);font-family:var(--font-head);font-weight:600}

.rmarquee{
  display:flex;flex-direction:column;gap:1.25rem;overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
}
.rmarquee__row{display:flex;gap:1.25rem;width:max-content;animation:rmarquee 64s linear infinite}
.rmarquee__row--rev{animation-direction:reverse;animation-duration:72s}
.rmarquee:hover .rmarquee__row,.rmarquee:focus-within .rmarquee__row{animation-play-state:paused}
.rmarquee__set{display:flex;gap:1.25rem}
@keyframes rmarquee{to{transform:translateX(calc(-50% - .625rem))}}

.rcard{
  flex:0 0 360px;width:360px;background:var(--white);border:1px solid var(--line);
  border-radius:var(--r);padding:1.6rem 1.6rem 1.35rem;
  display:flex;flex-direction:column;box-shadow:var(--shadow);
}
.rcard__q{
  font-family:Georgia,'Times New Roman',serif;font-size:3.2rem;line-height:.5;
  color:var(--brand);opacity:.28;height:1.5rem;
}
.rcard p{color:var(--ink-soft);font-size:.95rem;line-height:1.6;margin:0}
.rcard__foot{display:flex;align-items:flex-end;justify-content:space-between;gap:1rem;margin-top:1.5rem}
.rcard__who b{display:block;font-family:var(--font-head);font-weight:600;font-size:.92rem;color:var(--ink)}
.rcard__who span{font-size:.8rem;color:var(--muted)}
.rcard__verified{
  display:inline-flex;align-items:center;gap:.35rem;white-space:nowrap;
  font-family:var(--font-head);font-weight:600;font-size:.8rem;color:var(--brand);
}
.rcard__verified svg{width:.95rem;height:.95rem}

@media (max-width:520px){ .rcard{flex-basis:284px;width:284px} }
@media (prefers-reduced-motion:reduce){
  .rmarquee{mask-image:none;-webkit-mask-image:none}
  .rmarquee__row{animation:none;width:auto;flex-wrap:wrap;justify-content:center}
  .rmarquee__set--dup{display:none}
}
.no-js .rmarquee__row{/* animation still runs; JS not required */}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq{border-top:1px solid var(--line)}
.faq__item{border-bottom:1px solid var(--line)}
.faq__q{
  width:100%;display:flex;justify-content:space-between;align-items:center;gap:1rem;
  padding:1rem 0;font-family:var(--font-head);font-weight:600;font-size:.98rem;color:var(--navy);text-align:left;
}
.faq__q svg{width:1.1rem;height:1.1rem;flex:none;transition:transform .2s ease;color:var(--brand)}
.faq__q[aria-expanded="true"] svg{transform:rotate(45deg)}
.faq__a{overflow:hidden;max-height:0;transition:max-height .28s ease}
.faq__a-inner{padding:0 0 1.1rem;color:var(--muted);font-size:.92rem}

/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.cta-strip{
  background:linear-gradient(120deg,var(--brand),var(--brand-ink));color:var(--white);
  border-radius:var(--r-lg);padding:clamp(1.5rem,3.5vw,2.5rem);text-align:center;
}
.cta-strip h2{color:var(--white);margin-bottom:.75rem}
.cta-strip p{color:rgba(255,255,255,.85);max-width:50ch;margin:0 auto 1.75rem}
.cta-strip .btn--growth{background:var(--white);color:var(--brand-ink)}
.cta-strip .btn--growth:hover{background:var(--growth);color:var(--navy)}

/* ==========================================================================
   FORMS
   ========================================================================== */
.form{display:grid;gap:1.1rem}
.field{display:grid;gap:.4rem}
.field label{font-family:var(--font-head);font-weight:500;font-size:.85rem;color:var(--navy)}
.field input,.field select,.field textarea{
  width:100%;padding:.85rem 1rem;border:1px solid var(--line);border-radius:var(--r-sm);
  font:inherit;color:var(--ink);background:var(--white);transition:border-color .16s ease, box-shadow .16s ease;
}
.field input:focus,.field select:focus,.field textarea:focus{outline:0;border-color:var(--brand);box-shadow:var(--ring)}
.field textarea{min-height:140px;resize:vertical}
.field--error input,.field--error select,.field--error textarea{border-color:#D64545;box-shadow:0 0 0 3px rgba(214,69,69,.15)}
.field__err{font-size:.8rem;color:#D64545;min-height:1em}
.form__row{display:grid;grid-template-columns:1fr 1fr;gap:1.1rem}
@media (max-width:560px){.form__row{grid-template-columns:1fr}}
.form__success{
  display:none;padding:1.5rem;border-radius:var(--r);background:var(--growth-tint);
  color:var(--growth-deep);font-family:var(--font-head);font-weight:500;
}
.form.is-sent .form__success{display:block}
.form.is-sent .form__fields{display:none}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ft{background:var(--navy);color:var(--muted-dark);padding-block:clamp(2rem,4vw,3rem) 1.5rem}
.ft__grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:2rem}
@media (max-width:860px){.ft__grid{grid-template-columns:1fr 1fr}}
@media (max-width:520px){.ft__grid{grid-template-columns:1fr}}
.ft .logo{color:var(--white)}
.ft .logo mark{color:var(--growth)}
.ft h4{color:var(--white);font-size:.8rem;letter-spacing:.12em;text-transform:uppercase;margin-bottom:1rem}
.ft a{color:var(--muted-dark);font-size:.9rem;display:inline-block;padding:.25rem 0}
.ft a:hover{color:var(--growth)}
.ft__brand p{font-size:.9rem;max-width:34ch;margin:.9rem 0 1.25rem}
.ft__social{display:flex;gap:.6rem}
.ft__social a{width:38px;height:38px;border:1px solid var(--line-dark);border-radius:10px;display:grid;place-items:center}
.ft__social a:hover{border-color:var(--growth);background:rgba(255,122,33,.12)}
.ft__social svg{width:1.1rem;height:1.1rem}
.ft__bottom{
  display:flex;flex-wrap:wrap;gap:.75rem 1.5rem;justify-content:space-between;
  margin-top:2.5rem;padding-top:1.5rem;border-top:1px solid var(--line-dark);
  font-size:.82rem;
}

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
[data-reveal]{opacity:0;transform:translateY(24px);transition:opacity .5s ease, transform .5s ease}
[data-reveal="left"]{transform:translateX(-24px)}
[data-reveal="right"]{transform:translateX(24px)}
[data-reveal].is-in{opacity:1;transform:none}
.no-js [data-reveal]{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){[data-reveal]{opacity:1!important;transform:none!important;transition:none}}

/* ---------- Utilities ---------- */
.center{text-align:center}
.mt-0{margin-top:0}
.mb-0{margin-bottom:0}
.muted{color:var(--muted)}
.nowrap{white-space:nowrap}
.visually-hidden{position:absolute!important;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}

/* Readable controls and reliable responsive fallbacks. */
[hidden]{display:none!important}
.form input,.form select,.form textarea{font-size:1rem}
.form__status{color:var(--brand-ink);margin-top:1rem}
.nav a,.tabs__tab,.btn{font-size:max(.875rem,1em)}
/* Finalized Synergy identity — shared by every page. */
.logo{flex-shrink:0;line-height:1}
.logo img{display:block;width:190px;height:auto;max-width:100%;object-fit:contain}
.ft .logo img{width:220px}
.hdr__in{min-height:88px}
.btn--growth{background:var(--growth);color:var(--on-accent)}
.btn--growth:hover{background:#E96812;color:var(--on-accent)}
.plan--featured{border-color:var(--accent);box-shadow:0 0 0 1px var(--accent),var(--shadow)}
.plan--featured::after{background:var(--accent);color:var(--on-accent)}
.currency-switch__opt[aria-pressed="true"]{background:var(--accent);color:var(--on-accent)}
.section--navy .eyebrow,.util__promo{color:var(--white)}
.on-navy .btn--ghost:hover{color:var(--white)}
.tabs__tab[aria-selected="true"]{box-shadow:inset 0 -3px 0 var(--accent)}
.hero::before{background:radial-gradient(58% 52% at 80% 6%,rgba(255,122,33,.10),transparent 62%),radial-gradient(46% 46% at 6% 96%,rgba(247,243,232,.06),transparent 60%)}
.eyebrow{font-size:.875rem;letter-spacing:.12em}
.card p,.checks li,.step p{font-size:1rem}
@media(max-width:640px){.logo img{width:160px}.ft .logo img{width:200px}.hdr__in{min-height:80px}}

/* Compact page banners, with a distinct illustration on each page. */
.hero--character .hero__in{grid-template-columns:minmax(0,1fr) 240px;gap:clamp(1.5rem,5vw,4rem);padding-block:2rem;min-height:290px}
.hero--character .hero__in>div:first-child{max-width:740px}
.hero--character h1{font-size:clamp(1.85rem,3.2vw,3rem);line-height:1.1;letter-spacing:-.035em;max-width:26ch;margin-bottom:.8rem}
.hero--character p{font-size:1rem;line-height:1.6;max-width:57ch;margin-bottom:1rem}
.hero--character .eyebrow{color:var(--white);font-size:.75rem;margin-bottom:.7rem}
.hero--character .hero__cta{margin-bottom:0}
.hero--character .btn{padding:.7rem 1.25rem;font-size:.875rem}
.banner-art{position:relative;width:224px;aspect-ratio:1;justify-self:center;pointer-events:none}
.banner-art__portrait{position:absolute;inset:0;overflow:hidden;border-radius:26px;border:1px solid #F7F3E825;box-shadow:0 12px 30px #062C2040}
.banner-art__portrait img{display:block;width:100%;height:100%;object-fit:contain}
.banner-art__ring{position:absolute;right:-15px;top:14px;width:58px;height:58px;border:2px solid var(--accent);border-radius:50%}
.banner-art__square{position:absolute;left:-14px;top:20px;width:27px;height:27px;border:1px solid var(--white);transform:rotate(22deg);opacity:.6}
.banner-art__dot{position:absolute;right:-8px;bottom:8px;width:21px;height:21px;border-radius:5px;background:var(--accent);transform:rotate(15deg)}
.home-packages{position:relative;background:var(--surface);padding-block:clamp(3rem,6vw,6rem)}
.home-packages .section__head{max-width:65ch}
.home-package-tabs .tabs__list{justify-content:center;gap:.65rem;margin-bottom:2.5rem}
.home-package-tabs .tabs__tab{min-height:46px;padding:.7rem 1.15rem}
.home-packages .price-grid{gap:1.5rem;max-width:1240px;margin-inline:auto}
.home-packages .plan{padding:clamp(1.5rem,2.2vw,2rem);border-radius:22px}
.home-packages .plan__name{font-size:1.35rem}
.home-packages .plan__desc{min-height:3.2em;line-height:1.55}
.home-packages .plan__price{font-size:clamp(2rem,3vw,2.7rem);line-height:1.2}
.home-packages .plan__price small{display:block;font-size:.875rem;margin-top:.35rem}
.home-packages .checks{flex:1;margin-bottom:1.75rem}
.home-packages .checks li{margin-bottom:.65rem}
.home-packages .plan--featured{border:2px solid var(--accent);box-shadow:var(--shadow)}
.home-packages .plan--featured::after{font-size:.75rem}
.home-package-details{display:block;text-align:center;margin-top:.9rem;font-size:.875rem;text-decoration:underline;text-underline-offset:4px}
.home-packages .plan .btn{margin-top:0}
.home-packages .price-note{max-width:75ch;margin:2rem auto 0}

/* Shared typography, portfolio, navigation and footer refinements. */
h1,h2,h3{text-wrap:balance}
h2{letter-spacing:-.035em}
.nav a,.field label,.btn,.tabs__tab{font-family:var(--font-body)}
.nav a{font-weight:600;font-size:.875rem}
.hdr__in{min-height:80px}
.hdr__cta{position:relative;z-index:2}
.card{padding:1.6rem;border-radius:18px}
.card p:last-child{margin-bottom:0}
.card__number{display:inline-block;margin-bottom:1.5rem;color:var(--brand);font-size:.8rem;font-weight:600;border-bottom:3px solid var(--accent);padding-bottom:.4rem}
.about-intro{gap:clamp(1.5rem,5vw,5rem);align-items:start}
.stat{display:block;color:var(--white)}
.stat:hover{color:var(--white)}
.stat b{font-family:var(--font-head);font-variant-numeric:tabular-nums;font-weight:700}
.stat span{display:block}
.stat:hover span{text-decoration:underline;text-decoration-color:var(--accent);text-underline-offset:5px}
.section__link{margin:2rem 0 0}
.project-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:2rem}
.project-grid--three{grid-template-columns:repeat(3,minmax(0,1fr));gap:1.5rem}
.project-card{border:1px solid var(--line);border-radius:20px;overflow:hidden;background:var(--white);min-width:0}
.project-card__image{display:block;position:relative;aspect-ratio:16/10;overflow:hidden;background:var(--surface-2)}
.project-card__image img{display:block;width:100%;height:100%;object-fit:cover;object-position:top;transition:transform .3s ease}
.project-card__image:hover img{transform:scale(1.025)}
.project-card__badge{position:absolute;left:1rem;top:1rem;padding:.3rem .65rem;background:var(--white);color:var(--brand);border-radius:99px;font-size:.7rem;font-weight:600;box-shadow:0 1px 8px #0001}
.project-card__arrow{position:absolute;right:1rem;bottom:1rem;display:grid;place-items:center;width:38px;height:38px;border-radius:50%;background:var(--accent);color:var(--on-accent);font-size:1.3rem}
.project-card__body{padding:1.5rem}
.project-card__category{display:block;color:var(--muted);font-size:.75rem;font-weight:600;letter-spacing:.04em;margin-bottom:.65rem}
.project-card h3{font-size:1.4rem;margin-bottom:.75rem}
.project-card p{font-size:.95rem;color:var(--ink-soft);margin:0}
.project-card__details{margin-top:1.2rem;padding-top:.85rem;border-top:1px solid var(--line)}
.project-card__details summary{cursor:pointer;font-size:.85rem;font-weight:600}
.project-card__details p{font-size:.85rem;padding-top:.8rem}
.folio-filter .tabs__tab[aria-pressed="true"]{background:var(--brand);color:var(--white);border-color:var(--brand);box-shadow:inset 0 -3px 0 var(--accent)}
.review-empty{max-width:800px;text-align:center}
.review-empty p{margin:1rem 0 1.5rem}
.brief-prompts{margin:1.5rem 0 2rem;border-top:1px solid var(--line)}
.brief-prompts li{display:grid;gap:.25rem;padding:1rem 0;border-bottom:1px solid var(--line)}
.brief-prompts span{color:var(--muted);font-size:.95rem}
.currency-controls{margin-bottom:1.5rem}
.currency-controls #fx-widget{position:static;transform:none;display:flex;flex-direction:row;flex-wrap:wrap;align-items:center;gap:.4rem;box-shadow:none;width:fit-content;padding:.4rem;border-radius:999px;background:var(--white);border:1px solid var(--line);opacity:1;visibility:visible;pointer-events:auto}
.currency-controls .fx-widget__label{display:block;writing-mode:horizontal-tb;margin:0;padding:0 .55rem;font-size:.75rem;letter-spacing:0;text-transform:none}
.currency-controls .currency-switch__opt{min-width:45px;padding:.5rem .75rem}
.currency-controls .currency-note{font-size:.75rem;color:var(--muted);margin:.6rem 0 0}
.home-packages .currency-controls{display:flex;flex-direction:column;align-items:center}
.faq__q[aria-expanded="true"]+.faq__a{max-height:none!important}
.js .faq__a[hidden]{display:none}
.no-js .faq__a{max-height:none}
.no-js [role="tabpanel"][hidden]{display:block!important}
.no-js .folio-filter,.no-js .currency-controls{display:none}
.ft{padding-top:0}
.ft__cta{display:flex;align-items:center;justify-content:space-between;gap:2rem;padding-block:clamp(2.5rem,5vw,4.5rem);border-bottom:1px solid var(--line-dark);margin-bottom:3rem}
.ft__cta h2{color:var(--white);font-size:clamp(1.8rem,3.5vw,3rem)}
.ft__cta .eyebrow{color:var(--white)}
.ft__cta .btn{display:inline-flex;padding:1rem 1.75rem;color:var(--on-accent);font-size:1rem;white-space:nowrap}
.ft__grid{grid-template-columns:1.3fr 1fr 1fr 1fr;gap:clamp(1.5rem,3vw,3rem)}
.ft__grid nav{display:flex;flex-direction:column;align-items:flex-start}
.ft__grid h3{font-size:.85rem;color:var(--white);letter-spacing:0;margin:0 0 1rem}
.ft__grid nav a{display:block;padding:.35rem 0;font-size:.875rem}
.ft .ft__contact{color:var(--white);text-decoration:underline;text-decoration-color:var(--accent);text-underline-offset:6px}
.ft__bottom{align-items:center}
#main,[id]{scroll-margin-top:100px}
@media(max-width:1100px) and (min-width:961px){.hdr__in{gap:.7rem}.nav{gap:0}.nav a{padding-inline:.45rem}.logo img{width:165px}.hdr__cta .btn{padding-inline:1rem}}
@media(max-width:960px){.hero--character .hero__in{grid-template-columns:minmax(0,1fr) 190px;gap:1.5rem;min-height:250px}.banner-art{width:180px}.project-grid--three{grid-template-columns:repeat(2,minmax(0,1fr))}.ft__grid{grid-template-columns:repeat(2,minmax(0,1fr))}.nav{visibility:hidden}.nav.is-open{visibility:visible}.no-js .nav{position:static;transform:none;visibility:visible;width:auto;flex-flow:row wrap;padding:0;box-shadow:none}.no-js .burger{display:none}.no-js .hdr__in{flex-wrap:wrap}}
@media(max-width:600px){.hero--character .hero__in{grid-template-columns:minmax(0,1fr) 115px;gap:1rem;padding-block:1.5rem;min-height:0}.hero--character h1{font-size:clamp(1.6rem,5.8vw,2rem);letter-spacing:-.03em}.hero--character p{font-size:.875rem;margin-bottom:.85rem}.hero--character .eyebrow{font-size:.65rem;letter-spacing:.08em}.hero--character .btn{font-size:.8rem;padding:.6rem .8rem}.banner-art{width:115px}.banner-art__portrait{border-radius:18px}.banner-art__ring{width:35px;height:35px;right:-7px}.banner-art__square{width:18px;height:18px;left:-6px}.banner-art__dot{width:16px;height:16px;right:-5px}.project-grid,.project-grid--three{grid-template-columns:1fr;gap:1.25rem}.ft__cta{align-items:flex-start;flex-direction:column;gap:1.5rem}.ft__grid{gap:2rem 1.25rem}.ft__brand{grid-column:1/-1}.ft__grid nav:last-child{grid-column:auto}.ft__grid nav a{font-size:.825rem}.home-package-tabs .tabs__list{justify-content:flex-start}.home-package-tabs .tabs__tab{font-size:.875rem;padding:.65rem .8rem}.home-packages .plan__desc{min-height:0}.currency-controls #fx-widget{border-radius:18px}.currency-controls .fx-widget__label{flex-basis:100%;padding:.25rem .5rem}.project-card__body{padding:1.25rem}}
@media(max-width:380px){.hero--character .hero__in{grid-template-columns:minmax(0,1fr) 85px;gap:.75rem}.banner-art{width:85px}.hero--character h1{font-size:1.5rem}.hero--character .eyebrow{font-size:.6rem}}
@media(prefers-reduced-motion:reduce){.project-card__image img{transition:none}.project-card__image:hover img{transform:none}}

/* Agency-wide icon system and marketing doodle accents. */
.icon{display:inline-block;vertical-align:middle;flex:none;width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
.icon-badge{display:inline-flex;align-items:center;justify-content:center;width:52px;height:52px;border-radius:16px;background:var(--brand-tint);color:var(--brand);margin-bottom:1.2rem;border:1px solid #104B3810}
.icon-badge .icon{width:27px;height:27px}
.icon-badge--orange{background:#FF7A211C;border-color:#FF7A2133}
.agency-doodles{position:relative;isolation:isolate}
.agency-doodles::after{content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;background-image:url('../img/decor/marketing-doodles.webp?v=v20260922-audit');background-size:660px auto;background-repeat:repeat;opacity:.12}
.agency-doodles.hero::after,.agency-doodles.ft::after,.agency-doodles.section--navy::after{opacity:.07;mix-blend-mode:screen}
.agency-doodles.island-hero::after{opacity:.10}
.agency-doodles>.wrap,.agency-doodles>.island-hero__layout{position:relative;z-index:1}
.agency-doodles.section--surface::after{mix-blend-mode:multiply}
.step{padding:1.35rem;background:var(--white)}
.step::before{content:none}
.step .icon-badge{margin-bottom:1rem}
.step h3{font-size:1.15rem}
.card__icon{width:52px;height:52px;border-radius:16px;margin-bottom:1.2rem}
.card__icon .icon{width:26px;height:26px}
.capabilities{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem}
.capability{padding:1.35rem;text-align:center;color:var(--white);border-right:1px solid var(--line-dark)}
.capability:last-child{border-right:0}
.capability .icon-badge{background:#F7F3E812;border:1px solid #F7F3E825;color:var(--accent);margin-bottom:1rem}
.capability h3{color:var(--white);font-size:1.2rem}
.capability p{font-size:.875rem;margin:.45rem 0 0}
.capability:hover{color:var(--white)}
.capability:hover .icon-badge{background:#FF7A2124}
.ft__cta .icon-badge{background:#F7F3E80D;color:var(--accent);border-color:#F7F3E826}
.btn .icon,.arrow-link .icon{width:18px;height:18px}
.hero--character .eyebrow{font-size:.8rem}
.hero--character p{font-size:1rem}
.service-hub-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.4rem;align-items:start}
.service-card{display:flex;flex-direction:column;min-width:0;padding:2rem;border:1px solid var(--line);border-radius:22px;background:var(--white)}
.service-card h2{font-size:1.45rem;letter-spacing:-.025em;margin-bottom:.9rem}
.service-card p{color:var(--muted);font-size:1rem}
.service-card .checks{margin-bottom:1.5rem}
.service-card .arrow-link{margin-top:auto;padding-top:1rem}
/* Seven cards in a three-column grid leave the last one alone on its own
   row. The AI card takes the full width instead, reading across rather
   than down, so the row closes and the page gains a focal point. */
.service-card--wide{grid-column:1/-1;margin-top:clamp(1.5rem,3.5vw,3.5rem);display:grid;align-items:start;
  grid-template-columns:minmax(0,1fr) max-content;
  grid-template-rows:auto auto auto 1fr;column-gap:clamp(2rem,5vw,4.5rem)}
.service-card--wide>.icon-badge{grid-column:1;grid-row:1}
.service-card--wide>h2{grid-column:1;grid-row:2;font-size:clamp(1.55rem,2.6vw,2.05rem)}
.service-card--wide>p{grid-column:1;grid-row:3;max-width:44ch}
.service-card--wide>.checks{grid-column:2;grid-row:1/4;margin:.35rem 0 0;align-self:center}
.service-card--wide>.arrow-link{grid-column:1;grid-row:4;margin-top:1.4rem;padding-top:0}
@media(max-width:640px){
  .service-card--wide{grid-template-columns:1fr;grid-template-rows:none}
  .service-card--wide>.icon-badge,.service-card--wide>h2,.service-card--wide>p,
  .service-card--wide>.checks,.service-card--wide>.arrow-link{grid-column:1;grid-row:auto}
  .service-card--wide>.checks{margin:0 0 1.5rem;align-self:start}
  .service-card--wide>.arrow-link{margin-top:auto}
}
.service-card .icon-badge{width:58px;height:58px;border-radius:50%}
/* Staggered composition rather than a table of equal boxes: cards keep
   their own height and alternate columns drop, with an accent edge at the
   top to give the grid a horizon. */
.service-card{border-top:2px solid var(--accent)}
@media(min-width:961px){.service-card:nth-child(3n+2){margin-top:clamp(2.5rem,5vw,5rem)}}
@media(min-width:641px) and (max-width:960px){.service-card:nth-child(even){margin-top:clamp(2rem,4vw,3.5rem)}}
/* Cards rise in a beat apart across each row, so the cascade follows the
   stagger rather than landing all at once. */
@media(min-width:961px){
  .service-hub-grid>[data-reveal]:nth-child(3n+2){transition-delay:90ms}
  .service-hub-grid>[data-reveal]:nth-child(3n+3){transition-delay:180ms}
}
@media(min-width:641px) and (max-width:960px){
  .service-hub-grid>[data-reveal]:nth-child(even){transition-delay:90ms}
}
.service-card:hover{border-color:#104B3855;box-shadow:var(--shadow)}
.service-hero-icon{display:grid;place-items:center;width:176px;height:176px;justify-self:center;border-radius:40px;border:1px solid #F7F3E82A;background:#F7F3E80B;color:var(--accent);transform:rotate(-5deg)}
.service-hero-icon .icon{width:86px;height:86px;stroke-width:1.3;transform:rotate(5deg)}
.service-intro{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:clamp(2rem,6vw,5rem);align-items:start}
.service-deliverables{display:grid;gap:.85rem}
.service-deliverable{display:flex;gap:.85rem;align-items:flex-start;padding:1rem 1.2rem;background:var(--white);border:1px solid var(--line);border-radius:14px}
.service-deliverable .icon{width:20px;height:20px;color:var(--brand);margin-top:3px}
.service-summary{padding:1.7rem;border:1px solid var(--line);border-radius:20px;background:var(--white)}
.service-summary h3{margin:.75rem 0}
.breadcrumb{display:flex;gap:.6rem;align-items:center;color:var(--muted);font-size:.875rem;padding-block:1.1rem}
.breadcrumb .icon{width:14px;height:14px}
.service-related{display:flex;flex-wrap:wrap;gap:.75rem}
.service-related a{display:inline-flex;align-items:center;gap:.6rem;padding:.7rem 1rem;border-radius:12px;border:1px solid var(--line);background:var(--white);font-size:.875rem}
@media(max-width:960px){.service-hub-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.service-hero-icon{width:140px;height:140px}.service-hero-icon .icon{width:70px;height:70px}}
@media(max-width:640px){.agency-doodles::after{background-size:460px auto;opacity:.08}.service-hub-grid,.service-intro{grid-template-columns:1fr}.service-card{padding:1.5rem}.capabilities{grid-template-columns:repeat(2,minmax(0,1fr))}.capability{padding:1rem}.capability:nth-child(2){border-right:0}.capability h3{font-size:1rem}.service-hero-icon{width:106px;height:106px;border-radius:26px}.service-hero-icon .icon{width:56px;height:56px}.hero--character .eyebrow{font-size:.75rem}.hero--character p{font-size:1rem}}
@media(max-width:380px){.service-hero-icon{width:80px;height:80px}.service-hero-icon .icon{width:42px;height:42px}}

/* Portfolio categories are shared by the homepage and full portfolio. */
.portfolio-controls{display:grid;gap:1rem;margin-bottom:1.65rem}
.portfolio-types{display:inline-flex;gap:.4rem;width:fit-content;background:var(--brand-tint);border:1px solid var(--line);padding:.4rem;border-radius:18px}
.portfolio-type{display:inline-flex;align-items:center;justify-content:center;gap:.65rem;padding:.8rem 1.2rem;border-radius:13px;font-weight:600;font-size:1rem;min-height:48px}
.portfolio-type .icon{width:21px;height:21px}
.portfolio-type[aria-pressed="true"]{background:var(--brand);color:var(--white);box-shadow:0 3px 10px #104B3820}
.portfolio-industries{display:flex;gap:.5rem;flex-wrap:wrap}
.portfolio-industry{display:inline-flex;gap:.5rem;align-items:center;padding:.55rem .85rem;min-height:44px;border:1px solid var(--line);border-radius:99px;background:var(--white);font-size:.875rem}
.portfolio-industry .icon{width:17px;height:17px}
.portfolio-industry[aria-pressed="true"]{background:#FF7A211C;border-color:var(--accent);color:var(--brand)}
.portfolio-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.4rem}
.portfolio-grid .project-card__image{aspect-ratio:16/11}
.portfolio-grid .project-card__body{padding:1.25rem}
.portfolio-grid .project-card h3{font-size:1.15rem;margin-bottom:.65rem;line-height:1.3}
.project-card__category{display:flex;align-items:center;gap:.4rem;margin:0 0 .55rem;font-size:.8rem}
.project-card__category .icon{width:15px;height:15px}
.project-card__domain{display:flex;justify-content:space-between;align-items:center;gap:.75rem;font-size:.8rem;color:var(--muted);overflow-wrap:anywhere}
.project-card__domain .icon{width:17px;height:17px;flex-shrink:0;color:var(--brand)}
.project-card__image img{object-fit:cover;object-position:top center}
.project-card--photo .project-card__image img{object-position:center}
.project-card__browser{position:absolute;inset:0;display:flex;flex-direction:column;align-items:flex-start;justify-content:space-between;padding:1.4rem;background:var(--brand-tint);color:var(--brand)}
.project-card__browser .icon{width:48px;height:48px;stroke-width:1.2}
.project-card__browser b{font-family:var(--font-head);font-size:clamp(1.3rem,2vw,1.8rem);line-height:1.1;letter-spacing:-.03em;max-width:16ch}
.project-card__browser small{font-size:.8rem}
.gallery-footer{display:flex;justify-content:space-between;align-items:center;gap:1rem;margin-top:1.8rem;flex-wrap:wrap}
.gallery-pager{display:flex;align-items:center;gap:.7rem}
.gallery-pager p{margin:0;color:var(--muted);font-size:.875rem;min-width:130px;text-align:center}
.gallery-pager button{display:grid;place-items:center;width:44px;height:44px;border:1px solid var(--line);border-radius:50%;background:var(--white)}
.gallery-pager button:hover:not(:disabled){background:var(--brand);color:var(--white);border-color:var(--brand)}
.gallery-pager button:disabled{opacity:.4;cursor:default}
.gallery-pager .icon{width:19px;height:19px}
.no-js .portfolio-controls,.no-js .gallery-footer{display:none}
.no-js [data-project-gallery] .project-card[hidden]{display:block!important}

/* Visible, static currency controls and a persistent price-page shortcut. */
.currency-controls{margin:1.5rem 0;display:block!important}
.currency-bar{display:flex;flex-wrap:wrap;align-items:center;gap:.8rem 1.5rem;padding:1rem 1.2rem;background:var(--white);border:1px solid #104B3840;border-left:4px solid var(--accent);border-radius:14px;box-shadow:0 4px 20px #104B3807}
.currency-bar__label{display:inline-flex;align-items:center;gap:.55rem;font-size:.875rem;font-weight:600;color:var(--brand)}
.currency-bar__label .icon{width:22px;height:22px}
.currency-options{display:flex;flex-wrap:wrap;gap:.35rem}
.currency-option{display:inline-flex;justify-content:center;align-items:center;min-height:40px;padding:.5rem .8rem;border-radius:9px;border:1px solid var(--line);font-size:.875rem;font-weight:600;background:var(--white);color:var(--brand)}
.currency-option:hover{border-color:var(--brand)}
.currency-option[aria-pressed="true"]{background:var(--brand);color:var(--white);border-color:var(--brand)}
.currency-note{font-size:.8rem;color:var(--muted);margin:.7rem 0 0}
.currency-dock{position:fixed;bottom:20px;right:22px;z-index:85;color:var(--brand);font-size:.875rem}
.currency-dock>summary{display:flex;align-items:center;gap:.5rem;list-style:none;cursor:pointer;padding:.75rem 1rem;border:1px solid #104B3840;border-radius:99px;background:var(--white);box-shadow:0 4px 22px #062C2024;min-height:48px}
.currency-dock>summary::-webkit-details-marker{display:none}
.currency-dock>summary>.icon:first-child{color:var(--brand);width:21px;height:21px}
.currency-dock>summary strong{padding:.15rem .5rem;border-radius:6px;background:#FF7A2126;font-size:.8rem}
.currency-dock .currency-dock__chevron{width:15px;height:15px;transform:rotate(90deg)}
.currency-dock[open] .currency-dock__chevron{transform:rotate(-90deg)}
.currency-dock__panel{position:absolute;right:0;bottom:calc(100% + 10px);width:292px;max-width:calc(100vw - 28px);padding:1rem;background:var(--white);border:1px solid var(--line);border-radius:18px;box-shadow:var(--shadow-lg)}
.currency-dock__panel p{font-weight:600;margin:0 0 .8rem;font-size:.875rem}
.currency-dock__panel small{display:block;font-size:.75rem;color:var(--muted);margin-top:.75rem}
.no-js .currency-dock{display:none}
.no-js .currency-options{display:none}
.no-js .currency-controls{display:block}
.service-starting-price{font-family:var(--font-head);font-size:clamp(2.2rem,4vw,3rem);font-weight:700;line-height:1.2;letter-spacing:-.04em}
.service-starting-price small{font-family:var(--font-body);display:block;font-size:.875rem;font-weight:400;letter-spacing:0;margin-top:.5rem;color:var(--muted)}
.service-summary>.icon-badge{display:flex}
.plan__name{display:flex;align-items:center;gap:.55rem}
.plan__name>.icon{width:22px;height:22px;color:var(--brand)}
.agency-doodles.hero::after,.agency-doodles.ft::after,.agency-doodles.section--navy::after{filter:invert(1) grayscale(1);opacity:.14;mix-blend-mode:screen}
@media(max-width:960px){.portfolio-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:600px){.portfolio-grid{grid-template-columns:1fr}.portfolio-type{font-size:.9rem;padding:.7rem 1rem}.portfolio-industries{gap:.4rem}.portfolio-industry{font-size:.8rem;padding:.5rem .7rem}.currency-bar{padding:1rem;gap:.65rem}.currency-options{gap:.3rem}.currency-option{padding:.5rem .6rem;min-width:43px}.currency-dock{right:12px;bottom:12px}.currency-dock>summary{padding:.6rem .8rem;gap:.4rem}.currency-dock__panel{width:280px}.gallery-footer{gap:1.2rem}.gallery-pager p{min-width:112px}.ft__bottom{padding-bottom:3.5rem}}

.faq__q .icon{transition:transform .2s ease}.faq__q[aria-expanded="true"] .icon{transform:rotate(90deg)}
.page-home #process .steps{grid-template-columns:repeat(5,minmax(0,1fr))}
@media(max-width:1100px){.page-home #process .steps{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:800px){.page-home #process .steps{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:500px){.page-home #process .steps{grid-template-columns:1fr}}

[data-project-gallery]{scroll-margin-top:105px}.project-card__browser small{display:flex;align-items:center;gap:.4rem}.project-card__browser small .icon{width:15px;height:15px}.project-card__arrow .icon{width:19px;height:19px}.project-card__body h3 a{color:var(--brand)}
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

/* ==========================================================================
   SPLIT — editorial rows: media one side, copy the other
   Media slot takes a photo (.split__media img) or the brand panel stand-in.
   ========================================================================== */
.split{display:grid;grid-template-columns:minmax(0,.92fr) minmax(0,1fr);gap:clamp(1.75rem,4.5vw,4rem);align-items:stretch}
.split+.split{margin-top:clamp(2.5rem,6vw,5rem)}
.split--flip .split__media{order:2}
.split__media{position:relative;display:flex;margin:0;border-radius:var(--r-lg);overflow:hidden;background:var(--brand-tint);box-shadow:var(--shadow-lg)}
.split__media img{display:block;width:100%;height:100%;object-fit:cover;aspect-ratio:4/3}
.split__panel{position:relative;isolation:isolate;flex:1;display:flex;flex-direction:column;justify-content:space-between;gap:clamp(1.5rem,4vw,2.75rem);min-height:clamp(340px,38vw,460px);padding:clamp(1.5rem,3vw,2.25rem);background:var(--navy);color:var(--white)}
.split__panel::after{content:"";position:absolute;right:-18%;bottom:-22%;width:74%;aspect-ratio:1;border-radius:50%;background:radial-gradient(circle at 30% 30%,rgba(255,122,33,.32),transparent 68%);z-index:-1}
.split__panel::before{content:"";position:absolute;left:-12%;top:-16%;width:46%;aspect-ratio:1;border:1px solid rgba(255,255,255,.16);border-radius:50%;z-index:-1}
.split__quote{font-family:var(--font-head);font-size:clamp(1.15rem,1.9vw,1.55rem);line-height:1.35;letter-spacing:-.02em;margin:0}
.split__quote span{color:var(--growth)}
.split__proof{display:grid;gap:.85rem;margin:0;padding:0;list-style:none}
.split__proof li{display:flex;align-items:flex-start;gap:.7rem;font-size:.92rem;color:rgba(255,255,255,.78);line-height:1.45}
.split__proof .icon{width:19px;height:19px;flex:none;margin-top:.12rem;color:var(--growth)}
.split__proof b{display:block;font-family:var(--font-head);font-size:1rem;color:var(--white);font-weight:700}
.split__body>.btn{margin-top:1.4rem}
.split__body p{color:var(--muted);margin-bottom:.9rem}
.split__body p:last-of-type{margin-bottom:0}
.split__body .lead{color:var(--ink-soft);margin-bottom:1.1rem}
.split__body .checks{margin-top:1.25rem}
.on-navy .split__body p{color:var(--muted-dark)}
@media (max-width:900px){.split{grid-template-columns:1fr;gap:1.75rem}.split--flip .split__media{order:0}.split__panel{min-height:0}}

/* ---------- Pillar cards (mission / vision style pairs) ---------- */
.pillars{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}
.pillar{position:relative;padding:clamp(1.4rem,2.6vw,2rem);border:1px solid var(--line);border-radius:var(--r-lg);background:var(--white)}
.pillar__no{font-family:var(--font-head);font-size:.78rem;letter-spacing:.16em;text-transform:uppercase;color:var(--orange-ink);display:block;margin-bottom:.75rem}
.pillar h3{font-size:clamp(1.15rem,1.8vw,1.45rem);margin-bottom:.6rem}
.pillar p{color:var(--muted);margin-bottom:0}
.pillar p+p{margin-top:.75rem}
.section--navy .pillar{background:var(--navy-2);border-color:var(--line-dark)}
.section--navy .pillar h3{color:var(--white)}
.section--navy .pillar p{color:var(--muted-dark)}
@media (max-width:700px){.pillars{grid-template-columns:1fr}}

/* ---------- Sector chips ---------- */


/* Media that must be seen whole (a grid or collage), rather than cropped
   to the 4:3 the photographic cards use. */
.split__media--full{align-self:start;background:transparent}
.split__media--full img{height:auto;object-fit:contain;aspect-ratio:auto}
/* Side by side, the tall artwork would otherwise set the row height and hang
   below the copy. Taking the image out of flow lets the copy set the row, and
   object-fit:contain scales the artwork to match without cropping it. The
   figure's panel goes with it: once the image no longer fills the grid area,
   a background or shadow on the figure would frame empty space beside it. */
@media (min-width:901px){
  /* The tall artwork is a supporting image, not the subject: it takes a
     narrower column than a photographic .split does, and is capped so it
     no longer runs the full height of the copy beside it. The copy keeps a
     readable measure rather than spreading into the width it gives back. */
  .split:has(.split__media--full){grid-template-columns:minmax(0,.58fr) minmax(0,1fr)}
  .split:has(.split__media--full) .split__body p,
  .split:has(.split__media--full) .split__body .checks{max-width:68ch}
  .split__media--full{max-height:clamp(360px,40vw,540px)}
  .split__media--full{align-self:stretch;position:relative;min-height:0;
    box-shadow:none;border-radius:0;overflow:visible}
  .split__media--full img{position:absolute;left:0;top:0;height:100%;width:auto;max-width:100%;
    object-position:left top;border-radius:var(--r-lg)}
}

/* Cookie consent (analytics loads only after Accept; see main.js) */
.consent{position:fixed;left:max(1rem,env(safe-area-inset-left));right:max(1rem,env(safe-area-inset-right));bottom:max(1rem,env(safe-area-inset-bottom));z-index:1000;max-width:460px;background:var(--navy);color:var(--white);border-radius:var(--r-lg);padding:1.1rem 1.2rem;box-shadow:0 18px 44px rgba(6,44,32,.28);font:400 .95rem/1.5 var(--font-body)}
.consent p{margin:0}
.consent a{color:var(--white);text-decoration:underline;text-underline-offset:2px}
.consent__btns{display:flex;gap:.6rem;margin-top:.9rem}
.consent__btn{flex:1;min-height:44px;border-radius:999px;border:1.5px solid rgba(247,243,232,.55);background:transparent;color:var(--white);font:600 .95rem var(--font-body);cursor:pointer}
.consent__btn--yes{background:var(--accent);border-color:var(--accent);color:var(--on-accent)}
.consent__btn:focus-visible{outline:3px solid var(--accent);outline-offset:2px}
.cookie-settings{background:none;border:0;padding:0;color:var(--brand-ink);font:inherit;font-weight:600;text-decoration:underline;cursor:pointer}

/* Links in legal copy must be distinguishable without colour perception. */
.legal-copy p a{text-decoration:underline;text-underline-offset:.15em}
