:root {
  --navy: #061f41;
  --navy-deep: #04172f;
  --blue: #2c6db2;
  --slate: #586a82;
  --graphite: #1d2733;
  --mist: #f4f7fa;
  --ice: #e5ebf1;
  --white: #ffffff;
  --serif: "Manrope", "Aptos", Arial, sans-serif;
  --sans: "Inter", "Aptos", Arial, sans-serif;
  --container: 1200px;
  color: var(--graphite);
  background: var(--white);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--white); }
body, button, input { font-family: var(--sans); }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { max-width: 100%; }
.container { width: min(calc(100% - 64px), var(--container)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .75rem 1rem; background: var(--blue); color: var(--white); font-weight: 600; }
.skip-link:focus { top: 1rem; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(229,235,241,.9); backdrop-filter: blur(16px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 2rem; }
.brand-lockup { width: 190px; display: block; line-height: 0; }
.brand-lockup img { display: block; width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); color: var(--slate); font-size: .82rem; font-weight: 600; }
.site-nav a:not(.nav-cta) { transition: color .2s ease; }
.site-nav a:not(.nav-cta):hover, .site-nav a:not(.nav-cta):focus-visible { color: var(--navy); }
.nav-cta { display: inline-flex; align-items: center; gap: .65rem; padding: .78rem 1rem; background: var(--navy); color: var(--white); font-size: .78rem; letter-spacing: .02em; transition: background .2s ease, transform .2s ease; }
.nav-cta:hover, .nav-cta:focus-visible { background: var(--blue); transform: translateY(-1px); }
.menu-toggle { display: none; border: 0; background: transparent; padding: .5rem; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px; background: var(--navy); }
.section-dark { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }
.section-blue { position: relative; overflow: hidden; background: var(--blue); color: var(--white); }
.section-light { background: var(--white); }
.section-mist { background: var(--mist); }
.section-light, .section-mist, .section-dark, .section-blue { padding: clamp(5.5rem, 11vw, 9.5rem) 0; }
.eyebrow { display: flex; align-items: center; gap: .7rem; margin: 0 0 1.8rem; color: var(--slate); font-size: .71rem; font-weight: 700; letter-spacing: .13em; line-height: 1.2; text-transform: uppercase; }
.eyebrow-light { color: rgba(255,255,255,.68); }
.eyebrow-line { display: inline-block; width: 28px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); }
h1, h2 { letter-spacing: -.045em; }
h1 em, h2 em { color: var(--blue); font-style: normal; }
.section-dark h1 em, .section-dark h2 em, .section-blue h2 em { color: #8abbe9; }
h2 { max-width: 680px; margin-bottom: 1.5rem; font-size: clamp(2.65rem, 5vw, 5rem); font-weight: 700; line-height: 1.02; }
.intro-copy { max-width: 520px; margin: 0; color: var(--slate); font-size: 1rem; line-height: 1.7; }
.intro-copy-dark { color: rgba(255,255,255,.68); }
.section-intro { margin-bottom: clamp(3rem, 6vw, 5.4rem); }
.section-intro-wide { max-width: 700px; }
.split-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 420px); gap: clamp(2rem, 8vw, 10rem); align-items: end; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 1rem; min-height: 52px; padding: .95rem 1.35rem; border: 1px solid transparent; font-size: .78rem; font-weight: 700; letter-spacing: .015em; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: var(--white); }
.button-primary:hover, .button-primary:focus-visible { background: #3c82cb; }
.button-dark { width: 100%; background: var(--navy); color: var(--white); }
.button-dark:hover, .button-dark:focus-visible { background: var(--blue); }
.button-white { background: var(--white); color: var(--navy); }
.button-white:hover, .button-white:focus-visible { background: var(--mist); }
.text-link { display: inline-flex; align-items: center; gap: .7rem; color: var(--navy); font-size: .79rem; font-weight: 700; }
.text-link-light { color: var(--white); }
.text-link, .card-link { position: relative; }
.text-link::after, .card-link::after { content: ""; display: inline-block; width: 24px; height: 2px; margin-left: .8rem; background: currentColor; transition: width .2s ease; }
.text-link:hover::after, .text-link:focus-visible::after, .card-link:hover::after, .card-link:focus-visible::after { width: 36px; }

.hero { min-height: min(800px, calc(100vh - 82px)); display: flex; flex-direction: column; justify-content: center; padding: clamp(5.5rem, 9vw, 8rem) 0 2.5rem; }
.hero-grid, .method-grid { position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(90deg, transparent, black 25%, black 70%, transparent); }
.hero-grid::after, .method-grid::after { content: ""; position: absolute; inset: 0; background: linear-gradient(125deg, transparent 45%, rgba(44,109,178,.55) 45.1%, rgba(44,109,178,.55) 46%, transparent 46.1%); opacity: .5; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .84fr); gap: clamp(3rem, 7vw, 8rem); align-items: center; }
.hero h1 { max-width: 730px; margin-bottom: 1.8rem; font-size: clamp(3.55rem, 7vw, 7.4rem); line-height: .96; }
.hero-lede { max-width: 570px; margin-bottom: 2.3rem; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; margin-top: 4.5rem; color: rgba(255,255,255,.45); font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.hero-proof i { width: 3px; height: 3px; border-radius: 50%; background: var(--blue); }
.hero-visual { position: relative; min-height: 500px; }
.workflow-panel { position: absolute; display: flex; min-height: 146px; flex-direction: column; width: 244px; padding: 1.25rem 1.35rem; border: 1px solid rgba(255,255,255,.2); background: rgba(7,31,65,.76); box-shadow: 0 18px 35px rgba(0,0,0,.14); }
.workflow-panel::after { content: ""; position: absolute; right: 0; bottom: 0; width: 42px; height: 4px; background: var(--blue); }
.workflow-panel strong { margin-top: .6rem; font-family: var(--serif); font-size: 1.7rem; letter-spacing: -.04em; }
.workflow-panel small { max-width: 170px; margin-top: auto; color: rgba(255,255,255,.55); font-size: .68rem; line-height: 1.45; }
.signal-kicker { color: #8abbe9; font-size: .54rem; font-weight: 700; letter-spacing: .14em; }
.workflow-input { top: 8%; left: 4%; }
.workflow-intervention { top: 33%; right: 0; z-index: 2; min-height: 188px; background: var(--blue); }
.workflow-intervention::after { background: var(--white); }
.workflow-result { bottom: 8%; left: 17%; }
.granite-cut-detail { width: 62px; height: 20px; margin: 1.7rem 0 0; background: var(--white); clip-path: polygon(0 50%, 28% 0, 100% 0, 100% 100%, 28% 100%); }
.visual-caption { position: absolute; right: 0; bottom: 2%; color: rgba(255,255,255,.46); font-size: .67rem; line-height: 1.5; text-align: right; }
.hero-media { min-height: 0; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.18); background: var(--navy-deep); }
.hero-media img { display: block; width: 100%; height: 500px; object-fit: cover; object-position: center; filter: saturate(.82) contrast(1.04); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,31,65,.3), transparent 45%, rgba(6,31,65,.08)); pointer-events: none; }
.hero-media figcaption, .section-image figcaption, .method-image figcaption, .responsible-media figcaption { position: absolute; right: 1rem; bottom: 1rem; z-index: 1; color: rgba(255,255,255,.72); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero-bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; margin-top: 2.5rem; color: rgba(255,255,255,.48); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.hero-scroll { color: rgba(255,255,255,.68); }

.experience { padding-top: clamp(4.5rem, 8vw, 7rem); padding-bottom: clamp(4.5rem, 8vw, 7rem); }
.experience-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 420px); gap: clamp(2rem, 8vw, 10rem); align-items: end; margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.experience-intro h2 { margin-bottom: 0; }
.experience-logos { display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; border-top: 1px solid var(--ice); border-bottom: 1px solid var(--ice); }
.experience-logo { display: flex; min-height: 130px; align-items: center; justify-content: center; gap: .65rem; padding: 1.4rem; border-right: 1px solid var(--ice); color: var(--navy); }
.experience-logo:last-child { border-right: 0; }
.experience-logo img { display: block; width: auto; height: auto; max-width: 100%; max-height: 52px; }
.logo-google img { width: 132px; }
.logo-walmart img { width: 30px; max-height: 37px; }
.logo-walmart span { font-family: var(--sans); font-size: 1.08rem; font-weight: 700; letter-spacing: -.045em; }
.logo-lululemon img { width: 34px; max-height: 36px; }
.logo-lululemon span { font-size: .82rem; font-weight: 600; letter-spacing: -.035em; }
.logo-loblaw img { width: 135px; max-height: 62px; }
.logo-arcteryx img { width: 160px; max-height: 62px; }
.experience-note { margin: 1.2rem 0 0; color: var(--slate); font-size: .66rem; letter-spacing: .02em; text-align: right; }

