:root {
  --ink: #101411;
  --muted: #667068;
  --paper: #f4f1e9;
  --paper-deep: #e8e3d7;
  --night: #090c0b;
  --night-soft: #111613;
  --night-line: rgba(255, 255, 255, 0.11);
  --copper: #d9a15f;
  --copper-light: #f2ca91;
  --sage: #a8c4ae;
  --white: #fffef9;
  --radius: 18px;
  --shadow: 0 28px 80px rgba(17, 20, 16, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
.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: 16px; top: -80px; z-index: 100; background: var(--white);
  color: var(--night); padding: 12px 16px; border-radius: 8px;
}
.skip-link:focus { top: 16px; }
.section-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  height: 80px; padding: 0 max(24px, calc((100vw - 1180px) / 2)); display: grid;
  grid-template-columns: 1fr auto 1fr; align-items: center; position: fixed; top: 0;
  left: 0; right: 0; z-index: 30; color: var(--white); transition: .25s ease;
}
.site-header.scrolled {
  height: 68px; background: rgba(9, 12, 11, 0.9); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--night-line);
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; width: max-content; }
.brand-mark { flex: 0 0 42px; width: 42px; height: 42px; display: block; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-type { display: flex; flex-direction: column; line-height: 1; }
.brand-type strong { font: 800 15px/1 "Manrope", sans-serif; letter-spacing: .12em; }
.brand-type small { margin-top: 5px; font: 600 9px/1 "Manrope", sans-serif; letter-spacing: .34em; color: var(--copper-light); }
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav a { text-decoration: none; font-size: 13px; color: rgba(255,255,255,.74); transition: .2s; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--white); }
.header-cta { justify-self: end; }
.menu-button { display: none; }

.button {
  display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 13px;
  border: 1px solid var(--copper); border-radius: 4px; padding: 0 22px; background: var(--copper);
  color: #18110a; font-weight: 700; font-size: 14px; text-decoration: none; cursor: pointer;
  box-shadow: 0 8px 30px rgba(217,161,95,.16); transition: transform .2s, background .2s, border-color .2s;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); background: var(--copper-light); border-color: var(--copper-light); }
.button-small { min-height: 42px; padding: 0 17px; font-size: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; font-weight: 600; font-size: 14px; }
.text-link span { color: var(--copper-light); }

