/* =========================================================
   assigned — design system
   Palette pulled from the logo mark; type pairs a geometric
   display face with Inter (the wordmark's own font) for body/UI.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,500;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@800&display=swap');

:root{
  --bg:            #ffffff;
  --bg-soft:       #f5f5f0;
  --bg-soft-2:     #eef0e4;
  --ink:           #0a0a0a;
  --ink-soft:      #4a4a45;
  --ink-faint:     #83837c;
  --line:          #e6e6de;
  --line-strong:   #d3d3c7;

  --green-deep:    #5f8b1f;
  --green:         #16a34a;
  --green-mid:     #22c55e;
  --green-bright:  #a4e551;
  --green-pale:    #dcfce7;
  --green-line:    #bbf7d0;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 12px 30px -12px rgba(0,0,0,.18);
  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,.25);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;

  --maxw: 1200px;
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Archivo', system-ui, sans-serif;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}
p{ margin:0; }
button{ font-family: inherit; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

:focus-visible{ outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.badge-pill{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 8px 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.badge-pill .dot-live{
  width:7px; height:7px; border-radius:50%;
  background: var(--green); flex:none;
  box-shadow: 0 0 0 3px var(--green-pale);
}
.badge-pill strong{ color: var(--ink); font-weight:600; }
.badge-pill span.pill-tag{
  background: var(--green-pale); color: var(--green-deep);
  padding: 4px 12px; border-radius:999px; font-weight:600; font-size:12px;
}

.accent{
  font-style: italic;
  font-weight: 600;
  color: var(--green-deep);
}

/* numbered service list (editorial style) */
.num-list{ border-top: 1px solid var(--line); }
.num-list a{
  display:flex; align-items:center; gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .3s ease, background .3s ease;
}
.num-list a:hover{ padding-left: 14px; background: var(--bg-soft); }
.num-list .nl-index{
  font-family: var(--font-display); font-weight:600; font-size:14px; color: var(--green-deep); flex:none; width:32px;
}
.num-list .nl-body{ flex:1; display:flex; align-items:baseline; gap:20px; flex-wrap:wrap; }
.num-list h3{ font-size:21px; font-weight:600; flex:none; min-width:250px; }
.num-list p{ font-size:14.5px; color: var(--ink-soft); flex:1; min-width:200px; }
.num-list .nl-arrow{
  flex:none; width:40px;height:40px;border-radius:50%;
  border:1px solid var(--line-strong);
  display:flex;align-items:center;justify-content:center;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.num-list .nl-arrow svg{ width:16px;height:16px; }
.num-list a:hover .nl-arrow{ background: var(--ink); border-color: var(--ink); color:#fff; transform: rotate(45deg); }

/* decorative panel replacing a photo we don't have */
.panel-art{
  position:relative; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--bg-soft), #fff 60%);
  border: 1px solid var(--line);
  min-height: 380px;
  overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.panel-art svg{ width:70%; opacity:.9; }
.panel-float{
  position:absolute; left: 24px; bottom:24px;
  background:#fff; border:1px solid var(--line); border-radius: 16px;
  padding: 16px 20px; box-shadow: var(--shadow-md);
  display:flex; align-items:center; gap:14px;
}
.panel-float .num{ font-family:var(--font-display); font-size:26px; font-weight:600; color:var(--ink); }
.panel-float .lbl{ font-size:12px; color:var(--ink-faint); max-width:120px; line-height:1.4; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-deep);
}


/* ---------- ambient background blobs (moving elements) ---------- */
.blob-field{
  position:absolute; inset:0;
  overflow:hidden;
  pointer-events:none;
  z-index:0;
}
.blob{
  position:absolute;
  border-radius:50%;
  filter: blur(70px);
  opacity:.5;
  background: radial-gradient(circle at 30% 30%, var(--green-bright), var(--green) 60%, transparent 75%);
  animation: drift 22s ease-in-out infinite;
}
.blob.b2{
  background: radial-gradient(circle at 40% 40%, #eaffb0, var(--green-mid) 65%, transparent 78%);
  animation-duration: 28s;
  animation-delay: -6s;
  opacity:.35;
}
.blob.b3{
  background: radial-gradient(circle at 50% 50%, var(--green-pale), var(--green-bright) 70%, transparent 80%);
  animation-duration: 34s;
  animation-delay: -14s;
  opacity:.4;
}
@keyframes drift{
  0%,100%{ transform: translate(0,0) scale(1); }
  33%{ transform: translate(4%, 6%) scale(1.08); }
  66%{ transform: translate(-3%, -4%) scale(0.95); }
}

/* =================== NAV =================== */
.site-nav{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-nav.is-scrolled{
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(20,20,18,.02);
}
.nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 82px;
  transition: height .3s ease;
}
.site-nav.is-scrolled .nav-row{ height: 68px; }
.nav-logo svg{ height: 26px; width:auto; }
.nav-logo .logo-mark, .footer-brand .logo-mark{ filter: drop-shadow(0 0 1px rgba(0,0,0,.22)); }

.nav-links{
  display:flex;
  align-items:center;
  gap: 4px;
}
.nav-links > li{}
.nav-links a.nav-link, .nav-links button.nav-link{
  display:flex; align-items:center; gap:6px;
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  border:none;
  background:none;
  cursor:pointer;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav-links a.nav-link:hover, .nav-links button.nav-link:hover,
.nav-links li.is-open button.nav-link{
  color: var(--ink);
  background: var(--bg-soft);
}
.caret{ transition: transform .25s ease; }
.nav-links li.is-open .caret{ transform: rotate(180deg); }

.nav-cta{
  display:flex; align-items:center; gap:10px;
}

.megamenu{
  position:absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: min(900px, calc(100vw - 48px));
  background: #fff;
  border:1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  opacity:0;
  visibility:hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.nav-links li.is-open .megamenu{
  opacity:1; visibility:visible; transform: translateX(-50%) translateY(0);
}
.megamenu a{
  display:flex; gap:12px; align-items:flex-start;
  padding: 12px;
  border-radius: 12px;
  transition: background .18s ease;
}
.megamenu a:hover{ background: var(--bg-soft); }
.megamenu .mm-ic{
  flex:none;
  width: 34px; height:34px;
  border-radius: 9px;
  background: var(--green-pale);
  display:flex; align-items:center; justify-content:center;
  color: var(--green-deep);
}
.megamenu .mm-ic svg{ width:17px; height:17px; }
.mm-col{ display:flex; flex-direction:column; gap:2px; }
.mm-col-title{ font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--ink-faint); padding:10px 12px 6px; }
.megamenu strong{ display:block; font-size:14px; font-weight:600; color:var(--ink); margin-bottom:2px; }
.megamenu span{ font-size:12.5px; color: var(--ink-faint); line-height:1.4; }
.megamenu-foot{
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between;
  padding-left:12px; padding-right:12px;
}
.megamenu-foot a{ font-size: 13px; font-weight:600; color: var(--green-deep); display:flex; align-items:center; gap:6px; }

.nav-burger{
  display:none;
  width: 40px; height:40px;
  border-radius: 10px;
  border:1px solid var(--line);
  background:#fff;
  align-items:center; justify-content:center;
  cursor:pointer;
}
.nav-burger span, .nav-burger span::before, .nav-burger span::after{
  content:""; display:block; width:16px; height:1.6px; background: var(--ink); position:relative; transition: all .2s ease;
}
.nav-burger span::before{ position:absolute; top:-5px; }
.nav-burger span::after{ position:absolute; top:5px; }

/* =================== BUTTONS =================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  cursor:pointer;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--ink);
  color:#fff;
}
.btn-primary:hover{ background:#000; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-green{
  background: var(--green-bright);
  color:#0a0a0a;
}
.btn-green:hover{ transform: translateY(-1px); background: var(--green-mid); box-shadow: 0 14px 26px -10px rgba(163,230,53,.55); }
.btn-outline{
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn-outline:hover{ border-color: var(--ink); background: var(--bg-soft); }
.btn-sm{ padding: 10px 18px; font-size: 13.5px; }
.btn svg{ width:15px; height:15px; }

/* =================== HERO =================== */
.hero{
  position:relative;
  padding: 108px 0 84px;
  overflow:hidden;
}
.hero-inner{ position:relative; z-index:1; max-width: 780px; }
.hero h1{
  font-size: clamp(40px, 6vw, 68px);
  margin-top: 20px;
}
.hero h1 em{
  font-style: normal;
  background: linear-gradient(100deg, var(--green-deep), var(--green-mid) 60%, var(--green-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead{
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 620px;
}
.hero-ctas{
  display:flex; align-items:center; gap:14px; margin-top: 34px; flex-wrap: wrap;
}
.hero-note{
  margin-top:18px;
  font-size: 13px;
  color: var(--ink-faint);
}

/* skill marquee ticker */
.marquee{
  margin-top: 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  overflow:hidden;
  position:relative;
}
.marquee::before, .marquee::after{
  content:""; position:absolute; top:0; bottom:0; width: 90px; z-index:2;
}
.marquee::before{ left:0; background: linear-gradient(90deg, #fff, transparent); }
.marquee::after{ right:0; background: linear-gradient(270deg, #fff, transparent); }
.marquee-track{
  display:flex;
  width: max-content;
  gap: 0;
  animation: marquee 34s linear infinite;
}
.marquee-track span{
  padding: 0 28px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-faint);
  white-space: nowrap;
  display:flex; align-items:center; gap:10px;
}
.marquee-track span::after{ content:"•"; color: var(--green-bright); margin-left: 28px; }
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* =================== SECTIONS / GENERIC =================== */
section{ position:relative; }
.section{ padding: 96px 0; }
.section-tight{ padding: 64px 0; }
.section-head{ max-width: 620px; margin-bottom: 56px; }
.section-head h2{ font-size: clamp(28px, 3.6vw, 42px); margin-top:14px; }
.section-head p{ margin-top:16px; font-size:16.5px; color: var(--ink-soft); line-height:1.65; }

.bg-soft{ background: var(--bg-soft); }
.bg-ink{ background: var(--ink); color:#fff; }
.bg-ink .ink-faint{ color: #a6a39a; }

/* reveal on scroll */
.reveal{ opacity:0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform: translateY(0); }
.reveal-stagger > *{ transition-delay: calc(var(--i, 0) * 90ms); }

/* pillars / feature cards */
.grid-3{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
.grid-2{ display:grid; grid-template-columns: repeat(2,1fr); gap:22px; }
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card .card-ic{
  width:44px; height:44px; border-radius:12px;
  background: var(--green-pale);
  color: var(--green-deep);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.card .card-ic svg{ width:21px; height:21px; }
.card h3{ font-size:18px; margin-bottom:10px; }
.card p{ font-size:14.5px; color: var(--ink-soft); line-height:1.6; }
.card a.card-link{
  display:inline-flex; align-items:center; gap:6px;
  margin-top:16px; font-size:13.5px; font-weight:700; color: var(--green-deep);
}



/* standards / checklist */
.check-list{ display:grid; grid-template-columns: repeat(2,1fr); gap: 18px 32px; }
.check-item{ display:flex; gap:14px; align-items:flex-start; }
.check-item .dot{
  flex:none; width:26px; height:26px; border-radius:50%;
  background: var(--green-pale); color: var(--green-deep);
  display:flex; align-items:center; justify-content:center; margin-top:1px;
}
.check-item .dot svg{ width:13px; height:13px; }
.check-item strong{ display:block; font-size:15px; margin-bottom:3px; }
.check-item span{ font-size:13.5px; color: var(--ink-soft); line-height:1.55; }

/* split cta cards */
.split{ display:grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.split-card{
  border-radius: var(--radius-lg);
  padding: 44px;
  position:relative;
  overflow:hidden;
  min-height: 280px;
  display:flex; flex-direction:column; justify-content:flex-end;
}
.split-card.dark{ background: var(--ink); color:#fff; }
.split-card.light{ background: var(--bg-soft); border:1px solid var(--line); }
.split-card .split-eyebrow{ font-size:12px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color: var(--green-bright); margin-bottom:12px; }
.split-card.light .split-eyebrow{ color: var(--green-deep); }
.split-card h3{ font-size:26px; margin-bottom:12px; }
.split-card p{ font-size:14.5px; line-height:1.6; margin-bottom:22px; max-width:380px; }
.split-card.dark p{ color:#c9c6bd; }
.split-card.light p{ color: var(--ink-soft); }
.split-glow{
  position:absolute; width:260px; height:260px; border-radius:50%;
  filter: blur(60px); opacity:.5; top:-60px; right:-60px;
  background: radial-gradient(circle, var(--green-bright), transparent 70%);
}

/* stat strip */
.stat-strip{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; }
.stat{ text-align:left; }
.stat .num{ font-family: var(--font-display); font-size: clamp(19px, 2.3vw, 28px); font-weight:600; color: var(--ink); white-space: nowrap; }
.stat .num span{ color: var(--green-deep); }
.stat .lbl{ font-size:13px; color: var(--ink-faint); margin-top:6px; }

/* quote */
.quote-block{
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height:1.5;
  max-width: 760px;
}
.quote-block cite{ display:block; font-family: var(--font-body); font-style:normal; font-size:13.5px; color: var(--ink-faint); margin-top:16px; }

/* =================== PAGE HERO (subpages) =================== */
.page-hero{ padding: 62px 0 60px; border-bottom: 1px solid var(--line); }
.breadcrumb{ display:flex; align-items:center; gap:8px; font-size:13px; color: var(--ink-faint); margin-bottom: 22px; }
.breadcrumb a:hover{ color: var(--ink); }
.page-hero h1{ font-size: clamp(32px,4.6vw,52px); max-width: 760px; }
.page-hero p.lead{ margin-top:18px; font-size:16.5px; color: var(--ink-soft); max-width:640px; line-height:1.65; }

.page-hero-grid{ display:grid; grid-template-columns: 1.2fr 1fr; gap:48px; align-items:center; }
.page-hero-media{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/4; }
.page-hero-media img{ width:100%; height:100%; object-fit:cover; display:block; }
@media (max-width: 860px){
  .page-hero-grid{ grid-template-columns: 1fr; }
  .page-hero-media{ order:-1; }
}

/* role tags */
.tag-row{ display:flex; flex-wrap:wrap; gap:10px; }
.tag{
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight:500;
  color: var(--ink-soft);
}

/* two col with side list */
.side-list{ display:flex; flex-direction:column; gap:0; }
.side-list li{ padding: 18px 0; border-bottom:1px solid var(--line); display:flex; gap:14px; align-items:flex-start; }
.side-list li:first-child{ padding-top:0; }
.side-list .num{ font-family: var(--font-display); font-weight:600; color: var(--green-deep); font-size:14px; padding-top:2px; }
.side-list strong{ display:block; font-size:15px; margin-bottom:4px; }
.side-list span{ font-size:13.5px; color:var(--ink-soft); line-height:1.55; }

/* =================== FOOTER =================== */
.site-footer{ background: var(--ink); color:#fff; padding: 72px 0 30px; border-top: 1px solid #2a2a27; }
.footer-top{ display:grid; grid-template-columns: 1.3fr 0.8fr 0.8fr 0.9fr 0.9fr; gap: 32px; padding-bottom: 52px; border-bottom: 1px solid #2a2a27; }
.footer-brand svg{ height:24px; margin-bottom:18px; }
.footer-tagline{ font-size:14.5px; font-weight:600; color: var(--green-bright); margin-bottom:10px; line-height:1.4; }
.footer-brand p{ font-size:13.5px; color:#a6a39a; line-height:1.6; max-width:280px; }
.footer-col h4{ font-size:12.5px; text-transform:uppercase; letter-spacing:.1em; color:#77746c; margin-bottom:16px; font-weight:600; }
.footer-col li{ margin-bottom:11px; }
.footer-col a{ font-size:14px; color:#d8d5cc; transition: color .18s ease; }
.footer-col a:hover{ color: var(--green-bright); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top: 26px; font-size:12.5px; color:#77746c; flex-wrap:wrap; gap:12px; }
.footer-bottom a{ color:#a6a39a; }
.footer-bottom a:hover{ color:#fff; }
.footer-meta{ display:flex; align-items:center; gap:18px; }
.social-icons{ display:flex; align-items:center; gap:12px; }
.social-icons a{
  display:flex; align-items:center; justify-content:center;
  width:32px; height:32px; border-radius:50%;
  border:1px solid #2a2a24; color:#a6a39a;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}
.social-icons a:hover{ color:#0a0a0a; background: var(--green-bright); border-color: var(--green-bright); }
.social-icons svg{ width:15px; height:15px; }

/* =================== CONTACT / FORM (Hire & Get hired) =================== */
.form-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; margin-bottom:16px; }
.form-field{ display:flex; flex-direction:column; gap:8px; }
.form-field.full{ grid-column: 1/-1; }
.form-field label{ font-size:13px; font-weight:600; color: var(--ink-soft); }
.form-field input, .form-field select, .form-field textarea{
  border:1px solid var(--line-strong); border-radius:10px; padding:12px 14px;
  font-family: inherit; font-size:14.5px; color: var(--ink); background:#fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline:none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-pale);
}
.form-field textarea{ resize: vertical; min-height:110px; }
.form-note{ font-size:12.5px; color: var(--ink-faint); margin-top:16px; line-height:1.6; }

/* =================== HERO w/ IMAGE (Deel/Attio style) =================== */
.hero-grid{
  position:relative; z-index:1;
  display:grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items:center;
}
.hero-media{ position:relative; }
.hero-media .media-frame{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  aspect-ratio: 4/4.6;
  box-shadow: var(--shadow-lg);
  background: var(--bg-soft);
}
.hero-media .media-frame img{
  width:100%; height:100%; object-fit:cover;
  display:block;
}
.hero-media .media-glow{
  position:absolute; width:340px; height:340px; border-radius:50%;
  background: radial-gradient(circle, var(--green-bright), transparent 70%);
  filter: blur(50px); opacity:.55; z-index:-1;
  top:-60px; right:-60px;
}
.float-card{
  position:absolute;
  background:#fff;
  border:1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 14px 16px;
  display:flex; align-items:center; gap:12px;
  animation: floaty 5s ease-in-out infinite;
}
.float-card .fc-ic{
  flex:none; width:34px;height:34px;border-radius:9px;
  background: var(--green-pale); color: var(--green-deep);
  display:flex; align-items:center; justify-content:center;
}
.float-card .fc-ic svg{ width:17px;height:17px; }
.float-card strong{ display:block; font-size:13.5px; font-weight:700; color:var(--ink); }
.float-card span{ font-size:11.5px; color: var(--ink-faint); }
.float-card.fc-1{ top: 8%; left:-8%; animation-delay:0s; }
.float-card.fc-2{ top: 42%; right:-9%; animation-delay: 0.7s; }
.float-card.fc-3{ bottom: 10%; left:-6%; animation-delay: 1.4s; }
@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

/* =================== GLOBAL REACH (dark band) =================== */
.reach-band{
  position:relative;
  background: var(--ink);
  color:#fff;
  padding: 100px 0;
  overflow:hidden;
}
.reach-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:56px; align-items:center; }
.reach-band h2{ color:#fff; }
.reach-band p{ color:#a6a39a; }
.reach-map{ position:relative; height:340px; }
.reach-map svg{ width:100%; height:100%; }
.reach-dot{ animation: pulse-dot 2.6s ease-in-out infinite; transform-origin:center; }
.reach-dot.d2{ animation-delay:.6s; }
.reach-dot.d3{ animation-delay:1.2s; }
@keyframes pulse-dot{
  0%,100%{ opacity:1; }
  50%{ opacity:.35; }
}
.reach-legend{ display:flex; gap:28px; margin-top:28px; flex-wrap:wrap; }
.reach-legend div{ display:flex; align-items:center; gap:10px; font-size:13.5px; color:#d8d5cc; }
.reach-legend .rl-dot{ width:9px;height:9px;border-radius:50%;background: var(--green-bright); }

/* =================== PHOTO FEATURE BLOCK (HubSpot style) =================== */
.photo-feature{ display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center; }
.photo-feature.reverse .pf-media{ order:2; }
.photo-feature.reverse .pf-text{ order:1; }
.pf-media{ position:relative; }
.pf-media img{
  width:100%; aspect-ratio: 5/4; object-fit:cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.pf-text h2{ font-size: clamp(26px,3.2vw,36px); margin-top:14px; }
.pf-text p{ margin-top:16px; font-size:15.5px; color:var(--ink-soft); line-height:1.7; }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-media{ margin-top: 40px; order:2; display:flex; flex-direction:column; gap:14px; }
  .float-card{ position:static; width:100%; animation:none; }
  .reach-grid{ grid-template-columns: 1fr; }
  .photo-feature{ grid-template-columns: 1fr; }
  .photo-feature.reverse .pf-media, .photo-feature.reverse .pf-text{ order:unset; }
}

/* =================== PHOTO COLLAGE (About hero) =================== */
.collage{
  position:relative;
  display:grid;
  grid-template-columns: 1.3fr 1fr;
  gap:16px;
  margin-top:48px;
}
.collage img{
  width:100%; height:100%; object-fit:cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.collage .col-main{ height:420px; }
.collage .col-stack{ display:flex; flex-direction:column; gap:16px; height:420px; }
.collage .col-stack img{ flex:1; min-height:0; }
.collage-float{
  position:absolute; left:28px; bottom:-26px;
  background:#fff; border:1px solid var(--line); border-radius:16px;
  padding:16px 22px; box-shadow: var(--shadow-lg);
  display:flex; align-items:center; gap:14px;
}
.collage-float .num{ font-family:var(--font-display); font-size:28px; font-weight:700; color:var(--ink); }
.collage-float .lbl{ font-size:12.5px; color:var(--ink-faint); max-width:150px; line-height:1.4; }

/* =================== LOCATION MAP (About — where we're based) =================== */
.location-map{
  position:relative;
  background: var(--ink);
  border-radius: var(--radius-lg);
  aspect-ratio: 5/4;
  overflow:hidden;
  box-shadow: var(--shadow-md);
}
.location-map svg{ width:100%; height:100%; }
.location-map .lm-pin-label{
  position:absolute;
  background:#fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  display:flex; align-items:center; gap:8px;
}
.location-map .lm-pin-label .dot{
  width:8px; height:8px; border-radius:50%; background: var(--green-bright); flex:none;
}
.location-map .lm-main{ top: 42%; left: 54%; }
.location-map .lm-sub{ bottom: 14%; left: 10%; font-weight:500; color: var(--ink-soft); box-shadow: var(--shadow-sm); }

/* =================== STATEMENT BAND =================== */
.statement-band{ padding: 88px 0; text-align:center; }
.statement-band .statement-eyebrow{ display:flex; justify-content:center; margin-bottom: 18px; }
.statement-band h2{
  font-size: clamp(26px, 3.6vw, 40px);
  max-width: 780px;
  margin: 0 auto;
  line-height:1.25;
}
.statement-band p{
  margin: 20px auto 0;
  max-width: 560px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height:1.6;
}

/* =================== TALENT CAROUSEL =================== */
.talent-carousel{
  overflow:hidden;
  position:relative;
  padding: 8px 0 12px;
}
.talent-carousel::before, .talent-carousel::after{
  content:""; position:absolute; top:0; bottom:0; width:100px; z-index:2;
}
.talent-carousel::before{ left:0; background: linear-gradient(90deg, #fff, transparent); }
.talent-carousel::after{ right:0; background: linear-gradient(270deg, #fff, transparent); }
.talent-track{
  display:flex;
  gap: 20px;
  width: max-content;
  animation: talent-scroll 42s linear infinite;
}
.talent-carousel:hover .talent-track{ animation-play-state: paused; }
@keyframes talent-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.talent-card{
  flex: none;
  width: 260px;
  max-width: 260px;
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  box-sizing: border-box;
}
.talent-card .tc-top{ display:flex; align-items:center; gap:14px; }
.talent-card .tc-avatar-wrap{ position:relative; flex:none; width:50px; height:50px; }
.talent-card .tc-avatar{
  flex:none;
  width:50px; height:50px;
  max-width:50px; max-height:50px;
  aspect-ratio: 1 / 1;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display);
  font-weight:700;
  font-size:16px;
  color:#0a0a0a;
  overflow:hidden;
}
.talent-card .tc-badge{
  position:absolute; bottom:-3px; right:-3px;
  width:20px; height:20px; border-radius:50%;
  background:#fff; border:1.5px solid #fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-sm);
  color: var(--green-deep);
}
.talent-card .tc-badge svg{ width:11px; height:11px; }
.talent-card .tc-name{ font-size:15px; font-weight:700; color: var(--ink); }
.talent-card .tc-role{ font-size:13px; color: var(--ink-soft); margin-top:2px; }
.talent-card .tc-note{
  margin-top:14px;
  padding-top:14px;
  border-top: 1px solid var(--line);
  font-size:12.5px;
  color: var(--ink-faint);
  line-height:1.5;
}

/* =================== FAQ ACCORDION =================== */
.faq-list{ max-width:760px; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-item summary{
  list-style:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between;
  padding: 22px 0; font-size:16px; font-weight:600; color:var(--ink);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary .faq-plus{
  flex:none; width:28px;height:28px;border-radius:50%;
  border:1px solid var(--line-strong); display:flex;align-items:center;justify-content:center;
  transition: transform .25s ease, background .25s ease;
}
.faq-item[open] summary .faq-plus{ background: var(--green-bright); border-color:var(--green-bright); color:#0a0a0a; transform: rotate(135deg); }
.faq-item p{ padding: 0 0 22px; font-size:14.5px; color:var(--ink-soft); line-height:1.65; max-width:640px; }

@media (max-width: 760px){
  .panel-art{ flex-direction:column; padding:24px; min-height:auto; }
  .panel-float{ position:static; margin-top:16px; width:100%; }
  .collage{ grid-template-columns:1fr; }
  .collage .col-main, .collage .col-stack{ height:auto; }
  .collage .col-stack{ flex-direction:row; }
  .collage .col-stack img{ height:160px; }
  .collage-float{ position:static; margin-top:16px; }
}

@media (prefers-reduced-motion: reduce){
  .float-card{ animation:none; }
  .reach-dot{ animation:none; }
}




@media (max-width: 980px){
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .stat-strip{ grid-template-columns: repeat(2,1fr); row-gap:28px; }
  .check-list{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns: 1fr 1fr 1fr; row-gap: 32px; }
  .form-row{ grid-template-columns: 1fr; }
}
/* rotating word (hero motion) */
.rotate-word{ position:relative; display:inline-block; font-weight:700; color: var(--green-deep); }

/* mobile burger -> X */
.nav-burger.is-open span{ background:transparent; }
.nav-burger.is-open span::before{ top:0; transform: rotate(45deg); }
.nav-burger.is-open span::after{ top:0; transform: rotate(-45deg); }

@media (max-width: 760px){
  .container{ padding: 0 20px; }
  .nav-row{ justify-content: flex-start; }
  .nav-cta{ margin-left: auto; }
  .nav-links{
    position:fixed; inset: 68px 0 0 0; height:calc(100dvh - 68px);
    background:#fff; flex-direction:column; align-items:stretch; gap:0;
    padding: 10px 20px 30px; overflow:auto;
    transform: translateX(100%); transition: transform .3s ease;
  }
  .nav-links.is-open{ transform: translateX(0); }
  .nav-links a.nav-link, .nav-links button.nav-link{ width:100%; justify-content:space-between; padding:16px 6px; border-bottom:1px solid var(--line); border-radius:0; }
  .megamenu{ position:static; transform:none; width:auto; box-shadow:none; border:none; opacity:1; visibility:visible; display:none; grid-template-columns:1fr; padding: 6px 0 10px; }
  .nav-links li.is-open .megamenu{ display:grid; }
  .nav-burger{ display:flex; }
  .nav-cta .btn-outline{ display:none; }
  .hero{ padding: 60px 0 56px; }
  .hero-ctas{ flex-direction:column; align-items:stretch; }
  .hero-ctas .btn{ width:100%; }
  .marquee{ margin-top:48px; }
  .section{ padding:64px 0; }
  .footer-top{ grid-template-columns: 1fr; }
  .num-list a{ align-items:flex-start; gap:14px; padding:22px 0; }
  .num-list .nl-body{ flex-direction:column; align-items:flex-start; gap:6px; min-width:0; }
  .num-list h3{ min-width:0; font-size:17px; }
  .num-list p{ min-width:0; font-size:13.5px; }
  .num-list .nl-arrow{ width:32px; height:32px; }
  .num-list .nl-arrow svg{ width:13px; height:13px; }
  .split-card p[style*="white-space:nowrap"]{ white-space:normal; }
  .talent-head-grid{ grid-template-columns: 1fr !important; }
  .talent-card{ width: 220px; max-width: 220px; }
}