.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ice); border-bottom: 1px solid var(--ice); }
.outcome-card { position: relative; min-height: 330px; padding: 2rem clamp(1.5rem, 3vw, 3rem) 2.5rem; border-right: 1px solid var(--ice); }
.outcome-card:first-child { padding-left: 0; }
.outcome-card:last-child { border-right: 0; }
.outcome-featured { background: var(--mist); }
.card-label { color: var(--blue); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.outcome-icon { position: relative; width: 54px; height: 54px; margin: 2.5rem 0 2rem; color: var(--blue); }
.outcome-visual { width: 92px; height: 92px; margin: 2.25rem 0 1.8rem; overflow: hidden; border: 1px solid var(--ice); background: var(--mist); }
.outcome-visual img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.86) contrast(1.03); }
.icon-cut::before { content: ""; position: absolute; top: 5px; left: 6px; width: 40px; height: 40px; border: 3px solid currentColor; border-radius: 50%; }
.icon-cut::after { content: ""; position: absolute; top: 29px; left: 25px; width: 33px; height: 13px; background: var(--white); transform: rotate(-42deg); }
.icon-stack { display: grid; align-content: end; gap: 5px; }
.icon-stack i { display: block; width: 42px; height: 10px; border: 2px solid currentColor; transform: skewX(-28deg); }
.icon-stack i:nth-child(2) { margin-left: 7px; }
.icon-stack i:nth-child(3) { margin-left: 14px; }
.icon-signal { display: flex; align-items: end; gap: 6px; border-bottom: 2px solid currentColor; }
.icon-signal i { display: block; width: 9px; background: currentColor; transform: skewX(-25deg); }
.icon-signal i:nth-child(1) { height: 20px; }.icon-signal i:nth-child(2) { height: 35px; }.icon-signal i:nth-child(3) { height: 49px; }
.outcome-card h3 { margin-bottom: .8rem; font-size: 1.65rem; }
.outcome-card p { max-width: 290px; margin-bottom: 2rem; color: var(--slate); font-size: .9rem; line-height: 1.65; }
.card-tag { color: var(--navy); font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.opportunity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--ice); border: 1px solid var(--ice); }
.opportunity-card { min-height: 270px; padding: 1.8rem 2rem; background: var(--white); transition: background .2s ease, transform .2s ease; }
.opportunity-card:hover { position: relative; z-index: 1; background: #fbfdff; box-shadow: 0 15px 35px rgba(6,31,65,.08); transform: translateY(-4px); }
.opportunity-card h3 { margin: 2.5rem 0 .8rem; color: var(--navy); font-size: 1.5rem; }
.opportunity-card p { min-height: 54px; margin-bottom: 1.7rem; color: var(--slate); font-size: .88rem; line-height: 1.65; }
.opportunity-card a { color: var(--blue); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.opportunity-card a span { display: inline-block; margin-left: .45rem; transition: transform .2s ease; }
.opportunity-card:hover a span { transform: translate(3px, -3px); }
.section-image, .method-image, .responsible-media { position: relative; margin: 0; overflow: hidden; }
.section-image-wide { margin: 0 0 clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--ice); border-bottom: 1px solid var(--ice); }
.section-image-wide img { display: block; width: 100%; height: clamp(240px, 30vw, 390px); object-fit: cover; object-position: center 48%; }
.section-image figcaption { color: rgba(255,255,255,.82); }
.services-image { width: min(100%, 1000px); margin: 0 0 clamp(3rem, 6vw, 5rem) auto; border: 1px solid var(--ice); }
.services-image img { display: block; width: 100%; height: clamp(220px, 26vw, 330px); object-fit: cover; object-position: center 42%; }
.services-intro { margin-bottom: 3rem; }
.services-list { border-top: 1px solid var(--ice); }
.service-row { display: grid; grid-template-columns: minmax(0, 1fr) 8px; align-items: center; gap: 1rem; padding: 1.9rem 0; border-bottom: 1px solid var(--ice); }
.service-row h3 { margin-bottom: .45rem; color: var(--navy); font-size: clamp(1.3rem, 2vw, 1.8rem); }
.service-row p { max-width: 620px; margin: 0; color: var(--slate); font-size: .9rem; line-height: 1.6; }
.service-mark { display: block; width: 6px; height: 48px; background: var(--ice); transition: background .2s ease, height .2s ease; }
.service-row:hover .service-mark { background: var(--blue); color: var(--white); }
.method { padding-bottom: 3.5rem; }
.method-heading { position: relative; z-index: 1; }
.method-image { position: relative; z-index: 1; margin-bottom: clamp(3rem, 6vw, 5rem); border: 1px solid rgba(255,255,255,.2); }
.method-image img { display: block; width: 100%; height: clamp(230px, 28vw, 350px); object-fit: cover; object-position: center 43%; filter: saturate(.85); }
.method-image figcaption { color: rgba(255,255,255,.76); }
.method-steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); }
.method-step { min-height: 260px; padding: 1.5rem 1.5rem 1.8rem 0; border-right: 1px solid rgba(255,255,255,.22); }
.method-step:not(:first-child) { padding-left: 1.5rem; }
.method-step:last-child { border-right: 0; }
.method-step h3 { margin: 1.5rem 0 .9rem; font-size: 1.55rem; }
.method-step p { margin: 0; color: rgba(255,255,255,.62); font-size: .84rem; line-height: 1.65; }
.method-footer { position: relative; z-index: 1; display: flex; justify-content: space-between; padding-top: 1.5rem; color: rgba(255,255,255,.46); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.engagement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.engagement-card { display: flex; min-height: 370px; flex-direction: column; padding: 2rem; background: var(--white); border: 1px solid var(--ice); }
.engagement-card-featured { color: var(--white); background: var(--navy); border-color: var(--navy); }
.engagement-type { color: var(--blue); font-size: .65rem; font-weight: 700; letter-spacing: .14em; }
.engagement-card h3 { margin: 3.5rem 0 .8rem; color: var(--navy); font-size: 1.5rem; }
.engagement-card-featured h3 { color: var(--white); }
.engagement-card p { max-width: 300px; min-height: 83px; margin-bottom: 2rem; color: var(--slate); font-size: .88rem; line-height: 1.65; }
.engagement-card-featured p { color: rgba(255,255,255,.66); }
.engagement-price { margin-top: auto; margin-bottom: 1.5rem; color: var(--navy); font-family: var(--serif); font-size: 1.7rem; font-weight: 700; letter-spacing: -.03em; }
.engagement-card-featured .engagement-price { color: #8abbe9; }
.card-link { display: flex; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--ice); color: var(--blue); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.engagement-card-featured .card-link { border-color: rgba(255,255,255,.22); }
.different-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ice); border-bottom: 1px solid var(--ice); }
.different-grid article { min-height: 250px; padding: 1.5rem 1.5rem 2rem 0; border-right: 1px solid var(--ice); }
.different-grid article:not(:first-child) { padding-left: 1.5rem; }
.different-grid article:last-child { border-right: 0; }
.different-mark { display: block; width: 34px; height: 8px; background: var(--blue); }
.different-grid h3 { margin: 2.5rem 0 .8rem; color: var(--navy); font-size: 1.2rem; }
.different-grid p { margin: 0; color: var(--slate); font-size: .86rem; line-height: 1.65; }
.diagnostic-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(380px, .65fr); gap: clamp(3rem, 10vw, 9rem); align-items: center; }
.diagnostic-note { display: flex; align-items: center; gap: .7rem; margin: 2rem 0 0; color: var(--slate); font-size: .72rem; font-weight: 600; }
.diagnostic-note span { display: grid; width: 20px; height: 20px; place-items: center; border: 1px solid var(--blue); color: var(--blue); font-size: .66rem; }
.diagnostic-card { padding: clamp(1.5rem, 3vw, 2.5rem); background: var(--white); border: 1px solid var(--ice); box-shadow: 0 24px 60px rgba(6,31,65,.08); }
.diagnostic-field { margin-bottom: 1.6rem; }
.diagnostic-field label { display: flex; justify-content: space-between; margin-bottom: .7rem; color: var(--navy); font-size: .75rem; font-weight: 600; }
.diagnostic-field output { color: var(--blue); font-weight: 700; }
input[type="range"] { width: 100%; height: 3px; appearance: none; background: var(--ice); accent-color: var(--blue); cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { width: 17px; height: 17px; appearance: none; border: 3px solid var(--white); border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px var(--blue); }
input[type="range"]::-moz-range-thumb { width: 12px; height: 12px; border: 3px solid var(--white); border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px var(--blue); }
.diagnostic-result { display: flex; flex-direction: column; margin: 2rem 0 1.5rem; padding-top: 1.3rem; border-top: 1px solid var(--ice); }
.diagnostic-result span { color: var(--slate); font-size: .7rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.diagnostic-result strong { margin: .4rem 0 .25rem; color: var(--navy); font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -.06em; line-height: 1; }
.diagnostic-result small { color: var(--slate); font-size: .66rem; }
.measurement { padding-bottom: 0; }
.measurement-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; }
.measurement-copy { max-width: 460px; padding-bottom: .6rem; }
.measurement-copy p { margin-bottom: 1.8rem; color: rgba(255,255,255,.68); font-size: 1.02rem; line-height: 1.7; }
.measurement-image { position: relative; margin-top: clamp(3rem, 6vw, 5rem); border: 1px solid rgba(255,255,255,.2); }
.measurement-image img { display: block; width: 100%; height: clamp(220px, 27vw, 330px); object-fit: cover; object-position: center 47%; filter: saturate(.84); }
.measurement-image span { position: absolute; right: 1rem; bottom: 1rem; color: rgba(255,255,255,.78); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(4rem, 8vw, 7rem); border-top: 1px solid rgba(255,255,255,.22); }
.metric-grid > div { min-height: 190px; padding: 1.6rem 1.4rem 1.5rem 0; border-right: 1px solid rgba(255,255,255,.22); }
.metric-grid > div:not(:first-child) { padding-left: 1.4rem; }
.metric-grid > div:last-child { border-right: 0; }
.metric-grid strong { display: block; margin-bottom: 1rem; color: #8abbe9; font-family: var(--serif); font-size: 1.55rem; }
.metric-grid span { display: block; max-width: 180px; color: rgba(255,255,255,.6); font-size: .76rem; line-height: 1.6; }
.industries-layout { display: grid; grid-template-columns: minmax(0, .75fr) minmax(320px, 1fr); gap: 6rem; align-items: start; }
.industry-list { display: flex; flex-wrap: wrap; gap: .65rem; padding-top: 2.2rem; }
.industry-list span { padding: .9rem 1rem; border: 1px solid var(--ice); color: var(--navy); font-size: .78rem; font-weight: 600; }
.industry-list span:nth-child(2n) { background: var(--mist); }
.responsible-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(3rem, 10vw, 9rem); align-items: center; }
.responsible-media { border: 1px solid var(--ice); }
.responsible-media img { display: block; width: 100%; height: clamp(250px, 29vw, 380px); object-fit: cover; object-position: center; filter: saturate(.82); }
.responsible-media figcaption { color: rgba(255,255,255,.82); }
.responsible-seal { position: relative; display: grid; width: min(25vw, 280px); height: min(25vw, 280px); min-width: 210px; min-height: 210px; place-items: center; border: 1px solid var(--ice); border-radius: 50%; color: var(--blue); }
.responsible-seal::before, .responsible-seal::after { content: ""; position: absolute; border: 1px solid var(--ice); border-radius: 50%; }
.responsible-seal::before { inset: 18px; }.responsible-seal::after { inset: 46px; border-color: var(--blue); }
.responsible-seal span { position: relative; z-index: 1; font-family: var(--serif); font-size: 4.4rem; font-weight: 800; }
.responsible-seal small { position: absolute; z-index: 1; right: 15%; bottom: 27%; color: var(--slate); font-size: .48rem; font-weight: 700; letter-spacing: .14em; line-height: 1.35; text-align: center; }
.responsible-layout .text-link { margin-top: 1.8rem; }
.visual-gallery { display: grid; gap: 1rem; margin-top: clamp(3rem, 6vw, 5rem); }
.visual-gallery-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.visual-gallery-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.visual-gallery figure { position: relative; min-width: 0; margin: 0; overflow: hidden; border: 1px solid var(--ice); background: var(--navy-deep); }
.visual-gallery img { display: block; width: 100%; height: clamp(220px, 25vw, 320px); object-fit: cover; filter: saturate(.86) contrast(1.02); transition: transform .35s ease; }
.visual-gallery figure:hover img { transform: scale(1.025); }
.visual-gallery figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 2.6rem 1rem .9rem; color: var(--white); background: linear-gradient(transparent, rgba(6,31,65,.82)); font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.method .visual-gallery figure { border-color: rgba(255,255,255,.2); }
.method .visual-gallery figcaption { background: linear-gradient(transparent, rgba(6,31,65,.9)); }
.faq-layout { display: grid; grid-template-columns: minmax(240px, .65fr) minmax(0, 1fr); gap: clamp(3rem, 10vw, 9rem); align-items: start; }
.faq-list { border-top: 1px solid var(--ice); }
details { border-bottom: 1px solid var(--ice); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.45rem 0; color: var(--navy); cursor: pointer; font-family: var(--serif); font-size: 1rem; font-weight: 700; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--blue); font-family: var(--sans); font-size: 1.4rem; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { max-width: 640px; margin: -.3rem 2rem 1.5rem 0; color: var(--slate); font-size: .87rem; line-height: 1.7; }
.final-cta { padding: clamp(6rem, 13vw, 11rem) 0; }
.cta-cut { position: absolute; top: -25%; right: -7%; width: 62vw; height: 170%; border: 1px solid rgba(255,255,255,.28); transform: rotate(-37deg); }
.cta-cut::before { content: ""; position: absolute; inset: 8%; border: 1px solid rgba(255,255,255,.16); }
.final-cta-inner { position: relative; z-index: 1; max-width: 840px; margin-left: max(32px, calc((100vw - var(--container)) / 2)); }
.final-cta h2 { max-width: 780px; font-size: clamp(3rem, 6vw, 6rem); }
.final-cta p:not(.eyebrow) { max-width: 590px; margin-bottom: 2rem; color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.7; }
.site-footer { padding: 4rem 0 1.5rem; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; align-items: end; padding-bottom: 5rem; }
.footer-brand { width: 190px; line-height: 0; }.footer-brand img { display: block; width: 100%; }
.footer-tagline { color: rgba(255,255,255,.58); font-size: .82rem; line-height: 1.7; }
.footer-contact { display: flex; flex-direction: column; gap: .45rem; justify-self: end; color: rgba(255,255,255,.58); font-size: .72rem; text-align: right; }.footer-contact a { color: #8abbe9; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.4); font-size: .63rem; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 900px) {
  .container { width: min(calc(100% - 40px), var(--container)); }.site-nav { gap: 1rem; }.hero-inner { grid-template-columns: 1fr; }.hero { min-height: auto; }.hero-visual { min-height: 420px; margin-top: -1rem; }.hero-proof { margin-top: 3rem; }.workflow-input { left: 2%; }.workflow-result { left: 12%; }
  .experience-intro, .split-intro, .diagnostic-layout, .measurement-layout, .industries-layout, .responsible-layout, .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .experience-logos { grid-template-columns: repeat(3, 1fr); }.experience-logo:nth-child(3) { border-right: 0; }.experience-logo:nth-child(n+4) { border-top: 1px solid var(--ice); }.experience-logo:nth-child(4) { border-right: 1px solid var(--ice); }
  .different-grid { grid-template-columns: repeat(2, 1fr); }.different-grid article:nth-child(2) { border-right: 0; }.different-grid article:nth-child(n+3) { border-top: 1px solid var(--ice); }.different-grid article:nth-child(3) { padding-left: 0; }.different-grid article:nth-child(4) { padding-left: 1.5rem; }
  .method-steps { grid-template-columns: repeat(3, 1fr); }.method-step:nth-child(3) { border-right: 0; }.method-step:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,.22); }.method-step:nth-child(4) { padding-left: 0; }.method-step:nth-child(5) { border-right: 0; }.industries-layout { gap: 1rem; }.industry-list { padding-top: 0; }.responsible-seal { width: 230px; height: 230px; }.final-cta-inner { margin-left: auto; margin-right: auto; }
}
@media (max-width: 680px) {
  .container { width: min(calc(100% - 32px), var(--container)); }.section-light, .section-mist, .section-dark, .section-blue { padding: 4.5rem 0; }.nav-wrap { min-height: 68px; }.brand-lockup { width: 155px; }.menu-toggle { display: block; }
  .site-nav { position: absolute; top: 100%; right: 16px; left: 16px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: .75rem; background: var(--white); border: 1px solid var(--ice); box-shadow: 0 20px 40px rgba(6,31,65,.1); }.site-nav.is-open { display: flex; }.site-nav a { padding: .85rem; }.nav-cta { justify-content: space-between; margin-top: .35rem; }
  .hero { padding-top: 4.7rem; }.hero h1 { font-size: clamp(3.05rem, 15vw, 5rem); }.hero-visual { min-height: 330px; margin-top: 1rem; transform: scale(.84); transform-origin: center top; }.hero-media { min-height: 0; margin-top: 1rem; transform: none; }.hero-media img { height: 330px; }.hero-bottom { flex-direction: column; gap: .8rem; margin-top: 0; }.hero-scroll { display: none; }
  .experience-intro { gap: 1.5rem; }.experience-logos { grid-template-columns: repeat(2, 1fr); }.experience-logo { min-height: 100px; padding: 1rem .6rem; }.experience-logo:nth-child(3) { border-right: 1px solid var(--ice); }.experience-logo:nth-child(2n) { border-right: 0; }.experience-logo:nth-child(n+3) { border-top: 1px solid var(--ice); }.experience-note { text-align: left; line-height: 1.5; }
  .logo-google img { width: 112px; }.logo-loblaw img { width: 118px; }.logo-arcteryx img { width: 130px; }.logo-walmart span { font-size: .96rem; }.logo-lululemon span { font-size: .72rem; }
  .outcome-grid, .opportunity-grid, .engagement-grid { grid-template-columns: 1fr; }.outcome-card, .outcome-card:first-child { min-height: auto; padding: 2rem 0; border-right: 0; border-bottom: 1px solid var(--ice); }.outcome-card:last-child { border-bottom: 0; }.outcome-featured { margin: 0; padding-right: 1rem !important; padding-left: 1rem !important; }.opportunity-card { min-height: auto; padding: 1.5rem; }.opportunity-card h3 { margin-top: 1.8rem; }.opportunity-card p { min-height: 0; }
  .service-row { grid-template-columns: minmax(0, 1fr) 6px; padding: 1.5rem 0; }.service-row h3 { font-size: 1.25rem; }.service-row p { font-size: .83rem; }
  .method-steps { grid-template-columns: 1fr 1fr; }.method-step, .method-step:not(:first-child) { min-height: 210px; padding: 1.2rem 1rem 1.5rem 0; }.method-step:nth-child(2n) { padding-left: 1rem; }.method-step:nth-child(3) { border-right: 1px solid rgba(255,255,255,.22); }.method-step:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.22); }.method-step:nth-child(4) { border-right: 0; }.method-step h3 { margin-top: 1.5rem; font-size: 1.25rem; }.method-footer { flex-direction: column; gap: .6rem; }
  .engagement-card { min-height: 320px; }.different-grid { grid-template-columns: 1fr; }.different-grid article, .different-grid article:not(:first-child), .different-grid article:nth-child(3), .different-grid article:nth-child(4) { min-height: auto; padding: 1.5rem 0; border-right: 0; border-top: 0; border-bottom: 1px solid var(--ice); }.different-grid article:last-child { border-bottom: 0; }.different-grid h3 { margin-top: 1.7rem; }.diagnostic-card { padding: 1.4rem; }
  .section-image-wide { margin-bottom: 3rem; }.section-image-wide img, .services-image img, .method-image img, .measurement-image img, .responsible-media img { height: 220px; }.section-image figcaption, .method-image figcaption, .responsible-media figcaption, .measurement-image span { right: .7rem; bottom: .7rem; font-size: .52rem; }.metric-grid { grid-template-columns: 1fr 1fr; }.metric-grid > div:nth-child(2) { border-right: 0; }.metric-grid > div:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.22); }.metric-grid > div:nth-child(3) { padding-left: 0; }.industry-list span { width: 100%; }.responsible-seal { margin: 0 auto; }.faq-layout { gap: 1.5rem; }summary { font-size: .9rem; }.final-cta h2 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .visual-gallery-two, .visual-gallery-three { grid-template-columns: 1fr; }.visual-gallery { margin-top: 3rem; }.visual-gallery img { height: 220px; }.visual-gallery figcaption { padding: 2.2rem .7rem .7rem; font-size: .52rem; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 3rem; }.footer-contact { justify-self: start; text-align: left; }.footer-bottom { flex-direction: column; gap: .7rem; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; } }