.hero {
  width: 100%; max-width: none; min-height: 760px; color: var(--white); background:
    radial-gradient(circle at 78% 38%, rgba(172,128,72,.15), transparent 28%),
    linear-gradient(115deg, #090c0b 0%, #0d1310 55%, #0a0d0c 100%);
  padding: 158px max(24px, calc((100vw - 1180px) / 2)) 92px;
  display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 64px; position: relative;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .22; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: linear-gradient(to right, transparent, #000 48%, #000);
}
.hero::after { content: ""; position: absolute; height: 1px; left: 0; right: 0; bottom: 0; background: linear-gradient(90deg, transparent, rgba(217,161,95,.55), transparent); }
.hero-copy { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 10px; color: #7b4b16; font: 700 11px/1.3 "Manrope", sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 22px; height: 1px; background: currentColor; }
.hero .eyebrow, .eyebrow.light { color: var(--copper-light); }
h1, h2, h3 { font-family: "Manrope", sans-serif; }
h1 { margin: 0; max-width: 670px; font-size: clamp(48px, 6vw, 78px); line-height: .99; letter-spacing: -.055em; font-weight: 600; }
h1 em { color: var(--copper-light); font-style: normal; }
.hero-lede { max-width: 640px; margin: 28px 0 0; color: rgba(255,255,255,.66); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 36px; }
.hero-note { margin: 38px 0 0; display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.48); font-size: 12px; }
.signal-dot { width: 7px; height: 7px; border-radius: 50%; background: #87c9a0; box-shadow: 0 0 0 5px rgba(135,201,160,.1); }

.ops-panel {
  position: relative; z-index: 1; min-height: 500px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  box-shadow: 0 44px 100px rgba(0,0,0,.32); backdrop-filter: blur(12px); overflow: hidden;
}
.ops-panel::after { content: ""; position: absolute; inset: auto -20% -50% 25%; height: 80%; background: radial-gradient(circle, rgba(217,161,95,.16), transparent 65%); pointer-events: none; }
.panel-head { padding: 24px 26px; display: flex; justify-content: space-between; align-items: start; border-bottom: 1px solid var(--night-line); }
.panel-head > div { display: grid; gap: 8px; }
.panel-head strong { font: 600 15px/1.2 "Manrope", sans-serif; }
.micro-label { color: rgba(255,255,255,.38); font: 600 9px/1 "Manrope", sans-serif; letter-spacing: .17em; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; border: 1px solid rgba(146,205,167,.25); border-radius: 999px; padding: 7px 9px; color: #a8d7b8; font-size: 9px; letter-spacing: .12em; }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: #91d4a9; box-shadow: 0 0 9px #91d4a9; }
.signal-map { min-height: 350px; position: relative; }
.signal-node { position: absolute; z-index: 2; min-width: 104px; display: flex; align-items: center; gap: 8px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; background: #121713; color: rgba(255,255,255,.72); font-size: 11px; box-shadow: 0 12px 30px rgba(0,0,0,.3); }
.signal-node span { color: var(--copper-light); font: 600 9px/1 "Manrope", sans-serif; }
.node-center { min-width: 0; width: 98px; height: 98px; padding: 0; border-radius: 50%; justify-content: center; left: 50%; top: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle at 35% 30%, #2c251a, #111611 65%); border-color: rgba(217,161,95,.38); box-shadow: 0 0 0 14px rgba(217,161,95,.035), 0 0 0 32px rgba(217,161,95,.025), 0 20px 45px rgba(0,0,0,.38); }
.hero-wolf-crop { position: relative; width: 98px; height: 98px; border-radius: 50%; overflow: hidden; display: block; }
.hero-wolf-crop img { width: 100%; height: 100%; object-fit: cover; display: block; }
.node-a { left: 8%; top: 20%; }
.node-b { right: 8%; top: 20%; }
.node-c { left: 8%; bottom: 16%; }
.node-d { right: 8%; bottom: 16%; }
.signal-line { position: absolute; height: 1px; width: 32%; background: linear-gradient(90deg, rgba(217,161,95,.05), rgba(217,161,95,.55)); transform-origin: right center; z-index: 1; }
.line-one { left: 22%; top: 34%; transform: rotate(20deg); }
.line-two { right: 22%; top: 34%; transform: rotate(-20deg) scaleX(-1); }
.line-three { left: 22%; bottom: 29%; transform: rotate(-18deg); }
.line-four { right: 22%; bottom: 29%; transform: rotate(18deg) scaleX(-1); }
.panel-footer { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); padding: 17px 24px; border-top: 1px solid var(--night-line); color: rgba(255,255,255,.48); font-size: 10px; }
.panel-footer span { display: flex; align-items: center; gap: 6px; }
.check { font-style: normal; color: #9ad2ad; }

.trust-strip { background: var(--white); border-bottom: 1px solid #ded9ce; }
.trust-inner { min-height: 96px; display: flex; align-items: center; gap: 42px; }
.trust-inner p { min-width: max-content; margin: 0; display: flex; align-items: baseline; gap: 10px; }
.trust-inner strong { font: 700 18px/1 "Manrope", sans-serif; }
.trust-inner p span { color: var(--muted); font-size: 12px; }
.trust-divider { width: 1px; height: 30px; background: #d8d2c6; }
.platforms { flex: 1; display: flex; justify-content: space-between; align-items: center; gap: 24px; color: #838981; }
.platforms > span { font: 700 12px/1 "Manrope", sans-serif; letter-spacing: -.02em; }
.platform-badge { display: inline-flex; align-items: center; gap: 7px; color: #59605a; }
.platform-badge span { font: inherit; }
.platform-logo { width: 18px; height: 18px; flex: 0 0 auto; fill: currentColor; }
.platform-badge.zendesk .platform-logo { color: #03363d; }
.platform-badge.jira .platform-logo { color: #1868db; }
.platform-badge.atlassian .platform-logo { color: #1868db; }
.platform-badge.api .platform-logo { color: #815420; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.platform-badge.aws .platform-logo { color: #252f3e; }
.platform-badge.azure .platform-logo { color: #0078d4; }

.capabilities { padding-block: 110px; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; margin-bottom: 50px; }
.section-heading h2, .approach h2, .assessment-intro h2 { margin: 0; font-size: clamp(38px, 5vw, 58px); line-height: 1.05; letter-spacing: -.045em; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #d6d0c4; border-left: 1px solid #d6d0c4; }
.capability-card { position: relative; min-height: 382px; padding: 32px; border-right: 1px solid #d6d0c4; border-bottom: 1px solid #d6d0c4; background: rgba(255,255,255,.24); overflow: hidden; transition: background .25s, transform .25s, box-shadow .25s; }
.capability-card:hover, .capability-card:focus-visible { z-index: 2; outline: 0; background: var(--white); transform: translateY(-4px); box-shadow: var(--shadow); }
.capability-card.featured { background: var(--white); }
.capability-card.ai-card::after { content: "AI"; position: absolute; right: 21px; top: 23px; border: 1px solid rgba(129,84,32,.2); border-radius: 999px; padding: 5px 8px; color: #815420; font: 700 9px/1 "Manrope", sans-serif; letter-spacing: .13em; }
.card-number { color: #8a8f87; font: 600 10px/1 "Manrope", sans-serif; letter-spacing: .16em; }
.card-icon { margin-top: 42px; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid #d1cabd; border-radius: 50%; color: #855923; font-size: 22px; }
.capability-card h3 { margin: 23px 0 11px; font-size: 20px; letter-spacing: -.025em; }
.capability-card > p { margin: 0; min-height: 70px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.capability-card ul { margin: 20px 0 0; padding: 18px 0 0; list-style: none; border-top: 1px solid #dfd9cf; display: grid; gap: 9px; }
.capability-card li { position: relative; padding-left: 15px; color: #444b45; font-size: 12px; }
.capability-card li::before { content: ""; position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--copper); left: 0; top: .48em; }

.approach { margin-top: 90px; border-radius: 22px; padding: 68px; background: var(--night); color: var(--white); display: grid; grid-template-columns: .9fr 1.1fr; gap: 82px; position: relative; overflow: hidden; }
.approach::before { content: ""; position: absolute; width: 440px; height: 440px; border: 1px solid rgba(217,161,95,.1); border-radius: 50%; left: -180px; bottom: -280px; box-shadow: 0 0 0 65px rgba(217,161,95,.025), 0 0 0 130px rgba(217,161,95,.018); }
.approach-copy { position: relative; }
.approach-copy > p:last-child { color: rgba(255,255,255,.58); line-height: 1.75; font-size: 15px; margin: 23px 0 0; }
.approach-steps { position: relative; display: grid; }
.approach-steps article { padding: 21px 0; display: grid; grid-template-columns: 48px 1fr; gap: 22px; border-bottom: 1px solid var(--night-line); }
.approach-steps article:first-child { padding-top: 0; }
.approach-steps article:last-child { border: 0; padding-bottom: 0; }
.approach-steps article > span { color: var(--copper-light); font: 600 10px/1.4 "Manrope", sans-serif; letter-spacing: .14em; }
.approach-steps h3 { margin: 0 0 7px; font-size: 18px; }
.approach-steps p { margin: 0; color: rgba(255,255,255,.52); font-size: 13px; line-height: 1.55; }

.assessment-section { padding: 112px 0; background: #111613; color: var(--white); position: relative; overflow: hidden; }
.assessment-section::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.07) .7px, transparent .7px); background-size: 17px 17px; opacity: .13; }
.assessment-shell { position: relative; display: grid; grid-template-columns: .75fr 1.25fr; gap: 88px; align-items: start; }
.assessment-intro { position: sticky; top: 110px; }
.assessment-intro > p:not(.eyebrow) { color: rgba(255,255,255,.58); font-size: 16px; line-height: 1.72; margin: 24px 0 0; }
.assessment-promise { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 13px 18px; color: rgba(255,255,255,.52); font-size: 11px; }
.assessment-promise span::first-letter { color: #96cba8; }
.assessment-card { min-height: 580px; padding: 34px; background: var(--paper); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; color: var(--ink); box-shadow: 0 42px 90px rgba(0,0,0,.28); }
.assessment-topbar { display: flex; align-items: center; justify-content: space-between; }
.assessment-topbar > div { display: grid; gap: 7px; }
.assessment-topbar span { color: #8b7560; font: 700 9px/1 "Manrope", sans-serif; letter-spacing: .15em; }
.assessment-topbar strong { font: 700 14px/1 "Manrope", sans-serif; }
.progress-count { color: #5b625c !important; }
.progress-track { height: 3px; margin: 20px 0 34px; background: #dcd6ca; overflow: hidden; }
.progress-track span { display: block; width: 25%; height: 100%; background: var(--copper); transition: width .35s ease; }
.assessment-step { display: none; margin: 0; padding: 0; border: 0; animation: step-in .3s ease both; }
.assessment-step.active { display: block; }
@keyframes step-in { from { opacity: 0; transform: translateY(7px); } }
.assessment-step legend { margin: 0; padding: 0; font: 700 clamp(24px, 3vw, 32px)/1.15 "Manrope", sans-serif; letter-spacing: -.035em; }
.assessment-step > p { color: var(--muted); font-size: 13px; margin: 10px 0 25px; }
.choice-grid { display: grid; gap: 10px; }
.team-grid { grid-template-columns: repeat(5, 1fr); }
.choice-grid label, .choice-list label { cursor: pointer; }
.choice-grid input, .choice-list input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid label > span { height: 106px; padding: 16px 10px; border: 1px solid #d8d1c5; border-radius: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; text-align: center; transition: .2s; }
.choice-grid b { font: 700 20px/1 "Manrope", sans-serif; }
.choice-grid small { color: var(--muted); font-size: 10px; line-height: 1.3; }
.choice-grid input:checked + span, .choice-list input:checked + span { border-color: #9b6729; background: #f6e9d8; box-shadow: inset 0 0 0 1px #9b6729; }
.choice-grid input:focus-visible + span, .choice-list input:focus-visible + span { outline: 3px solid rgba(155,103,41,.2); outline-offset: 2px; }
.choice-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.choice-list label > span { min-height: 76px; padding: 15px 16px; border: 1px solid #d8d1c5; border-radius: 10px; display: grid; grid-template-columns: 1fr; align-content: center; gap: 6px; transition: .2s; }
.choice-list b { font: 700 13px/1.2 "Manrope", sans-serif; }
.choice-list small { color: var(--muted); font-size: 10px; }
.channel-grid { grid-template-columns: repeat(3, 1fr); }
.channel-grid label > span { height: 112px; }
.channel-grid b { color: #8d5e28; }
.compact-list label > span { min-height: 69px; }
.choice-help { height: 16px; color: #96652f !important; margin: 10px 0 0 !important; }
.assessment-actions { margin-top: 34px; padding-top: 22px; border-top: 1px solid #dcd6ca; display: flex; align-items: center; justify-content: space-between; }
.assessment-actions .button { min-height: 46px; padding-inline: 20px; }
.button-back, .text-button { border: 0; background: none; padding: 10px 0; color: #5c645e; font-size: 12px; font-weight: 600; cursor: pointer; }
.button-back:disabled { opacity: 0; pointer-events: none; }
.button-back:hover, .text-button:hover { color: var(--ink); }
.outline-button { min-height: 44px; padding: 0 15px; border: 1px solid #bcb4a7; border-radius: 4px; background: transparent; color: #424942; font-size: 11px; font-weight: 700; cursor: pointer; transition: .2s; }
.outline-button:hover, .outline-button:focus-visible { border-color: #8c5e28; background: #f6e9d8; color: var(--ink); }
.form-message { min-height: 18px; margin: 12px 0 0; color: #a14934; font-size: 12px; text-align: right; }

.recommendation { animation: step-in .35s ease both; }
.recommendation[hidden] { display: none; }
.recommendation-kicker { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.recommendation-kicker span, .recommendation-kicker i { font: 700 9px/1 "Manrope", sans-serif; letter-spacing: .14em; }
.recommendation-kicker span { color: #87591f; }
.recommendation-kicker i { font-style: normal; color: #64806a; border: 1px solid #aabfaf; padding: 7px 9px; border-radius: 999px; }
.recommendation h3 { margin: 24px 0 10px; font-size: clamp(30px, 4vw, 44px); line-height: 1.05; letter-spacing: -.045em; }
.recommendation > p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.result-profile { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid #d8d1c5; border-radius: 10px; margin: 25px 0; }
.result-profile div { padding: 16px; border-right: 1px solid #d8d1c5; display: grid; gap: 8px; }
.result-profile div:last-child { border-right: 0; }
.result-profile span { color: #8a8f87; font: 700 8px/1 "Manrope", sans-serif; letter-spacing: .13em; }
.result-profile strong { font: 700 12px/1.25 "Manrope", sans-serif; }
.result-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.result-columns > div { padding: 19px; background: #ebe6dc; border-radius: 10px; }
.result-columns h4 { margin: 0 0 14px; font: 700 12px/1 "Manrope", sans-serif; }
.result-columns ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.result-columns li { position: relative; padding-left: 15px; color: #515852; font-size: 11px; line-height: 1.4; }
.result-columns li::before { content: "→"; position: absolute; left: 0; color: #9b6729; }
.recommendation-actions { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.recommendation-actions .text-button { margin-left: auto; }
.result-note { margin: 17px 0 0 !important; font-size: 10px !important; color: #858b85 !important; }

.contact-panel { grid-column: 1 / -1; margin-top: 16px; padding: 58px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025)); display: grid; grid-template-columns: .78fr 1.22fr; gap: 76px; box-shadow: 0 34px 80px rgba(0,0,0,.2); }
.contact-copy h2 { margin: 0; font: 600 clamp(34px, 4vw, 49px)/1.06 "Manrope", sans-serif; letter-spacing: -.045em; }
.contact-copy > p:not(.eyebrow) { margin: 22px 0 0; color: rgba(255,255,255,.56); font-size: 14px; line-height: 1.72; }
.contact-email { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; color: var(--copper-light); font-size: 12px; text-decoration: none; border-bottom: 1px solid rgba(242,202,145,.28); padding-bottom: 5px; }
.contact-form { display: grid; grid-template-columns: repeat(2,1fr); gap: 13px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span { color: rgba(255,255,255,.54); font-size: 10px; font-weight: 600; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; background: rgba(0,0,0,.2); color: var(--white); outline: none; transition: .2s; }
.contact-form input, .contact-form select { height: 50px; padding: 0 14px; }
.contact-form textarea { min-height: 146px; padding: 14px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.32); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--copper); background: rgba(0,0,0,.34); box-shadow: 0 0 0 3px rgba(217,161,95,.09); }
.contact-form select { appearance: auto; color-scheme: dark; }
.contact-form .full-field { grid-column: 1 / -1; }
.contact-form .form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.contact-actions { display: flex !important; grid-template-columns: auto 1fr; align-items: center; gap: 18px !important; }
.contact-actions .button { min-height: 48px; flex: 0 0 auto; }
.contact-actions .button:disabled { cursor: wait; opacity: .72; transform: none; }
.contact-actions p { margin: 0; color: rgba(255,255,255,.38); font-size: 10px; line-height: 1.45; }
.contact-actions p.success { color: #a8d7b8; }
.contact-actions p.error { color: #f0a897; }

footer { padding: 34px 0; background: #080b0a; color: var(--white); border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; }
.footer-inner > p { margin: 0; color: rgba(255,255,255,.46); font-size: 11px; line-height: 1.5; }
.legal { text-align: right; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .menu-button { display: grid; width: 42px; height: 42px; place-content: center; gap: 6px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: rgba(255,255,255,.04); }
  .menu-button span:not(.sr-only) { display: block; width: 17px; height: 1px; background: var(--white); transition: .2s; }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .primary-nav { position: fixed; top: 68px; left: 16px; right: 16px; padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: #111613; display: none; flex-direction: column; align-items: stretch; gap: 0; box-shadow: 0 20px 60px rgba(0,0,0,.45); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 14px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 140px; }
  .hero-copy { max-width: 740px; }
  .ops-panel { min-height: 470px; }
  .trust-inner { padding-block: 24px; flex-wrap: wrap; gap: 20px; }
  .trust-divider { display: none; }
  .platforms { flex-basis: 100%; flex-wrap: wrap; justify-content: flex-start; }
  .capability-grid { grid-template-columns: repeat(2,1fr); }
  .section-heading { grid-template-columns: 1fr; gap: 26px; }
  .section-heading > p { max-width: 620px; }
  .approach { grid-template-columns: 1fr; gap: 54px; padding: 54px; }
  .assessment-shell { grid-template-columns: 1fr; gap: 50px; }
  .assessment-intro { position: static; max-width: 680px; }
  .contact-panel { grid-template-columns: 1fr; gap: 46px; padding: 48px; }
}

@media (max-width: 640px) {
  .section-shell { width: min(100% - 32px, 1180px); }
  .site-header { height: 68px; padding-inline: 16px; }
  .brand-mark { flex-basis: 38px; width: 38px; height: 38px; }
  .hero { padding: 122px 16px 62px; gap: 46px; }
  h1 { font-size: clamp(45px, 13vw, 62px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .hero-actions .button { width: 100%; }
  .text-link { justify-content: center; }
  .hero-note { align-items: flex-start; line-height: 1.45; }
  .signal-dot { margin-top: 5px; flex: 0 0 auto; }
  .ops-panel { min-height: 410px; border-radius: 16px; }
  .panel-head { padding: 18px; }
  .signal-map { min-height: 287px; }
  .node-center { width: 80px; height: 80px; }
  .node-center svg { width: 42px; }
  .signal-node:not(.node-center) { min-width: 91px; padding: 9px; font-size: 9px; }
  .node-a, .node-c { left: 4%; }
  .node-b, .node-d { right: 4%; }
  .panel-footer { padding: 14px; gap: 5px; }
  .panel-footer span { justify-content: center; text-align: center; font-size: 8px; }
  .trust-inner p { display: grid; gap: 6px; }
  .platforms { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px 20px; }
  .capabilities { padding-block: 80px; }
  .section-heading { margin-bottom: 36px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: auto; padding: 27px; }
  .card-icon { margin-top: 28px; }
  .capability-card > p { min-height: 0; }
  .approach { margin-top: 58px; padding: 38px 26px; border-radius: 16px; }
  .assessment-section { padding: 78px 0; }
  .assessment-card { padding: 24px 18px; min-height: 610px; border-radius: 15px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid label:last-child { grid-column: span 2; }
  .choice-list { grid-template-columns: 1fr; }
  .channel-grid { grid-template-columns: repeat(2,1fr); }
  .choice-grid label > span { height: 90px; }
  .channel-grid label > span { height: 96px; }
  .assessment-actions { margin-top: 26px; }
  .result-profile { grid-template-columns: 1fr; }
  .result-profile div { border-right: 0; border-bottom: 1px solid #d8d1c5; }
  .result-profile div:last-child { border-bottom: 0; }
  .result-columns { grid-template-columns: 1fr; gap: 10px; }
  .recommendation-actions { align-items: stretch; flex-direction: column; }
  .recommendation-actions .button, .recommendation-actions .outline-button { width: 100%; }
  .recommendation-actions .text-button { margin-left: 0; }
  .contact-panel { padding: 34px 20px; border-radius: 15px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full-field { grid-column: auto; }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .contact-actions .button { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .legal { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
