:root {
  color-scheme: light;
  --bg: #f8f6ef;
  --bg-deep: #eef3ed;
  --panel: #fbfcf8;
  --panel-2: #f2f7f2;
  --panel-raised: #ffffff;
  --text: #20332c;
  --muted: #586b63;
  --muted-2: #6b7b74;
  --line: rgba(34, 76, 59, .15);
  --line-strong: rgba(34, 76, 59, .28);
  --control-border: #7b837f;
  --mint: #147454;
  --mint-bright: #a8ebd0;
  --mint-deep: #45c995;
  --violet: #7663c7;
  --amber: #b97428;
  --shadow-dark: rgba(50, 82, 69, .14);
  --shadow-light: rgba(255, 255, 255, .92);
  --soft-shadow: 18px 18px 44px var(--shadow-dark), -10px -10px 30px var(--shadow-light);
  --inset-shadow: inset 4px 4px 10px rgba(50, 82, 69, .1), inset -4px -4px 10px rgba(255, 255, 255, .86);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --shell: 1200px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sketch: "Segoe Print", "Bradley Hand", "Comic Sans MS", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 207, 159, .28), transparent 28rem),
    radial-gradient(circle at 85% 0%, rgba(86, 207, 159, .2), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

::selection { color: var(--bg-deep); background: var(--mint); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }
p, h1, h2, h3 { margin-top: 0; }

.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;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: .75rem 1rem;
  border-radius: 10px;
  color: #07100d;
  background: var(--mint);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section { position: relative; padding-block: 132px; }
.neumorph {
  border: 1px solid rgba(34, 76, 59, .11);
  background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(238, 244, 239, .98));
  box-shadow: var(--soft-shadow);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--mint);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow > span { width: 26px; height: 1px; background: currentColor; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(8, 12, 10, .82);
  backdrop-filter: blur(16px);
}
.header-inner { display: flex; min-height: 82px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 1.22rem; font-weight: 750; letter-spacing: -.045em; }
.brand > span > span { color: var(--mint); }
.brand-mark { width: 38px; height: 38px; overflow: visible; }
.brand-sync, .brand-sync-core { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.brand-sync-a { stroke: var(--mint); stroke-width: 2.35; }
.brand-sync-b { stroke: #87583c; stroke-width: 2.15; }
.brand-sync-core { stroke: #36584a; stroke-width: 1.65; }
.mobile-contact-cta { display: none; }
.primary-nav { display: flex; align-items: center; gap: 34px; }
.primary-nav > a:not(.button) { position: relative; color: #b8c3be; font-size: .84rem; font-weight: 600; }
.primary-nav > a:not(.button)::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--mint); content: ""; transform: scaleX(0); transition: transform .22s ease; }
.primary-nav > a:not(.button):hover { color: var(--text); }
.primary-nav > a:not(.button):hover::after { transform: scaleX(1); }
.nav-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 750;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #07110d;
  background: linear-gradient(135deg, var(--mint-bright), var(--mint-deep));
  box-shadow: 0 9px 24px rgba(62, 207, 145, .18), inset 0 1px 0 rgba(255, 255, 255, .65);
}
.button-primary:hover { box-shadow: 0 12px 30px rgba(62, 207, 145, .28), inset 0 1px 0 rgba(255, 255, 255, .72); }
.button-primary span { font-size: 1.05rem; }
.button-small { min-height: 42px; padding-inline: 17px; font-size: .78rem; border-radius: 12px; }
.button-quiet { border-color: var(--line); color: var(--text); background: rgba(255, 255, 255, .015); box-shadow: 7px 7px 16px rgba(0, 0, 0, .25), -4px -4px 12px rgba(56, 76, 67, .11); }
.button-quiet:hover { border-color: var(--line-strong); background: rgba(255, 255, 255, .03); }

.hero { min-height: 860px; overflow: clip; padding-top: 180px; padding-bottom: 110px; isolation: isolate; }
.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgba(185, 221, 204, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(185, 221, 204, .025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  content: "";
}
.hero-halo { position: absolute; z-index: -1; top: 0; left: 44%; width: 820px; height: 820px; border-radius: 50%; background: radial-gradient(circle, rgba(71, 216, 154, .13) 0, rgba(71, 216, 154, .065) 38%, transparent 71%); transform: translateX(-20%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: center; gap: 60px; }
.hero-copy { min-width: 0; padding-bottom: 24px; }
h1, h2 { max-width: 18ch; font-weight: 610; letter-spacing: -.055em; line-height: 1.02; }
h1 { margin-bottom: 30px; font-size: clamp(3.65rem, 5.5vw, 5.8rem); }
h1 em, h2 em { position: relative; color: var(--mint); font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.045em; }
h1 em { display: inline-block; max-width: 100%; }
.mobile-break { display: none; }
h1 em::after {
  position: absolute;
  right: -3px;
  bottom: -8px;
  left: 2px;
  height: 13px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 15'%3E%3Cpath d='M2 7C69 2 144 11 298 4' fill='none' stroke='%2385f4c5' stroke-width='2' stroke-linecap='round' opacity='.78'/%3E%3Cpath d='M9 12C92 8 176 14 285 8' fill='none' stroke='%2385f4c5' stroke-width='1.1' stroke-linecap='round' opacity='.42'/%3E%3C/svg%3E") center/100% 100% no-repeat;
  content: "";
}
.hero-lede { max-width: 600px; margin-bottom: 34px; color: #aebbb5; font-size: 1.08rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.pen-note {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #87583c;
  font-family: var(--sketch);
  font-size: .82rem;
  line-height: 1.3;
  pointer-events: none;
}
.pen-note svg { flex: 0 0 auto; width: 48px; height: 28px; overflow: visible; }
.pen-note path { fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.hero-cta-note { margin: 9px 0 0 46px; transform: rotate(-2deg); }
.hero-workflow { position: relative; min-width: 0; padding-top: 12px; }
.workflow-window { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.workflow-panel { scroll-margin-top: 92px; }
.window-label { color: #64726b; }

.workflow-tabs { display: flex; gap: 4px; padding: 14px 14px 0; }
.workflow-tabs button { flex: 1; min-height: 39px; border: 0; border-radius: 11px; color: var(--muted); background: transparent; cursor: pointer; font-size: .64rem; font-weight: 720; white-space: nowrap; }
.workflow-tabs button[aria-selected="true"] { color: var(--text); background: #0c1210; box-shadow: var(--inset-shadow); }
.canvas-wrap { margin: 13px 14px 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, .055); border-radius: 22px; background: #0b100e; box-shadow: inset 8px 8px 22px rgba(0, 0, 0, .42), inset -5px -5px 16px rgba(55, 78, 67, .06); }
.flow-canvas { width: 100%; height: auto; overflow: visible; }
.flow-canvas-mobile { display: none; }
.grid-lines path { fill: none; stroke: rgba(205, 236, 221, .04); stroke-width: 1; }
.flow-wire { fill: none; stroke: url(#wireGradient); stroke-width: 2; stroke-dasharray: 9 8; stroke-linecap: round; animation: wireMove 1.3s linear infinite; }
.flow-wire-mobile { fill: none; stroke: url(#mobileWireGradient); stroke-width: 2; stroke-dasharray: 8 7; stroke-linecap: round; animation: wireMove 1.3s linear infinite; }
.signal { fill: var(--mint-bright); stroke: rgba(20, 116, 84, .38); stroke-width: 3; }
.flow-node > rect { fill: #131b18; stroke: rgba(229, 255, 241, .1); stroke-width: 1; }
.flow-node.node-active > rect { stroke: rgba(133, 244, 197, .48); }
.flow-node.node-highlight > rect { stroke: rgba(133, 244, 197, .48); }
.flow-node.node-active { animation: nodeFloat 4s ease-in-out infinite; }
.node-icon circle { fill: rgba(133, 244, 197, .12); stroke: rgba(133, 244, 197, .32); }
.node-icon path { fill: none; stroke: var(--mint); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.node-icon.violet circle { fill: rgba(182, 162, 255, .13); stroke: rgba(182, 162, 255, .35); }
.node-icon.violet path { stroke: var(--violet); }
.node-kicker { fill: #6d7d75; font-size: 7px; font-weight: 800; letter-spacing: 1.1px; }
.node-name { fill: #dce8e2; font-size: 9px; font-weight: 650; }
.end-node circle { fill: rgba(133, 244, 197, .08); stroke: rgba(133, 244, 197, .46); }
.end-node path { fill: none; stroke: var(--mint); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sketch-callout path { fill: none; stroke: rgba(133, 244, 197, .5); stroke-width: 1.4; stroke-linecap: round; }
.sketch-callout text { fill: rgba(159, 234, 202, .69); font-family: var(--sketch); font-size: 11px; }
.flow-scene[hidden] { display: none; }
.flow-canvas.flow-refresh .flow-scene:not([hidden]) { animation: sceneReveal .35s ease both; }
.scene-wire { fill: none; stroke: #16815f; stroke-width: 1.7; stroke-dasharray: 7 6; stroke-linecap: round; stroke-linejoin: round; animation: wireMove 1.8s linear infinite; }
.flow-canvas-desktop .scene-wire { marker-end: url(#sceneArrowDesktop); }
.flow-canvas-mobile .scene-wire { marker-end: url(#sceneArrowMobile); }
.scene-wire-exception { stroke: #9a6547; stroke-dasharray: 4 5; }
.scene-route-label { fill: #657a70; font-size: 7.4px; font-weight: 800; letter-spacing: .8px; }
.route-exception { fill: #87583c; }
.scene-node > rect { fill: #fff; stroke: rgba(34, 76, 59, .22); stroke-width: 1; }
.scene-node-start > rect { fill: #f1fbf6; stroke: rgba(20, 116, 84, .5); }
.scene-node-human > rect { fill: #fff8f1; stroke: rgba(135, 88, 60, .62); stroke-dasharray: 4 3; }
.scene-node-done > rect { fill: #eef9f3; stroke: rgba(20, 116, 84, .52); }
.scene-step-badge circle { fill: rgba(69, 201, 149, .14); stroke: rgba(20, 116, 84, .38); }
.scene-node-human .scene-step-badge circle { fill: rgba(135, 88, 60, .1); stroke: rgba(135, 88, 60, .42); }
.scene-step-badge text { fill: #147454; font-size: 8.2px; font-weight: 850; text-anchor: middle; }
.scene-node-human .scene-step-badge text { fill: #87583c; font-size: 6.4px; }
.scene-kicker { fill: #5f746a; font-size: 8.1px; font-weight: 850; letter-spacing: .75px; }
.scene-node-human .scene-kicker { fill: #87583c; }
.scene-label { fill: #263b32; font-size: 11.8px; font-weight: 690; }
.scene-label tspan + tspan { fill: #61756b; font-size: 11.1px; font-weight: 560; }
.scene-decision > path { fill: #f8f4ff; stroke: rgba(118, 99, 199, .5); stroke-width: 1.15; }
.scene-decision-kicker { fill: #7663c7; font-size: 7.1px; font-weight: 850; letter-spacing: .8px; text-anchor: middle; }
.scene-decision-label { fill: #35473f; font-size: 10.2px; font-weight: 700; text-anchor: middle; }
.scene-end circle { fill: rgba(69, 201, 149, .14); stroke: rgba(20, 116, 84, .58); }
.scene-end path { fill: none; stroke: var(--mint); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.scene-callout path { fill: none; stroke: rgba(135, 88, 60, .66); stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.scene-callout text { fill: #87583c; font-family: var(--sketch); font-size: 11.3px; }
#sceneArrowDesktop path, #sceneArrowMobile path { fill: #16815f; }
.workflow-caption { padding: 18px 22px 22px; border-top: 1px solid var(--line); }
.workflow-summary { display: grid; grid-template-columns: 132px 1fr; align-items: start; gap: 18px; }
.workflow-summary p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.workflow-summary strong { display: block; margin-bottom: 2px; color: var(--text); font-weight: 720; }
.workflow-details { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 16px 0 0; }
.workflow-details > div { min-width: 0; padding: 11px 12px; border: 1px solid var(--line); border-radius: 11px; background: rgba(255, 255, 255, .48); }
.workflow-details dt { margin-bottom: 4px; color: #6a7d74; font-size: .6rem; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.workflow-details dd { margin: 0; color: #344a40; font-size: .72rem; font-weight: 620; line-height: 1.45; }
.principles { border-block: 1px solid var(--line); background: rgba(255, 255, 255, .012); }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.principles-grid > div { display: grid; min-height: 134px; grid-template-columns: 36px 1fr; align-items: center; gap: 10px; padding: 24px 34px; border-right: 1px solid var(--line); }
.principles-grid > div:first-child { padding-left: 0; }
.principles-grid > div:last-child { border-right: 0; padding-right: 0; }
.principles-grid > div > span { color: var(--mint); font-family: Georgia, serif; font-size: .78rem; font-style: italic; }
.principles-grid p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.55; }
.principles-grid strong { display: block; margin-bottom: 3px; color: var(--text); font-size: .9rem; }

.section-heading h2 { margin-bottom: 26px; font-size: clamp(2.7rem, 5vw, 4.7rem); }
.section-heading > p:last-child:not(.pen-note) { max-width: 560px; color: var(--muted); line-height: 1.8; }
.split-heading { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; margin-bottom: 72px; }
.split-heading h2 { max-width: 15ch; margin-bottom: 0; }
.split-heading > p:not(.pen-note) { margin-bottom: 8px; }
.solutions-pen-note { position: absolute; right: 18px; bottom: -51px; transform: rotate(1.5deg); }
.solutions-pen-note svg { width: 62px; }
.headline-mark { position: relative; display: inline-block; max-width: 100%; overflow: visible; isolation: isolate; }
.headline-mark::after { position: absolute; z-index: 1; content: ""; pointer-events: none; user-select: none; }
.headline-mark-loop::after {
  display: none;
}
.headline-mark-loop { padding: 0 .04em .08em; background: linear-gradient(transparent 72%, rgba(20, 116, 84, .18) 72%, rgba(20, 116, 84, .18) 91%, transparent 91%); }
.headline-mark-circle::after {
  display: none;
}
.headline-mark-circle { padding-bottom: .09em; background: linear-gradient(transparent 76%, rgba(20, 116, 84, .22) 76%, rgba(20, 116, 84, .22) 91%, transparent 91%); }
.headline-mark-underline {
  padding-bottom: .09em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 13' preserveAspectRatio='none'%3E%3Cpath d='M2 5C54 1 126 9 238 3' fill='none' stroke='%2387583c' stroke-width='1.9' stroke-linecap='round' opacity='.76'/%3E%3Cpath d='M9 10C77 6 151 12 228 7' fill='none' stroke='%2387583c' stroke-width='1.05' stroke-linecap='round' opacity='.38'/%3E%3C/svg%3E") left bottom / 100% .2em no-repeat;
}
.tension-section { background: linear-gradient(180deg, var(--bg), #0b100e); }
.tension-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 24px; }
.tension-card { position: relative; grid-column: span 2; min-height: 470px; overflow: hidden; padding: 34px 31px; border-radius: 26px; }
.tension-card::after { position: absolute; inset: auto -20% -32% 30%; height: 250px; border-radius: 50%; background: radial-gradient(ellipse, rgba(89, 226, 166, .08), transparent 70%); content: ""; }
.card-number { display: grid; width: 38px; height: 38px; place-items: center; margin-bottom: 68px; border: 1px solid var(--line); border-radius: 50%; color: var(--mint); font-family: Georgia, serif; font-size: .72rem; font-style: italic; box-shadow: 5px 5px 12px rgba(0, 0, 0, .3), -3px -3px 9px rgba(60, 83, 73, .12); }
.card-sketch { position: absolute; top: 32px; right: 28px; width: 138px; height: 76px; margin: 0; }
.card-sketch path { fill: none; stroke: rgba(133, 244, 197, .4); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 4 4; }
.card-sketch circle { fill: var(--panel); stroke: var(--mint); stroke-width: 1.5; }
.card-label { margin-bottom: 10px; color: var(--mint); font-size: .64rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.tension-card h3 { margin-bottom: 15px; font-size: 1.46rem; font-weight: 610; letter-spacing: -.035em; }
.tension-card > p:not(.card-label) { color: var(--muted); font-size: .87rem; }
.tension-card ul { position: relative; z-index: 1; display: grid; gap: 10px; margin: 25px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); color: #bdc9c3; font-size: .78rem; list-style: none; }
.tension-card li { display: flex; align-items: center; gap: 10px; }
.tension-card li::before { width: 4px; height: 4px; border-radius: 50%; background: var(--mint); content: ""; }
.capability-bridge { max-width: 900px; margin: 54px auto 0; padding: 22px 0; border-block: 1px solid var(--line); color: var(--muted); font-size: .86rem; text-align: center; }
.capability-bridge .bridge-lead {
  display: inline-block;
  padding-bottom: 5px;
  color: var(--mint);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 230 10' preserveAspectRatio='none'%3E%3Cpath d='M2 5C54 1 116 8 228 3' fill='none' stroke='%2387583c' stroke-width='1.6' stroke-linecap='round' opacity='.78'/%3E%3Cpath d='M8 8C74 5 143 10 218 6' fill='none' stroke='%2387583c' stroke-width='1' stroke-linecap='round' opacity='.43'/%3E%3C/svg%3E") left bottom / 100% 8px no-repeat;
  font-weight: 720;
}
.bridge-pen-note { display: flex; width: min(100%, 900px); justify-content: flex-end; margin: 4px auto 0; padding-right: 45px; transform: rotate(-1.6deg); }

.flow-section { overflow: hidden; background: #edf5ef; }
.flow-section::before { position: absolute; top: -180px; right: -170px; width: 650px; height: 650px; border-radius: 50%; background: radial-gradient(circle, rgba(69, 201, 149, .12), transparent 70%); content: ""; }
.flow-heading { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr); align-items: end; gap: 90px; margin-bottom: 78px; }
.flow-heading h2 { max-width: 12ch; margin: 0; font-size: clamp(3.2rem, 5.2vw, 5.15rem); line-height: .98; }
.flow-heading > p { max-width: 48ch; margin: 0 0 7px; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.flow-sequence { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; border-top: 1px solid rgba(34, 76, 59, .25); list-style: none; }
.flow-sequence li { position: relative; min-width: 0; min-height: 255px; padding: 43px 27px 30px; border-right: 1px solid rgba(34, 76, 59, .16); }
.flow-sequence li:first-child { padding-left: 0; }
.flow-sequence li:last-child { padding-right: 0; border-right: 0; }
.flow-sequence li > span { position: absolute; top: -18px; left: 27px; display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(20, 116, 84, .3); border-radius: 50%; color: var(--mint); background: #edf5ef; font-family: Georgia, serif; font-size: .68rem; font-style: italic; box-shadow: 0 0 0 7px #edf5ef; }
.flow-sequence li:first-child > span { left: 0; }
.flow-sequence small { display: block; margin-bottom: 12px; color: var(--mint); font-size: .56rem; font-weight: 850; letter-spacing: .12em; }
.flow-sequence h3 { max-width: 18ch; margin: 0 0 14px; color: var(--text); font-size: clamp(1.2rem, 1.8vw, 1.55rem); font-weight: 650; letter-spacing: -.035em; line-height: 1.18; }
.flow-sequence p { max-width: 31ch; margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.65; }
.flow-outcomes { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 8px; border-block: 1px solid rgba(34, 76, 59, .2); }
.flow-outcomes p { display: flex; align-items: center; gap: 10px; margin: 0; padding: 20px 28px; border-right: 1px solid rgba(34, 76, 59, .14); color: #3e554a; font-size: .76rem; font-weight: 760; letter-spacing: .01em; }
.flow-outcomes p:first-child { padding-left: 0; }
.flow-outcomes p:last-child { padding-right: 0; border-right: 0; }
.flow-outcomes i { width: 5px; height: 5px; flex: 0 0 auto; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(69, 201, 149, .1); }

.outcomes-section { background: var(--bg-deep); }
.outcomes-section .section-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; column-gap: 80px; margin-bottom: 65px; }
.outcomes-section .section-heading .eyebrow { grid-column: 1 / -1; }
.outcomes-section .section-heading h2 { margin: 0; }
.outcomes-section .section-heading > p:last-child { margin: 0 0 7px; }
.outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.outcome-card { min-height: 275px; padding: 32px 31px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background-color .25s ease; }
.outcome-card:hover { background: rgba(133, 244, 197, .025); }
.outcome-icon { display: grid; width: 38px; height: 38px; place-items: center; margin-bottom: 52px; border: 1px solid rgba(133, 244, 197, .2); border-radius: 12px; color: var(--mint); box-shadow: 5px 5px 13px #030504, -4px -4px 10px rgba(49, 67, 59, .12); }
.outcome-card h3 { margin-bottom: 11px; font-size: 1.02rem; font-weight: 650; letter-spacing: -.02em; }
.outcome-card p { margin: 0; color: var(--muted); font-size: .8rem; }

.integrations-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 194, 137, .18), transparent 24rem),
    radial-gradient(circle at 92% 78%, rgba(69, 201, 149, .13), transparent 31rem),
    #f8f6ef;
}
.integrations-section::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(36, 91, 68, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(36, 91, 68, .035) 1px, transparent 1px);
  background-size: 86px 86px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 46%);
  pointer-events: none;
}
.integrations-layout { position: relative; display: grid; grid-template-columns: minmax(310px, .76fr) minmax(0, 1.24fr); align-items: center; gap: 72px; }
.integration-copy { position: relative; z-index: 2; }
.integration-copy h2 { max-width: 10ch; margin-bottom: 29px; font-size: clamp(2.7rem, 4.1vw, 4rem); line-height: .99; }
.integration-copy .headline-mark-circle { white-space: nowrap; }
.integration-copy .integration-headline-mark { display: block; width: max-content; margin-top: .2em; }
.integrations-lede { max-width: 47ch; margin-bottom: 20px; color: #40584d; font-size: 1rem; line-height: 1.78; }
.integrations-qualifier { max-width: 49ch; margin: 10px 0 0; color: var(--muted); font-size: .83rem; line-height: 1.72; }
.integrations-qualifier strong { display: block; color: var(--text); font-size: .92rem; }
.crm-example-ring { display: inline; padding: 0 .06em .08em; background: linear-gradient(transparent 68%, rgba(20, 116, 84, .17) 68%, rgba(20, 116, 84, .17) 94%, transparent 94%); -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.crm-followup { display: block; margin-top: .35em; }
.integration-reassurance { display: block; margin-top: 15px; padding: 11px 14px; border-left: 3px solid rgba(20, 116, 84, .58); border-radius: 0 10px 10px 0; background: rgba(20, 116, 84, .055); }
.marker-swipe { padding-inline: .04em; background: linear-gradient(transparent 54%, rgba(249, 194, 91, .34) 54%, rgba(249, 194, 91, .34) 91%, transparent 91%); -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.marker-swipe-mint { background: linear-gradient(transparent 54%, rgba(94, 208, 157, .24) 54%, rgba(94, 208, 157, .24) 91%, transparent 91%); }
.integration-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 32px; padding: 5px 0; color: var(--mint); font-size: .9rem; font-weight: 780; }
.integration-cta span { transition: transform .2s ease; }
.integration-cta:hover span { transform: translate(3px, -3px); }

.integration-wall {
  --integration-gap: 14px;
  --integration-duration: 92s;
  position: relative;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border-radius: 31px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .97), rgba(235, 243, 237, .96));
  box-shadow: 22px 24px 58px rgba(50, 82, 69, .16), -12px -12px 34px rgba(255, 255, 255, .92);
}
.integration-viewport {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 610px;
  overflow: hidden;
  overflow: clip;
  contain: layout paint;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 7%, #000 93%, transparent);
}
.integration-track { display: flex; width: 100%; min-width: 0; flex-direction: column; transform: translate3d(0, 0, 0); }
.integration-grid { display: grid; width: 100%; min-width: 0; flex: none; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--integration-gap); margin: 0; padding: var(--integration-gap) 18px; list-style: none; }
.integration-card {
  display: grid;
  min-width: 0;
  height: 164px;
  align-content: space-between;
  gap: 10px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(34, 76, 59, .12);
  border-radius: 19px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 7px 8px 18px rgba(50, 82, 69, .11), inset 0 1px 0 rgba(255, 255, 255, .94);
}
.integration-card > span:last-child { display: grid; min-width: 0; gap: 3px; }
.integration-card strong { display: -webkit-box; overflow: hidden; color: #263c32; font-size: .92rem; line-height: 1.2; letter-spacing: -.02em; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.integration-card small { display: -webkit-box; overflow: hidden; color: #5a6e65; font-size: .69rem; line-height: 1.38; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.integration-icon { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 17px; background: var(--app-color); box-shadow: 5px 7px 14px rgba(50, 82, 69, .17), inset 0 1px 0 rgba(255, 255, 255, .24); }
.integration-icon img { width: 31px; height: 31px; filter: brightness(0) invert(1); }
.integration-card-dark-icon .integration-icon img { filter: none; }
.integration-card-native-icon .integration-icon { overflow: hidden; border: 1px solid rgba(34, 76, 59, .1); background: #fff; }
.integration-card-native-icon .integration-icon img { width: 100%; height: 100%; border-radius: inherit; object-fit: cover; filter: none; }
.integration-icon-highlevel { position: relative; overflow: hidden; border: 1px solid rgba(7, 34, 61, .14); background: #fff url("assets/highlevel-arrow.png") left top / auto 100% no-repeat; }
.integration-card-highlevel .integration-icon-highlevel img { opacity: 0; }
.js .integration-wall.is-ready .integration-track { animation: integrationScroll var(--integration-duration) linear infinite; will-change: transform; }
.integration-wall-footer { position: relative; z-index: 3; display: flex; align-items: center; color: #597067; font-size: .66rem; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; }
.integration-wall-footer { min-height: 54px; flex-wrap: wrap; justify-content: space-between; gap: 8px 15px; padding: 11px 22px; border-top: 1px solid rgba(34, 76, 59, .08); letter-spacing: .025em; text-transform: none; }
.integration-wall-footer span { display: inline-flex; align-items: center; gap: 7px; }
.integration-wall-footer i { width: 4px; height: 4px; border-radius: 50%; background: var(--mint); }
.no-js .integration-viewport { height: auto; overflow: visible; contain: none; -webkit-mask-image: none; mask-image: none; }

@keyframes integrationScroll { to { transform: translate3d(0, -50%, 0); } }

.approach-section { background: linear-gradient(180deg, #0b100e, var(--bg)); }
.section-heading.centered { text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered h2 { margin-inline: auto; }
.approach-pen-note { display: flex; width: max-content; margin: -10px auto 0; transform: translateX(-112px) rotate(-2deg); }
.approach-line { position: relative; height: 35px; margin-top: 55px; }
.approach-line::before { position: absolute; top: 17px; right: 0; left: 0; height: 1px; background: var(--line); content: ""; }
.approach-line span { position: absolute; top: 14px; left: 12%; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px var(--mint); animation: lineTravel 7s ease-in-out infinite; }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 0; padding: 0; list-style: none; }
.approach-grid li { position: relative; min-height: 310px; padding: 32px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255, 255, 255, .012); }
.step-index { position: absolute; top: -51px; left: 26px; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: var(--bg); background: var(--mint); font-family: Georgia, serif; font-size: .7rem; font-style: italic; box-shadow: 0 0 0 8px var(--bg); }
.step-label { margin-bottom: 31px; color: var(--mint); font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.approach-grid h3 { margin-bottom: 15px; font-size: 1.37rem; font-weight: 620; letter-spacing: -.035em; }
.approach-grid li > p:not(.step-label) { color: var(--muted); font-size: .82rem; }
.step-note { position: absolute; right: 24px; bottom: 23px; color: rgba(162, 234, 204, .5); font-family: var(--sketch); font-size: .68rem; transform: rotate(-3deg); }
.step-note-two { right: 29px; transform: rotate(2deg); }
.step-note-three { right: 20px; transform: rotate(-1deg); }

.schedule-section { scroll-margin-top: 92px; padding-top: 70px; background: var(--bg); }
.schedule-shell { display: grid; grid-template-columns: minmax(0, 1fr); align-items: start; gap: 54px; padding: 74px; overflow: hidden; border-radius: 34px; }
.schedule-copy { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(340px, .76fr); align-items: start; gap: 70px; }
.schedule-intro, .schedule-details { min-width: 0; }
.schedule-copy h2 { margin-bottom: 24px; font-size: clamp(2.5rem, 4.2vw, 4rem); }
.schedule-details > p { margin-top: 38px; color: var(--muted); }
.schedule-pen-note { display: flex; width: max-content; margin: -12px 0 18px auto; transform: rotate(-1.5deg); }
.schedule-pen-note svg { width: 62px; }
.session-agenda { display: grid; gap: 0; margin-top: 28px; border-top: 1px solid var(--line); }
.session-agenda p { display: flex; gap: 14px; margin: 0; padding-block: 12px; border-bottom: 1px solid var(--line); color: #bbc7c1; font-size: .78rem; }
.session-agenda span { color: var(--mint); font-family: Georgia, serif; font-style: italic; }
.calendar-note { display: flex; align-items: center; gap: 13px; margin-top: 28px; padding: 15px 17px; border: 1px solid rgba(135, 88, 60, .18); border-radius: 16px; background: rgba(135, 88, 60, .045); }
.calendar-note > span { display: grid; flex: 0 0 32px; height: 32px; place-items: center; border-radius: 10px; color: #a06a4b; background: rgba(135, 88, 60, .1); }
.calendar-note p { margin: 0; color: var(--muted); font-size: .68rem; line-height: 1.5; }
.calendar-note strong { display: block; color: #d8b9a6; }
.scheduler { position: relative; z-index: 1; width: 100%; min-width: 0; overflow: hidden; scroll-margin-top: 92px; border: 1px solid var(--line); border-radius: 25px; background: #fff; box-shadow: var(--inset-shadow); }
.booking-frame { display: block; width: 100%; height: 960px; border: 0; background: #fff; }
.sketch-ring { position: relative; overflow: visible; isolation: isolate; }
.sketch-ring::after {
  display: none;
}
.no-js .workflow-tabs button:not([aria-selected="true"]) { display: none; }

.contact-strip { margin-top: 80px; border-block: 1px solid var(--line); }
.contact-inner { display: flex; min-height: 130px; align-items: center; justify-content: space-between; gap: 30px; }
.contact-inner p { margin: 0; color: var(--muted); }
.contact-inner a { color: var(--mint); font-size: clamp(1.35rem, 3vw, 2.2rem); font-weight: 570; letter-spacing: -.04em; }
.contact-inner a span { font-size: .75em; }

.site-footer { padding-top: 85px; background: var(--bg-deep); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 60px; padding-bottom: 65px; }
.footer-brand { margin-bottom: 15px; }
.footer-grid > div > p { color: var(--muted); font-size: .78rem; }
.footer-grid nav { display: grid; align-content: start; gap: 11px; color: #b4c0ba; font-size: .77rem; }
.footer-grid nav a:hover, .footer-meta a:hover { color: var(--mint); }
.footer-meta { text-align: right; }
.footer-meta a { color: #becac4; font-size: .74rem; }
.footer-bottom { display: flex; min-height: 70px; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .64rem; letter-spacing: .07em; text-transform: uppercase; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.js .reveal[data-delay="1"] { transition-delay: .1s; }
.js .reveal[data-delay="2"] { transition-delay: .2s; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@keyframes wireMove { to { stroke-dashoffset: -34; } }
@keyframes breathe { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
@keyframes nodeFloat { 0%, 100% { transform: translate(419px, 166px); } 50% { transform: translate(419px, 160px); } }
@keyframes lineTravel { 0%, 100% { left: 12%; } 50% { left: 87%; } }
@keyframes sceneReveal { from { opacity: .3; } to { opacity: 1; } }

@media (max-width: 1200px) {
  .hero-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 35px; }
  .hero-workflow { margin-right: 35px; }
  .flow-heading { gap: 60px; }
  .flow-sequence li { padding-right: 22px; padding-left: 22px; }
  .flow-sequence li:first-child { padding-left: 0; }
  .flow-sequence li:last-child { padding-right: 0; }
  .flow-sequence li > span { left: 22px; }
  .flow-sequence li:first-child > span { left: 0; }
  .integrations-layout { gap: 48px; }
  .schedule-shell { gap: 50px; padding: 55px; }
}

@media (max-width: 1240px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { max-width: 760px; }
  .hero-lede { max-width: 670px; }
  .hero-workflow { width: min(100%, 740px); margin: 35px auto 0; }
}

@media (max-width: 1020px) {
  .section { padding-block: 105px; }
  .hero { padding-top: 145px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { max-width: 760px; }
  .hero-lede { max-width: 670px; }
  .hero-workflow { width: min(100%, 740px); margin: 35px auto 0; }
  .principles-grid > div { padding-inline: 20px; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .tension-grid { grid-template-columns: repeat(2, 1fr); }
  .tension-card { grid-column: auto; }
  .flow-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 70px; }
  .flow-heading h2 { max-width: 14ch; }
  .flow-heading > p { max-width: 62ch; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-card:last-child { grid-column: 1 / -1; }
  .integrations-layout { grid-template-columns: minmax(0, 1fr); gap: 58px; }
  .integration-copy { max-width: 760px; }
  .integration-copy h2 { max-width: 12ch; }
  .integration-wall { width: min(100%, 840px); margin-inline: auto; }
  .approach-grid { gap: 14px; }
  .schedule-shell { grid-template-columns: 1fr; }
  .schedule-copy { max-width: none; grid-template-columns: 1fr; gap: 12px; }
  .schedule-details > p { max-width: 700px; margin-top: 0; }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding-block: 82px; }
  .site-header { background: rgba(8, 12, 10, .88); backdrop-filter: blur(14px); }
  .header-inner { min-height: 70px; }
  .nav-toggle { display: grid; width: 42px; height: 42px; place-content: center; gap: 6px; border: 1px solid var(--line); border-radius: 12px; color: var(--text); background: var(--panel); cursor: pointer; box-shadow: 5px 5px 12px rgba(0,0,0,.3), -3px -3px 10px rgba(58,79,70,.1); }
  .mobile-contact-cta { position: relative; display: inline-flex; min-height: 38px; align-items: center; gap: 6px; margin-left: auto; margin-right: 10px; padding: 0 12px; border: 1px solid rgba(20, 116, 84, .34); border-radius: 11px; color: #18372b; background: linear-gradient(135deg, #b5efd8, #69d9ac); font-size: .66rem; font-weight: 820; letter-spacing: -.01em; white-space: nowrap; box-shadow: 0 7px 18px rgba(42, 151, 110, .18); }
  .mobile-contact-cta::after { position: absolute; inset: -4px; border: 1px solid rgba(20, 116, 84, .32); border-radius: 14px; content: ""; pointer-events: none; animation: mobileCtaPulse 2.8s ease-out infinite; }
  .mobile-contact-cta > span { font-size: .78rem; }
  .nav-toggle > span:not(.sr-only) { width: 17px; height: 1px; background: currentColor; transition: transform .2s ease; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .primary-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: grid; gap: 0; padding: 10px 14px 18px; border-bottom: 1px solid var(--line); background: rgba(8, 12, 10, .97); box-shadow: 0 18px 30px rgba(0,0,0,.35); visibility: hidden; opacity: 0; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .primary-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .no-js .nav-toggle { display: none; }
  .no-js .primary-nav { position: static; display: block; width: auto; padding: 0; border: 0; visibility: visible; opacity: 1; background: transparent; box-shadow: none; transform: none; }
  .no-js .primary-nav > a { display: none; }
  .no-js .primary-nav > .nav-cta { display: inline-flex; margin: 0; }
  .primary-nav > a:not(.button) { padding: 12px 8px; }
  .primary-nav > a::after { display: none; }
  .nav-cta { margin-top: 8px; }
  .hero { min-height: auto; padding-top: 126px; padding-bottom: 80px; background-image: linear-gradient(rgba(36, 91, 68, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(36, 91, 68, .045) 1px, transparent 1px); background-size: 58px 58px; }
  .hero::before, .hero-halo { display: none; }
  h1 { font-size: clamp(3rem, 14.5vw, 4.8rem); }
  .hero-lede { font-size: .99rem; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { flex: 1 1 210px; }
  .hero-cta-note { margin-left: 28px; }
  .hero-workflow { margin-right: 0; }
  .flow-canvas-desktop { display: none; }
  .flow-canvas.flow-canvas-mobile { display: block; width: min(100%, 440px); max-width: 440px; margin-inline: auto; }
  .scene-route-label { font-size: 7.6px; }
  .scene-step-badge text { font-size: 8.5px; }
  .scene-node-human .scene-step-badge text { font-size: 6.5px; }
  .scene-kicker { font-size: 8.6px; }
  .scene-label { font-size: 12.5px; }
  .scene-label tspan + tspan { font-size: 11.1px; }
  .scene-decision-kicker { font-size: 7.5px; }
  .scene-decision-label { font-size: 10.6px; }
  .scene-callout text { font-size: 12.4px; }
  .workflow-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: visible; }
  .workflow-tabs button { width: 100%; min-width: 0; min-height: 52px; padding: 8px 6px; white-space: normal; line-height: 1.2; overflow-wrap: anywhere; }
  .canvas-wrap { overflow: hidden; }
  .flow-canvas { width: 100%; min-width: 0; max-width: 100%; height: auto; }
  .workflow-summary { grid-template-columns: 1fr; gap: 6px; }
  .workflow-details { grid-template-columns: 1fr; }
  .workflow-details > div { padding: 12px 13px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-grid > div, .principles-grid > div:first-child, .principles-grid > div:last-child { min-height: 105px; padding-inline: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .principles-grid > div:last-child { border-bottom: 0; }
  .section-heading h2 { font-size: clamp(2.5rem, 12vw, 3.5rem); }
  .split-heading { margin-bottom: 50px; }
  .solutions-pen-note { position: static; justify-self: start; margin-top: -10px; transform: rotate(-1.3deg); }
  .headline-mark-loop { padding-bottom: .08em; }
  .tension-grid { grid-template-columns: 1fr; }
  .tension-card { grid-column: auto; min-height: 0; padding: 28px 25px; }
  .card-number { margin-bottom: 62px; }
  .card-sketch { top: 27px; right: 22px; width: 126px; height: 70px; }
  .capability-bridge { margin-top: 42px; text-align: left; }
  .flow-heading { margin-bottom: 54px; }
  .flow-heading h2 { font-size: clamp(2.65rem, 12vw, 3.7rem); }
  .flow-sequence { grid-template-columns: 1fr; margin-left: 18px; border-top: 0; border-left: 1px solid rgba(34, 76, 59, .25); }
  .flow-sequence li, .flow-sequence li:first-child, .flow-sequence li:last-child { min-height: 0; padding: 0 0 36px 38px; border-right: 0; border-bottom: 1px solid rgba(34, 76, 59, .14); }
  .flow-sequence li + li { padding-top: 30px; }
  .flow-sequence li:last-child { padding-bottom: 4px; border-bottom: 0; }
  .flow-sequence li > span, .flow-sequence li:first-child > span { top: 0; left: -18px; box-shadow: 0 0 0 7px #edf5ef; }
  .flow-sequence li + li > span { top: 30px; }
  .flow-sequence h3, .flow-sequence p { max-width: 32ch; }
  .flow-outcomes { grid-template-columns: 1fr; margin-top: 46px; }
  .flow-outcomes p, .flow-outcomes p:first-child, .flow-outcomes p:last-child { padding: 16px 0; border-right: 0; border-bottom: 1px solid rgba(34, 76, 59, .14); }
  .flow-outcomes p:last-child { border-bottom: 0; }
  .outcomes-section .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-card:last-child { grid-column: auto; }
  .outcome-card { min-height: 230px; }
  .outcome-icon { margin-bottom: 38px; }
  .integration-copy h2 { max-width: 11ch; font-size: clamp(2.55rem, 10.2vw, 3.6rem); }
  .integration-wall { --integration-gap: 11px; --integration-duration: 116s; border-radius: 25px; }
  .integration-viewport { height: 540px; }
  .integration-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-right: 12px; padding-left: 12px; }
  .integration-card { height: 150px; padding: 14px; border-radius: 17px; }
  .integration-icon { width: 52px; height: 52px; border-radius: 15px; }
  .integration-icon img { width: 28px; height: 28px; }
  .integration-wall-footer { justify-content: flex-start; padding-inline: 16px; }
  .approach-line { display: none; }
  .approach-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 55px; }
  .approach-pen-note { transform: rotate(-2deg); }
  .approach-grid li { min-height: 275px; }
  .step-index { top: -16px; box-shadow: 0 0 0 6px var(--bg); }
  .schedule-section { padding-top: 50px; }
  .schedule-shell { gap: 45px; padding: 38px 22px; border-radius: 25px; }
  .scheduler { padding: 0; }
  .booking-frame { height: 1120px; }
  .contact-inner { min-height: 150px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; }
  .contact-inner a { overflow-wrap: anywhere; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-meta { text-align: right; }
}

@media (max-width: 560px) {
  .mobile-break { display: block; }
  .hero-actions .button { flex-basis: 100%; }
}

@media (max-width: 480px) {
  .canvas-wrap { margin-inline: 6px; border-radius: 18px; }
  .window-label { margin-left: auto; }
  .integration-copy h2 { font-size: clamp(2.15rem, 10.7vw, 2.85rem); }
  .integrations-lede { font-size: .94rem; }
  .integration-wall { --integration-gap: 9px; --integration-duration: 114s; }
  .integration-viewport { height: 455px; }
  .integration-grid { padding-right: 9px; padding-left: 9px; }
  .integration-card { height: 145px; gap: 8px; padding: 11px; border-radius: 15px; }
  .integration-card strong { font-size: .79rem; }
  .integration-card small { font-size: .61rem; line-height: 1.35; }
  .integration-icon { width: 47px; height: 47px; border-radius: 13px; }
  .integration-icon img { width: 25px; height: 25px; }
  .integration-wall-footer { display: grid; grid-template-columns: 1fr; gap: 4px; padding: 10px 14px; font-size: .59rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-meta { text-align: left; }
}

/* Warm, approachable light theme */
::selection { color: #fff; background: var(--mint); }
.skip-link { color: #fff; background: var(--mint); }
.site-header { background: rgba(248, 246, 239, .78); backdrop-filter: blur(14px); }
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(248, 246, 239, .94); box-shadow: 0 8px 28px rgba(50, 82, 69, .08); }
.primary-nav > a:not(.button) { color: #40564d; font-size: .9rem; }
.button { font-size: .94rem; }
.button-primary { color: #18372b; box-shadow: 0 9px 24px rgba(42, 151, 110, .2), inset 0 1px 0 rgba(255, 255, 255, .76); }
.button-primary:hover { box-shadow: 0 12px 30px rgba(42, 151, 110, .28), inset 0 1px 0 rgba(255, 255, 255, .84); }
.button-quiet { border-color: var(--line-strong); color: var(--text); background: rgba(255, 255, 255, .72); box-shadow: 7px 7px 18px rgba(50, 82, 69, .1), -5px -5px 14px rgba(255, 255, 255, .8); }
.button-quiet:hover { border-color: var(--mint); background: #fff; }
.hero::before { background-image: linear-gradient(rgba(36, 91, 68, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(36, 91, 68, .045) 1px, transparent 1px); }
.hero-halo { background: radial-gradient(circle, rgba(76, 205, 154, .22) 0, rgba(76, 205, 154, .1) 38%, transparent 70%); }
h1 em::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 15'%3E%3Cpath d='M2 7C69 2 144 11 298 4' fill='none' stroke='%23147454' stroke-width='2' stroke-linecap='round' opacity='.78'/%3E%3Cpath d='M9 12C92 8 176 14 285 8' fill='none' stroke='%23147454' stroke-width='1.1' stroke-linecap='round' opacity='.42'/%3E%3C/svg%3E"); }
.hero-lede { color: #4e6259; }
.window-label { color: #64786f; }
.workflow-tabs button { color: #53685e; font-size: .76rem; }
.workflow-tabs button[aria-selected="true"] { color: var(--text); background: #fff; box-shadow: var(--inset-shadow); }
.canvas-wrap { border-color: var(--line); background: #f0f6f1; box-shadow: inset 7px 7px 18px rgba(50, 82, 69, .09), inset -5px -5px 15px rgba(255, 255, 255, .9); }
.grid-lines path { stroke: rgba(36, 91, 68, .07); }
.flow-node > rect { fill: #fff; stroke: rgba(34, 76, 59, .2); }
.flow-node.node-active > rect, .flow-node.node-highlight > rect { stroke: rgba(20, 116, 84, .68); }
.node-icon circle { fill: rgba(69, 201, 149, .14); stroke: rgba(20, 116, 84, .38); }
.node-icon.violet circle { fill: rgba(118, 99, 199, .1); stroke: rgba(118, 99, 199, .35); }
.node-kicker { fill: #61756b; }
.node-name { fill: #263b32; }
.end-node circle { fill: rgba(69, 201, 149, .13); stroke: rgba(20, 116, 84, .58); }
.sketch-callout path { stroke: rgba(138, 90, 60, .64); }
.sketch-callout text { fill: #87583c; }
.workflow-caption p { color: var(--muted); font-size: .82rem; }
.workflow-caption strong { color: var(--text); }
.principles { background: rgba(255, 255, 255, .5); }
.principles-grid p { font-size: .84rem; }
.principles-grid strong { font-size: .98rem; }
.tension-section { background: linear-gradient(180deg, var(--bg), #edf5ef); }
.tension-card::after { background: radial-gradient(ellipse, rgba(69, 201, 149, .16), transparent 70%); }
.card-number { box-shadow: 5px 5px 13px rgba(50, 82, 69, .13), -4px -4px 11px rgba(255, 255, 255, .85); }
.card-sketch path { stroke: rgba(20, 116, 84, .55); }
.tension-card > p:not(.card-label) { font-size: .94rem; }
.tension-card ul { color: #40574d; font-size: .86rem; }
.flow-section { background: #edf5ef; }
.outcomes-section { background: var(--bg-deep); }
.outcome-card:hover { background: rgba(255, 255, 255, .48); }
.outcome-card p { font-size: .88rem; }
.outcome-icon { box-shadow: 5px 5px 13px rgba(50, 82, 69, .13), -4px -4px 10px rgba(255, 255, 255, .8); }
.approach-section { background: linear-gradient(180deg, #eef4ee, var(--bg)); }
.approach-grid li { background: rgba(255, 255, 255, .54); }
.step-note { color: #76503a; }
.session-agenda p { color: #43594f; font-size: .86rem; }
.calendar-note { border-color: rgba(135, 88, 60, .26); background: rgba(185, 116, 40, .075); }
.calendar-note > span { color: #87583c; background: rgba(135, 88, 60, .11); }
.calendar-note p { font-size: .78rem; }
.calendar-note strong { color: #744731; }
.scheduler { border-color: var(--line); background: #fbfcf8; box-shadow: var(--inset-shadow); }
.contact-inner a { color: var(--mint); }
.site-footer { background: #e7eee8; }
.footer-grid nav { color: #42584e; font-size: .82rem; }
.footer-meta a { color: #42584e; font-size: .8rem; }
.footer-bottom { color: #53655d; font-size: .72rem; }

/* Repetitive-work transformation */
.hero-grid { grid-template-columns: minmax(0, 1fr); align-items: start; gap: 48px; }
.hero-copy { display: grid; width: 100%; max-width: none; grid-template-columns: minmax(0, 1.08fr) minmax(350px, .72fr); align-items: center; gap: clamp(54px, 7vw, 112px); padding-bottom: 38px; }
.hero-copy-main { min-width: 0; max-width: 830px; }
.hero-start { position: relative; min-width: 0; padding: 34px 0 30px 44px; border-left: 1px solid rgba(34, 76, 59, .22); }
.hero-start::before { position: absolute; top: 34px; left: -4px; width: 7px; height: 7px; border: 2px solid var(--bg); border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(69, 201, 149, .12); content: ""; }
.hero-start-kicker { margin: 0 0 13px; color: var(--mint); font-size: .66rem; font-weight: 850; letter-spacing: .15em; }
.hero-start h2 { max-width: 12ch; margin: 0 0 24px; color: var(--text); font-size: clamp(1.85rem, 3vw, 2.65rem); line-height: 1.02; }
.hero-start blockquote { max-width: 18ch; margin: 0 0 28px; color: #87583c; font-family: var(--sketch); font-size: clamp(1.18rem, 1.8vw, 1.5rem); line-height: 1.45; transform: rotate(-1deg); }
.hero-start ul { margin: 0; padding: 0; border-top: 1px solid rgba(34, 76, 59, .16); list-style: none; }
.hero-start li { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(34, 76, 59, .16); }
.hero-start li span { padding-top: 2px; color: var(--mint); font-size: .57rem; font-weight: 850; letter-spacing: .1em; }
.hero-start li strong { color: #3e544a; font-family: Georgia, serif; font-size: .9rem; font-style: italic; font-weight: 500; line-height: 1.4; }
.hero-start-note { margin: 19px 0 0; color: #87583c; font-family: var(--sketch); font-size: .8rem; transform: rotate(-1deg); }
.hero-workflow { width: 100%; margin: 0; padding-top: 0; }
.workflow-window { box-shadow: 0 26px 58px rgba(50, 82, 69, .16), 0 2px 0 rgba(255, 255, 255, .88) inset; }
.workflow-tabs { gap: 8px; padding: 16px 20px 0; }
.workflow-tabs button { min-height: 46px; font-size: .78rem; }
.transformation-board { position: relative; margin: 13px 14px 0; padding: 16px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background-color: #f3f7f2; background-image: linear-gradient(rgba(36, 91, 68, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(36, 91, 68, .045) 1px, transparent 1px); background-size: 52px 52px; box-shadow: inset 7px 7px 18px rgba(50, 82, 69, .07), inset -5px -5px 15px rgba(255, 255, 255, .88); }
.transformation-intro { position: relative; z-index: 4; display: grid; grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr); align-items: stretch; margin-bottom: 14px; overflow: hidden; border-radius: 16px; color: #f8fffB; background: linear-gradient(120deg, #1f3a30, #147454); box-shadow: 0 12px 24px rgba(27, 72, 54, .2); }
.transformation-intro > div { display: grid; align-content: center; min-height: 108px; padding: 18px 22px; }
.transformation-intro small { margin-bottom: 5px; color: #a8ebd0; font-size: .58rem; font-weight: 850; letter-spacing: .12em; }
.transformation-intro blockquote, .transformation-intro strong { margin: 0; overflow-wrap: anywhere; color: #fff; font-size: clamp(.92rem, 1.55vw, 1.18rem); font-weight: 720; letter-spacing: -.02em; line-height: 1.35; text-shadow: 0 2px 8px rgba(0, 0, 0, .2); }
.transformation-intro blockquote { font-family: Georgia, serif; font-style: italic; font-weight: 400; }
.transformation-intro-arrow { display: grid; place-items: center; color: #173e30; background: #a8ebd0; font-size: 1.25rem; font-weight: 900; }
.transformation-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.transform-stage { position: relative; min-width: 0; min-height: 235px; padding: 18px; overflow: visible; border: 1px solid rgba(34, 76, 59, .13); border-radius: 17px; background: rgba(255, 255, 255, .92); box-shadow: 6px 8px 18px rgba(50, 82, 69, .08); animation: transformStage 12s ease-in-out infinite; }
.transform-stage:nth-child(2) { animation-delay: 3s; }
.transform-stage:nth-child(3) { animation-delay: 6s; }
.transform-stage:nth-child(4) { animation-delay: 9s; }
.transform-stage-problem { background: rgba(255, 249, 242, .92); }
.transform-stage-question { background: rgba(255, 255, 255, .94); }
.transform-stage-architecture { background-color: rgba(244, 246, 255, .95); background-image: linear-gradient(rgba(118, 99, 199, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(118, 99, 199, .055) 1px, transparent 1px); background-size: 23px 23px; }
.transform-stage-running { background: linear-gradient(155deg, rgba(240, 251, 245, .98), rgba(228, 246, 236, .98)); border-color: rgba(20, 116, 84, .24); }
.transform-stage-top { display: flex; align-items: center; justify-content: space-between; gap: 7px; margin-bottom: 28px; color: #687d73; }
.transform-stage-top > span { display: grid; width: 24px; height: 24px; place-items: center; border: 1px solid rgba(34, 76, 59, .18); border-radius: 8px; background: rgba(255, 255, 255, .72); font-family: Georgia, serif; font-size: .65rem; }
.transform-stage-top small { font-size: .54rem; font-weight: 850; letter-spacing: .1em; }
.transform-stage-running .transform-stage-top small { display: flex; align-items: center; gap: 5px; color: #147454; }
.transform-stage-running .transform-stage-top b { width: 6px; height: 6px; border-radius: 50%; background: #45c995; box-shadow: 0 0 0 4px rgba(69, 201, 149, .13); animation: breathe 2.2s ease-in-out infinite; }
.transform-stage h3 { margin-bottom: 13px; overflow-wrap: anywhere; color: #22382f; font-size: 1.02rem; font-weight: 720; letter-spacing: -.025em; line-height: 1.25; }
.transform-stage > p { margin: 0; color: #53685e; font-size: .73rem; line-height: 1.5; }
.repeat-chain, .continuous-flow { display: flex; min-width: 0; align-items: center; gap: 4px; margin: 18px 0 15px; }
.repeat-chain span, .continuous-flow span { min-width: 0; padding: 6px 7px; border: 1px solid rgba(34, 76, 59, .13); border-radius: 8px; color: #40564c; background: rgba(255, 255, 255, .84); font-size: .59rem; font-weight: 760; white-space: normal; }
.repeat-chain i, .continuous-flow i { flex: 0 0 auto; color: #9a6547; font-size: .65rem; font-style: normal; }
.transform-listen { display: flex; gap: 6px; }
.transform-listen span { color: var(--mint); font-weight: 900; }
.discovery-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; margin: 18px 0 15px; }
.discovery-points span { padding: 7px 5px; border: 1px solid rgba(20, 116, 84, .16); border-radius: 8px; color: #147454; background: rgba(20, 116, 84, .055); font-size: .57rem; font-weight: 820; letter-spacing: .04em; text-align: center; text-transform: uppercase; }
.blueprint-flow { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px; margin: 19px 0 15px; }
.blueprint-flow span { position: relative; padding: 7px 3px; border: 1px solid rgba(118, 99, 199, .2); border-radius: 7px; color: #5f5198; background: rgba(255, 255, 255, .8); font-size: .49rem; font-weight: 850; letter-spacing: .04em; text-align: center; }
.blueprint-flow span:not(:last-child)::after { position: absolute; z-index: 2; right: -6px; bottom: -6px; color: rgba(118, 99, 199, .58); content: "↘"; font-size: .55rem; }
.blueprint-flow span:nth-child(2)::after { right: auto; left: -6px; content: "↙"; }
.blueprint-flow span:nth-child(3)::after { right: -6px; bottom: auto; top: -7px; content: "↗"; }
.continuous-flow { flex-wrap: wrap; }
.continuous-flow span { border-color: rgba(20, 116, 84, .2); color: #147454; }
.continuous-flow i { color: #16815f; }
.transform-stage-running p strong { display: block; margin-bottom: 3px; color: #147454; font-size: .7rem; }
.transform-signal { position: absolute; z-index: 3; top: 184px; left: 5%; width: 90%; height: 2px; overflow: visible; pointer-events: none; }
.transform-signal::before { position: absolute; right: 0; left: 0; top: 0; height: 1px; background: linear-gradient(90deg, rgba(154, 101, 71, .32), rgba(118, 99, 199, .38), rgba(20, 116, 84, .44)); content: ""; }
.transform-signal span { position: absolute; top: -3px; left: 0; width: 8px; height: 8px; border-radius: 50%; background: #45c995; box-shadow: 0 0 0 4px rgba(69, 201, 149, .12), 0 0 12px rgba(20, 116, 84, .38); animation: transformTravel 6s ease-in-out infinite; }
.transform-outcomes { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 11px 0 0; }
.transform-outcomes > div { min-width: 0; padding: 10px 11px; border: 1px solid rgba(34, 76, 59, .1); border-radius: 10px; background: rgba(255, 255, 255, .65); }
.transform-outcomes dt { margin-bottom: 3px; color: #688076; font-size: .51rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.transform-outcomes dd { margin: 0; color: #344b41; font-size: .64rem; font-weight: 650; line-height: 1.4; }
@keyframes transformStage { 0%, 18%, 100% { border-color: rgba(34, 76, 59, .13); box-shadow: 6px 8px 18px rgba(50, 82, 69, .08); transform: translateY(0); } 7%, 12% { border-color: rgba(20, 116, 84, .46); box-shadow: 6px 12px 24px rgba(20, 116, 84, .13); transform: translateY(-3px); } }
@keyframes transformTravel { 0% { left: 0; opacity: 0; } 7% { opacity: 1; } 93% { opacity: 1; } 100% { left: calc(100% - 8px); opacity: 0; } }
@keyframes mobileCtaPulse { 0%, 48% { opacity: 0; transform: scale(.96); } 66% { opacity: .7; } 100% { opacity: 0; transform: scale(1.11); } }

@media (max-width: 760px) {
  .site-header { background: rgba(248, 246, 239, .94); }
  .nav-toggle { border-color: var(--line-strong); background: #fff; box-shadow: 5px 5px 13px rgba(50, 82, 69, .13), -4px -4px 11px rgba(255, 255, 255, .86); }
  .primary-nav { background: rgba(250, 249, 244, .98); box-shadow: 0 18px 30px rgba(50, 82, 69, .14); }
  .workflow-tabs button { font-size: .76rem; }
  .transformation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .transform-stage { min-height: 235px; }
  .transformation-intro { grid-template-columns: 1fr; }
  .transformation-intro > div { min-height: 0; padding: 16px 18px; }
  .transformation-intro-arrow { min-height: 28px; transform: rotate(90deg); }
  .transform-signal { display: none; }
}

@media (max-width: 640px) {
  .flow-canvas-mobile .node-kicker { font-size: 8.5px; }
  .flow-canvas-mobile .node-name { font-size: 11.5px; }
  .flow-canvas-mobile .sketch-callout text { font-size: 12.5px; }
  .transformation-grid, .transform-outcomes { grid-template-columns: 1fr; }
  .transform-stage { min-height: 0; }
}

@media (max-width: 480px) {
  .transformation-board { margin: 9px 7px 0; padding: 10px; border-radius: 17px; }
  .transformation-grid { grid-template-columns: 1fr; }
  .transform-stage { min-height: 0; padding: 14px; }
  .transform-stage-top { margin-bottom: 16px; }
  .transform-outcomes { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .signal { display: none; }
  .transform-stage, .transform-signal span, .transform-stage-running .transform-stage-top b { animation: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .integration-track { animation-duration: var(--integration-duration) !important; animation-iteration-count: infinite !important; animation-timing-function: linear !important; }
  .mobile-contact-cta::after { animation: none !important; }
}

@media (max-width: 360px) {
  .brand { gap: 7px; font-size: 1.05rem; }
  .brand-mark { width: 32px; height: 32px; }
  .mobile-contact-cta { min-height: 36px; margin-right: 7px; padding-inline: 9px; font-size: .6rem; }
  .nav-toggle { width: 38px; height: 38px; }
}

/* One generalized operation story */
.operation-story { position: relative; background: #fbfcf8; }
.operation-story-intro { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); column-gap: 70px; align-items: end; padding: 44px 46px 40px; }
.operation-story-intro > p { grid-column: 1 / -1; margin: 0 0 12px; color: var(--mint); font-size: .64rem; font-weight: 850; letter-spacing: .16em; }
.operation-story-intro h2 { max-width: 12ch; margin: 0; color: #20332c; font-size: clamp(2.65rem, 4.7vw, 4.55rem); line-height: .98; }
.operation-story-intro h2 em { display: block; }
.operation-story-intro > span { max-width: 41ch; padding-bottom: 7px; color: #52675e; font-size: .94rem; line-height: 1.7; }
.operation-track { position: relative; display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.42fr) minmax(0, .94fr); margin-inline: 22px; border-block: 1px solid rgba(34, 76, 59, .17); background: #f5f7f2; }
.operation-phase { position: relative; min-width: 0; min-height: 520px; padding: 38px 30px 34px; overflow: hidden; border-right: 1px solid rgba(34, 76, 59, .14); }
.operation-phase:last-child { border-right: 0; }
.operation-phase-architect { background-color: #f1f7f3; background-image: linear-gradient(rgba(20, 116, 84, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 116, 84, .05) 1px, transparent 1px); background-size: 26px 26px; }
.operation-phase-run { background: #edf8f1; }
.operation-phase header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 38px; }
.operation-phase header > span { color: rgba(32, 51, 44, .32); font-family: Georgia, serif; font-size: 1.45rem; line-height: 1; }
.operation-phase header small { color: #587067; font-size: .58rem; font-weight: 850; letter-spacing: .13em; text-align: right; }
.operation-phase-architect header small { color: #147454; }
.operation-phase-run header small { color: #147454; }
.operation-phase h3 { max-width: 17ch; margin-bottom: 14px; color: #20332c; font-size: clamp(1.32rem, 2vw, 1.75rem); font-weight: 650; letter-spacing: -.04em; line-height: 1.12; }
.operation-phase > p { max-width: 43ch; margin: 0; color: #586b63; font-size: .78rem; line-height: 1.65; }
.discovery-trace { position: relative; display: grid; gap: 0; margin: 28px 0 0; padding: 0; list-style: none; }
.discovery-trace::before { position: absolute; top: 18px; bottom: 18px; left: 16px; border-left: 1px dashed rgba(135, 88, 60, .38); content: ""; }
.discovery-trace li { position: relative; z-index: 1; display: grid; grid-template-columns: 34px minmax(0, 1fr); align-items: center; gap: 12px; padding: 0 0 18px; }
.discovery-trace li:last-child { padding-bottom: 0; }
.discovery-trace li > span { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(135, 88, 60, .28); border-radius: 50%; color: #87583c; background: #fbfcf8; box-shadow: 0 0 0 5px rgba(245, 247, 242, .92); }
.discovery-trace svg { width: 17px; height: 17px; }
.discovery-trace path { fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.discovery-trace p { display: grid; gap: 1px; margin: 0; }
.discovery-trace small { color: #9a6547; font-size: .49rem; font-weight: 850; letter-spacing: .11em; }
.discovery-trace strong { color: #344a40; font-size: .7rem; font-weight: 720; line-height: 1.35; }
.architecture-orbit { position: relative; display: grid; width: min(100%, 270px); min-height: 154px; grid-template-columns: 1fr 1.15fr 1fr; grid-template-rows: 1fr 1.15fr 1fr; align-items: center; gap: 4px; margin: 24px auto 0; }
.architecture-orbit::before, .architecture-orbit::after { position: absolute; z-index: 0; border: 1px dashed rgba(118, 99, 199, .32); border-radius: 50%; content: ""; }
.architecture-orbit::before { inset: 12px 30px; }
.architecture-orbit::after { inset: 36px 62px; }
.architecture-orbit span, .architecture-orbit strong { position: relative; z-index: 1; display: grid; place-items: center; min-height: 35px; padding: 5px; border: 1px solid rgba(118, 99, 199, .24); color: #62529f; background: rgba(255, 255, 255, .93); font-size: .51rem; font-weight: 850; letter-spacing: .07em; text-align: center; }
.architecture-orbit span:nth-child(1) { grid-area: 1 / 1; }
.architecture-orbit span:nth-child(2) { grid-area: 1 / 3; }
.architecture-orbit strong { grid-area: 2 / 2; min-height: 62px; border-color: rgba(118, 99, 199, .46); border-radius: 50%; color: #fff; background: #6f60b5; box-shadow: 0 0 0 7px rgba(118, 99, 199, .09); line-height: 1.25; }
.architecture-orbit span:nth-child(4) { grid-area: 3 / 1; }
.architecture-orbit span:nth-child(5) { grid-area: 3 / 3; }
.architecture-toolbox { position: relative; max-width: 510px; margin-top: 24px; border: 1px solid rgba(20, 116, 84, .3); background: rgba(255, 255, 255, .88); box-shadow: 7px 9px 0 rgba(20, 116, 84, .07); }
.architecture-toolbox::before { position: absolute; top: -9px; left: 50%; width: 74px; height: 9px; border: 1px solid rgba(20, 116, 84, .3); border-bottom: 0; background: #f1f7f3; content: ""; transform: translateX(-50%); }
.toolbox-lid { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 11px; color: #fff; background: #285f4d; }
.toolbox-lid strong { font-size: .58rem; letter-spacing: .12em; }
.toolbox-lid span { color: #d8eee5; font-family: Georgia, serif; font-size: .58rem; font-style: italic; }
.architecture-toolbox ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; }
.architecture-toolbox li { display: flex; min-width: 0; min-height: 63px; align-items: center; gap: 9px; padding: 9px 10px; border-right: 1px solid rgba(20, 116, 84, .13); border-bottom: 1px solid rgba(20, 116, 84, .13); }
.architecture-toolbox li:nth-child(even) { border-right: 0; }
.architecture-toolbox li:nth-last-child(-n + 2) { border-bottom: 0; }
.architecture-toolbox svg { width: 31px; height: 31px; flex: 0 0 auto; padding: 6px; color: #147454; background: rgba(20, 116, 84, .08); }
.architecture-toolbox svg path { fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.architecture-toolbox li > span { display: grid; min-width: 0; gap: 1px; }
.architecture-toolbox li strong { overflow-wrap: anywhere; color: #31483e; font-size: .61rem; font-weight: 820; line-height: 1.25; }
.architecture-toolbox li small { overflow-wrap: anywhere; color: #657a70; font-size: .49rem; line-height: 1.3; }
.running-operation { display: grid; gap: 0; margin-top: 25px; }
.run-state { display: grid; grid-template-columns: 31px minmax(0, 1fr); align-items: center; gap: 11px; padding: 13px 0; border-block: 1px solid rgba(20, 116, 84, .14); }
.run-state + .run-state { border-top: 0; }
.run-state > svg { width: 25px; height: 25px; color: #147454; }
.run-state path, .exception-alert path { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.run-state p { display: grid; gap: 2px; margin: 0; }
.run-state small { color: #147454; font-size: .48rem; font-weight: 850; letter-spacing: .1em; }
.run-state strong { color: #344a40; font-size: .68rem; line-height: 1.35; }
.exception-alert { display: grid; grid-template-columns: 31px minmax(0, 1fr); gap: 11px; margin: 11px 0; padding: 14px 13px; border-left: 3px solid #b97428; color: #9b5d1c; background: rgba(255, 245, 229, .88); box-shadow: 4px 6px 12px rgba(110, 72, 30, .07); }
.exception-alert > svg { width: 25px; height: 25px; margin-top: 2px; }
.exception-alert p { display: grid; gap: 4px; margin: 0; }
.exception-alert small { color: #a45f18; font-size: .47rem; font-weight: 900; letter-spacing: .09em; }
.exception-alert strong { color: #674526; font-size: .68rem; line-height: 1.35; }
.exception-alert span { color: #846348; font-size: .52rem; line-height: 1.4; }
.operation-promise { display: flex; min-height: 112px; align-items: center; justify-content: space-between; gap: 32px; padding: 27px 46px 30px; border-top: 1px solid rgba(34, 76, 59, .13); color: #87583c; background: #fbfcf8; }
.operation-promise p { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 18px; margin: 0; font-family: var(--sketch); font-size: 1.02rem; line-height: 1.4; transform: rotate(-.45deg); }
.operation-promise-circle { position: relative; z-index: 0; display: inline-block; padding: 7px 14px 8px; color: #70432d; font-size: 1.18em; font-weight: 600; white-space: nowrap; }
.operation-promise-circle::before, .operation-promise-circle::after { position: absolute; z-index: -1; content: ""; pointer-events: none; }
.operation-promise-circle::before { inset: -3px -12px -4px; border: 1.7px solid rgba(135, 88, 60, .82); border-radius: 49% 52% 47% 53% / 52% 46% 54% 48%; transform: rotate(-1.5deg); }
.operation-promise-circle::after { inset: -1px -14px -6px -10px; border: 1px solid rgba(135, 88, 60, .38); border-radius: 53% 47% 51% 49% / 46% 54% 48% 52%; transform: rotate(1.1deg); }
.operation-promise a { display: inline-flex; min-height: 42px; flex: 0 0 auto; align-items: center; gap: 9px; padding: 0 14px; border: 1px solid rgba(20, 116, 84, .3); border-radius: 12px; color: #147454; background: rgba(255, 255, 255, .68); font-size: .72rem; font-weight: 800; }
.operation-promise a:hover { border-color: rgba(20, 116, 84, .55); background: #fff; }

@media (max-width: 1040px) {
  .hero-copy { grid-template-columns: minmax(0, 1fr); gap: 38px; }
  .hero-copy-main { max-width: 780px; }
  .hero-start { width: min(100%, 720px); padding-top: 26px; padding-bottom: 20px; }
}

@media (max-width: 900px) {
  .operation-story-intro { grid-template-columns: 1fr; gap: 20px; padding: 38px 32px 32px; }
  .operation-story-intro > p { grid-column: auto; margin-bottom: -7px; }
  .operation-story-intro > span { max-width: 55ch; }
  .operation-track { grid-template-columns: 1fr; margin-inline: 14px; }
  .operation-phase { min-height: 0; padding: 34px 30px; border-right: 0; border-bottom: 1px solid rgba(34, 76, 59, .14); }
  .operation-phase:last-child { border-bottom: 0; }
  .operation-phase h3 { max-width: 24ch; }
  .architecture-orbit { margin-inline: 0; }
}

@media (max-width: 560px) {
  .site-header, .site-header.is-scrolled { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(248, 246, 239, .98); }
  .hero-copy { gap: 26px; padding-bottom: 16px; }
  .hero-start { padding: 24px 0 18px 24px; }
  .hero-start::before { top: 25px; }
  .hero-start li { grid-template-columns: 82px minmax(0, 1fr); gap: 10px; }
  .operation-story-intro { padding: 30px 20px 26px; }
  .operation-story-intro h2 { font-size: clamp(2.25rem, 11.8vw, 3.25rem); }
  .operation-track { margin-inline: 8px; }
  .operation-phase { padding: 30px 20px; }
  .operation-phase header { margin-bottom: 26px; }
  .operation-promise { align-items: flex-start; flex-direction: column; gap: 25px; padding: 28px 20px 24px; }
  .operation-promise p { align-items: flex-start; flex-direction: column; gap: 13px; }
  .operation-promise a { width: 100%; justify-content: center; }
}
