:root {
  --black: #050505;
  --black-soft: #090909;
  --graphite: #141414;
  --graphite-2: #1d1d1d;
  --ink: #11110f;
  --white: #ffffff;
  --warm-white: #f7f6f1;
  --cream: #efede5;
  --gray-100: #e8e6df;
  --gray-300: #c9c7c0;
  --gray-500: #8d8d87;
  --gray-700: #4d4d49;
  --yellow: #ffc400;
  --yellow-deep: #e3ad00;
  --yellow-pale: #fff2b6;
  --cyan: #5be7ff;
  --line-dark: rgba(255, 255, 255, .13);
  --line-light: rgba(5, 5, 5, .13);
  --shadow: 0 30px 90px rgba(0, 0, 0, .14);
  --glow: 0 0 70px rgba(255, 196, 0, .2);
  --container: 1320px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --radius-sm: .45rem;
  --radius-md: .8rem;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font-sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--warm-white);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.chat-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
p, h1, h2, h3, h4 { margin-top: 0; }
address { font-style: normal; }
::selection { color: var(--black); background: var(--yellow); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  color: var(--black);
  background: var(--yellow);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
.section-yellow :focus-visible, .section-warm :focus-visible, .section-light :focus-visible { outline-color: var(--black); }

.container { width: min(100% - (var(--gutter) * 2), var(--container)); margin-inline: auto; }
.section-light { background: var(--white); }
.section-warm { background: var(--warm-white); }
.section-dark { color: var(--white); background: var(--black); }
.section-graphite { color: var(--white); background: var(--graphite); }
.section-yellow { color: var(--black); background: var(--yellow); }

.scroll-progress { position: fixed; z-index: 1200; inset: 0 0 auto; height: 2px; pointer-events: none; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: var(--yellow); transform: scaleX(0); transform-origin: left; }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}
.site-header.is-scrolled { background: rgba(5, 5, 5, .88); border-color: var(--line-dark); backdrop-filter: blur(18px); }
.header-inner { position: relative; width: min(100% - (var(--gutter) * 2), var(--container)); min-height: 5.1rem; margin-inline: auto; display: flex; align-items: center; gap: 2rem; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 154px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.8vw, 2.4rem); margin-left: auto; }
.desktop-nav a { position: relative; color: rgba(255, 255, 255, .77); font-size: .91rem; font-weight: 650; text-decoration: none; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.5rem; height: 2px; background: var(--yellow); transition: right .3s var(--ease); }
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { right: 0; }
.nav-services { position: relative; }
.nav-services > a { display: inline-flex; align-items: center; gap: .45rem; }
.nav-services > a > span { color: var(--yellow); font-size: 1rem; transition: transform .25s var(--ease); }
.nav-services:hover > a > span, .nav-services:focus-within > a > span { transform: rotate(45deg); }
.mega-menu { position: absolute; top: calc(100% + 1.25rem); left: -5.5rem; width: min(52rem, calc(100vw - 4rem)); display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; padding: .75rem; border: 1px solid var(--line-dark); color: var(--white); background: #0c0c0c; box-shadow: 0 30px 80px rgba(0,0,0,.42); opacity: 0; visibility: hidden; transform: translateY(.65rem); transition: opacity .25s ease, visibility .25s ease, transform .25s var(--ease); }
.nav-services:hover .mega-menu, .nav-services:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu::before { content: ""; position: absolute; left: 5.2rem; bottom: 100%; width: 5rem; height: 1.4rem; }
.mega-menu > div { min-height: 12rem; display: flex; flex-direction: column; gap: .55rem; padding: 1rem; border-right: 1px solid var(--line-dark); background: rgba(255,255,255,.018); }
.mega-menu > div:nth-child(4) { border-right: 0; }
.mega-menu small { margin-bottom: .55rem; color: var(--yellow); font-family: var(--font-mono); font-size: .63rem; letter-spacing: .1em; text-transform: uppercase; }
.mega-menu a { color: rgba(255,255,255,.67); font-size: .78rem; font-weight: 600; }
.mega-menu a::after { display: none; }
.mega-menu a:hover { color: var(--white); }
.mega-menu .mega-all { grid-column: 1/-1; display: flex; align-items: center; justify-content: space-between; padding: .8rem 1rem; color: var(--black); background: var(--yellow); font-weight: 760; }
.header-cta { margin-left: .35rem; }
.menu-toggle { display: none; width: 3rem; height: 3rem; margin-left: auto; border: 1px solid var(--line-dark); color: inherit; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 1.2rem; height: 1px; margin: .36rem auto; background: currentColor; transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(.215rem) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-.215rem) rotate(-45deg); }
.mobile-menu { color: var(--white); background: rgba(5, 5, 5, .98); border-top: 1px solid var(--line-dark); padding: 1rem var(--gutter) 2rem; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: .9rem 0; border-bottom: 1px solid var(--line-dark); font-size: clamp(1.4rem, 6vw, 2.25rem); line-height: 1.2; text-decoration: none; }
.mobile-menu-meta { display: flex; flex-wrap: wrap; gap: 1rem 2rem; padding-top: 1.5rem; font-family: var(--font-mono); font-size: .78rem; }

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .86rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 780;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.button span { transition: transform .25s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:hover span { transform: translate(.18rem, -.18rem); }
.button-primary { color: var(--black); background: var(--yellow); box-shadow: 0 14px 40px rgba(255, 196, 0, .14); }
.button-primary:hover { background: #ffd027; box-shadow: 0 20px 55px rgba(255, 196, 0, .24); }
.button-dark { color: var(--white); background: var(--black); }
.button-dark:hover { color: var(--yellow); }
.button-small { min-height: 2.9rem; padding: .74rem 1.05rem; }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.35); background: transparent; }
.button-outline-light:hover { color: var(--black); background: var(--yellow); border-color: var(--yellow); }
.button-ghost { color: var(--white); border-color: var(--line-dark); background: transparent; }
.button-ghost:hover { border-color: var(--white); }

.text-link { display: inline-flex; align-items: center; gap: .65rem; border: 0; padding: 0 0 .22rem; color: var(--ink); background: transparent; border-bottom: 1px solid currentColor; font-size: .92rem; font-weight: 750; text-decoration: none; cursor: pointer; }
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translate(.2rem, -.2rem); }
.text-link-light { color: var(--white); }

.eyebrow { display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1.25rem; color: var(--gray-700); font-family: var(--font-mono); font-size: .76rem; font-weight: 700; letter-spacing: .12em; line-height: 1.2; text-transform: uppercase; }
.eyebrow-light { color: rgba(255,255,255,.57); }
.signal-dot { width: .48rem; height: .48rem; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 .32rem rgba(255,196,0,.12); }
.section-heading { margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.section-heading h2, .problems-heading h2, .measurement h2, .automation h2, .wyoming h2, .faq-heading h2, .project h2, .final-cta h2, .subpage-hero h1 {
  max-width: 16ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.65rem, 5.7vw, 5.75rem);
  font-weight: 780;
  letter-spacing: -.06em;
  line-height: .94;
}
.section-heading h2 em, .problems h2 em, .measurement h2 em, .automation h2 em, .faq-heading h2 em, .project h2 em, .final-cta h2 em, .subpage-hero h1 em { color: var(--yellow-deep); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.section-heading-dark h2 em, .measurement h2 em, .automation h2 em, .project h2 em { color: var(--yellow); }
.section-heading > p, .section-heading .heading-aside p { max-width: 37rem; color: var(--gray-700); }
.section-heading-dark > p { color: rgba(255,255,255,.62); }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(20rem, .58fr); gap: clamp(2rem, 7vw, 8rem); align-items: end; }
.heading-aside { padding-bottom: .4rem; }
.heading-aside p { margin-bottom: 1.5rem; font-size: 1.07rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 73% 28%, rgba(255,196,0,.13), transparent 27rem),
    linear-gradient(135deg, #050505 0%, #10100e 55%, #171307 100%);
}
.hero-grid { position: absolute; inset: 0; opacity: .19; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, #000 15%, transparent 96%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(12px); pointer-events: none; }
.hero-glow-one { top: 6rem; right: -8rem; width: 31rem; height: 31rem; background: radial-gradient(circle, rgba(255,196,0,.18), transparent 65%); transform: translate3d(var(--glow-x, 0px), var(--glow-y, 0px), 0); }
.hero-glow-two { bottom: 7%; left: 32%; width: 18rem; height: 18rem; background: radial-gradient(circle, rgba(255,255,255,.06), transparent 68%); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(29rem, .9fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: center; min-height: calc(100svh - 3.5rem); padding-block: 8.5rem 7rem; }
.hero-copy h1 { margin-bottom: 1.7rem; font-size: clamp(3.9rem, 7.4vw, 8.2rem); font-weight: 800; letter-spacing: -.075em; line-height: .84; }
.hero-copy h1 span { display: block; }
.text-gold { color: var(--yellow); font-family: Georgia, "Times New Roman", serif; font-size: .84em; font-style: italic; font-weight: 400; letter-spacing: -.055em; }
.hero-lede { max-width: 43rem; margin-bottom: 2.25rem; color: rgba(255,255,255,.7); font-size: clamp(1.03rem, 1.7vw, 1.22rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem 2rem; }

.growth-engine { position: relative; min-height: 35rem; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,196,0,.025)); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 40px 90px rgba(0,0,0,.38), var(--glow); backdrop-filter: blur(7px); transform: perspective(1200px) rotateY(var(--tilt-y, 0deg)) rotateX(var(--tilt-x, 0deg)); }
.growth-engine::before { content: ""; position: absolute; inset: 3.65rem 1.15rem 3.3rem; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 44px 44px; }
.engine-hud { position: absolute; z-index: 4; left: 1.15rem; right: 1.15rem; display: flex; justify-content: space-between; color: rgba(255,255,255,.5); font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; }
.engine-hud-top { top: 1.25rem; }
.engine-hud-bottom { bottom: 1.15rem; }
.hud-status { color: var(--yellow); }
.hud-status::before { content: ""; display: inline-block; width: .4rem; height: .4rem; margin-right: .45rem; border-radius: 50%; background: var(--yellow); animation: blink 2s infinite; }
.engine-orbit { position: absolute; z-index: 1; top: 50%; left: 50%; border: 1px solid rgba(255,196,0,.32); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-one { width: 22rem; height: 22rem; }
.orbit-two { width: 15rem; height: 15rem; border-style: dashed; animation: slow-spin 28s linear infinite; }
.engine-core { position: absolute; z-index: 3; top: 50%; left: 50%; width: 10.7rem; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--yellow); border-radius: 50%; color: var(--white); background: radial-gradient(circle at 50% 45%, rgba(255,196,0,.2), rgba(5,5,5,.94) 69%); box-shadow: 0 0 0 .75rem rgba(255,196,0,.035), 0 0 4rem rgba(255,196,0,.17); transform: translate(-50%, -50%); }
.engine-core::after { content: ""; position: absolute; width: .65rem; height: .65rem; right: .3rem; top: 50%; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 1.2rem var(--yellow); }
.core-kicker { color: rgba(255,255,255,.48); font-family: var(--font-mono); font-size: .61rem; letter-spacing: .09em; }
.engine-core strong { margin: .2rem 0 .08rem; color: var(--yellow); font-size: 1.45rem; letter-spacing: .1em; }
.engine-core small { max-width: 8.5rem; color: rgba(255,255,255,.48); font-size: .64rem; text-align: center; }
.engine-node { position: absolute; z-index: 5; display: grid; min-width: 6.6rem; padding: .7rem .8rem; border: 1px solid rgba(255,255,255,.2); color: var(--white); background: rgba(8,8,8,.84); font-family: var(--font-mono); font-size: .78rem; line-height: 1.2; text-decoration: none; box-shadow: 0 12px 35px rgba(0,0,0,.25); transition: color .25s ease, border-color .25s ease, transform .25s var(--ease), background .25s ease; }
.engine-node span { margin-bottom: .22rem; color: var(--yellow); font-size: .64rem; }
.engine-node:hover { color: var(--black); background: var(--yellow); border-color: var(--yellow); transform: translateY(-4px); }
.engine-node:hover span { color: var(--black); }
.node-search { top: 20%; left: 7%; }
.node-paid { top: 18%; right: 5%; }
.node-creative { top: 48%; left: 1%; }
.node-build { top: 48%; right: 1%; }
.node-data { bottom: 16%; left: 12%; }
.node-content { bottom: 14%; right: 9%; }
.engine-signal { position: absolute; z-index: 2; height: 1px; background: linear-gradient(90deg, transparent, var(--yellow), transparent); transform-origin: left; animation: signal 3.4s ease-in-out infinite; }
.signal-a { width: 34%; top: 35%; left: 20%; transform: rotate(21deg); }
.signal-b { width: 31%; top: 57%; left: 51%; transform: rotate(-19deg); animation-delay: .8s; }
.signal-c { width: 27%; bottom: 27%; left: 25%; transform: rotate(-35deg); animation-delay: 1.5s; }
.hero-ticker { position: absolute; z-index: 3; inset: auto 0 0; overflow: hidden; padding: .85rem 0; border-top: 1px solid var(--line-dark); background: rgba(0,0,0,.36); }
.ticker-track { display: flex; width: max-content; align-items: center; gap: 1.45rem; color: rgba(255,255,255,.68); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .13em; animation: ticker 28s linear infinite; }
.ticker-track i { width: .35rem; height: .35rem; border-radius: 50%; background: var(--yellow); }

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }
@keyframes slow-spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes signal { 0%,100%{opacity:.12; transform-origin:left} 50%{opacity:.9} }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Credibility and system */
.proof-rail { padding: clamp(3.2rem, 6vw, 5.2rem) 0; border-bottom: 1px solid var(--line-light); }
.proof-grid { display: grid; grid-template-columns: .65fr 1.5fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.proof-intro p { max-width: 27rem; margin: 0; font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 660; line-height: 1.35; }
.proof-facts { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; border-left: 1px solid var(--line-light); }
.proof-facts div { min-height: 7.6rem; display: flex; flex-direction: column; justify-content: space-between; padding: .35rem 1.25rem .35rem 1.45rem; border-right: 1px solid var(--line-light); }
.proof-facts dt { color: var(--gray-500); font-family: var(--font-mono); font-size: .71rem; letter-spacing: .08em; text-transform: uppercase; }
.proof-facts dd { margin: 0; font-size: .94rem; font-weight: 760; line-height: 1.3; }

.about { padding: clamp(6rem, 11vw, 10rem) 0; overflow: hidden; }
.system-map { position: relative; min-height: 34rem; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 1rem; padding: 2rem; border: 1px solid var(--line-light); background: linear-gradient(135deg, rgba(255,255,255,.76), rgba(255,196,0,.06)); box-shadow: var(--shadow); }
.system-map::before { content: "SYSTEM / 10TECH / 01"; position: absolute; top: 1rem; left: 1rem; color: var(--gray-500); font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; }
.system-axis { position: absolute; z-index: 0; background: linear-gradient(90deg, transparent, rgba(5,5,5,.22), transparent); }
.axis-horizontal { top: 50%; left: 8%; right: 8%; height: 1px; }
.axis-vertical { top: 9%; bottom: 9%; left: 50%; width: 1px; background: linear-gradient(transparent, rgba(5,5,5,.22), transparent); }
.system-chip { position: relative; z-index: 2; min-height: 10rem; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem; border: 1px solid rgba(5,5,5,.12); background: rgba(255,255,255,.67); transition: color .3s ease, background .3s ease, transform .3s var(--ease); }
.system-chip:hover { color: var(--white); background: var(--black); transform: translateY(-4px); }
.system-chip > span { position: absolute; top: 1rem; right: 1rem; color: var(--yellow-deep); font-family: var(--font-mono); font-size: .7rem; }
.system-chip strong { font-size: 1.45rem; letter-spacing: -.035em; }
.system-chip small { color: var(--gray-500); font-size: .78rem; }
.system-center { position: absolute; z-index: 3; top: 50%; left: 50%; width: 12.5rem; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1rem; border-radius: 50%; color: var(--white); background: var(--black); box-shadow: 0 0 0 1rem rgba(255,196,0,.1), 0 25px 55px rgba(0,0,0,.2); text-align: center; transform: translate(-50%,-50%); }
.system-center img { width: 3rem; margin-bottom: .8rem; }
.system-center strong { font-size: .95rem; line-height: 1.35; }
.chip-strategy { grid-area: 1/1; }
.chip-demand { grid-area: 1/2; opacity: .18; pointer-events: none; }
.chip-experience { grid-area: 1/3; }
.chip-content { grid-area: 2/1; }
.chip-measure { grid-area: 2/3; }

/* Services */
.services { padding: clamp(6.5rem, 12vw, 11rem) 0; background: radial-gradient(circle at 80% 28%, rgba(255,196,0,.09), transparent 27rem), var(--black); }
.services-interface { display: grid; grid-template-columns: minmax(16rem, .55fr) minmax(0, 1.45fr); border: 1px solid var(--line-dark); }
.service-tabs { display: flex; flex-direction: column; border-right: 1px solid var(--line-dark); }
.service-tabs button { position: relative; min-height: 4.5rem; display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border: 0; border-bottom: 1px solid var(--line-dark); color: rgba(255,255,255,.53); background: transparent; font-size: .94rem; font-weight: 660; text-align: left; cursor: pointer; transition: color .25s ease, background .25s ease, padding .25s var(--ease); }
.service-tabs button span { color: var(--gray-500); font-family: var(--font-mono); font-size: .68rem; }
.service-tabs button::after { content: "→"; margin-left: auto; opacity: 0; transform: translateX(-.7rem); transition: opacity .25s ease, transform .25s ease; }
.service-tabs button:hover, .service-tabs button[aria-selected="true"] { padding-left: 1.55rem; color: var(--black); background: var(--yellow); }
.service-tabs button:hover span, .service-tabs button[aria-selected="true"] span { color: var(--black); }
.service-tabs button:hover::after, .service-tabs button[aria-selected="true"]::after { opacity: 1; transform: translateX(0); }
.service-stage { min-height: 39rem; }
.service-panel { min-height: 39rem; grid-template-columns: minmax(0, .92fr) minmax(22rem, 1.08fr); align-items: stretch; }
.service-panel.is-active { display: grid; animation: panel-in .55s var(--ease); }
.service-panel[hidden] { display: none; }
.service-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4.5rem); }
.service-code { margin-bottom: 1.25rem; color: var(--yellow); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; }
.service-copy h3 { max-width: 13ch; margin-bottom: 1.2rem; font-size: clamp(2rem, 3.4vw, 3.8rem); font-weight: 760; letter-spacing: -.055em; line-height: 1; }
.service-copy p { max-width: 37rem; color: rgba(255,255,255,.64); }
.service-copy ul { display: grid; gap: .45rem; margin: 1rem 0 2rem; padding: 0; list-style: none; }
.service-copy li { position: relative; padding-left: 1.15rem; color: rgba(255,255,255,.82); font-size: .88rem; }
.service-copy li::before { content: ""; position: absolute; top: .72rem; left: 0; width: .4rem; height: 1px; background: var(--yellow); }
.service-copy .text-link { align-self: flex-start; }
.module-visual { position: relative; overflow: hidden; margin: 1.25rem; border: 1px solid var(--line-dark); background: linear-gradient(150deg, rgba(255,255,255,.04), rgba(255,196,0,.035)); }
.module-visual::before { content: ""; position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 42px 42px; }
.search-visual { display: grid; align-content: center; gap: .75rem; padding: clamp(1.25rem, 4vw, 3rem); }
.search-bar, .ranking-row { position: relative; z-index: 2; display: flex; align-items: center; border: 1px solid var(--line-dark); background: rgba(5,5,5,.84); }
.search-bar { gap: .75rem; min-height: 3.1rem; padding: .7rem 1rem; border-radius: 2rem; }
.search-bar > span { width: .8rem; height: .8rem; border: 2px solid var(--gray-500); border-radius: 50%; }
.search-bar b { color: rgba(255,255,255,.66); font-size: .82rem; font-weight: 600; }
.search-bar i { width: 1.4rem; height: 1.4rem; margin-left: auto; border-radius: 50%; background: var(--yellow); }
.ranking-row { gap: 1rem; padding: .9rem; }
.ranking-row > span { color: var(--gray-500); font-family: var(--font-mono); font-size: .7rem; }
.ranking-row div { display: grid; }
.ranking-row b { font-size: .86rem; }
.ranking-row small { color: var(--gray-500); font-size: .7rem; }
.ranking-row.featured { border-color: rgba(255,196,0,.65); transform: translateX(1rem); }
.ranking-row.featured > span { color: var(--yellow); }
.paid-visual { display: flex; flex-direction: column; justify-content: center; gap: .85rem; padding: clamp(1.5rem, 5vw, 4rem); }
.funnel-step { position: relative; z-index: 2; width: 85%; display: grid; grid-template-columns: 2.2rem 1fr; align-items: center; padding: 1rem; border: 1px solid var(--line-dark); background: rgba(5,5,5,.85); }
.funnel-step:nth-of-type(3) { width: 68%; margin-left: 8%; }
.funnel-step:nth-of-type(5) { width: 52%; margin-left: 16%; }
.funnel-step span { grid-row: 1/3; color: var(--yellow); font-family: var(--font-mono); font-size: .7rem; }
.funnel-step b { font-size: 1rem; }
.funnel-step small { color: var(--gray-500); font-size: .72rem; }
.funnel-step.active { color: var(--black); background: var(--yellow); border-color: var(--yellow); }
.funnel-step.active span, .funnel-step.active small { color: var(--black); }
.funnel-line { position: relative; z-index: 2; width: 1px; height: 2rem; margin-left: 2.1rem; background: var(--yellow); }
.web-visual { display: flex; flex-direction: column; justify-content: center; padding: clamp(1.25rem, 4vw, 3rem); }
.browser-top, .browser-layout, .device-labels { position: relative; z-index: 2; }
.browser-top { display: flex; align-items: center; gap: .45rem; min-height: 2.5rem; padding: .6rem .8rem; border: 1px solid var(--line-dark); background: rgba(5,5,5,.92); }
.browser-top i { width: .45rem; height: .45rem; border-radius: 50%; background: var(--gray-700); }
.browser-top i:first-child { background: var(--yellow); }
.browser-top span { margin-left: auto; margin-right: auto; color: var(--gray-500); font-family: var(--font-mono); font-size: .67rem; }
.browser-layout { min-height: 16rem; display: grid; grid-template-columns: 1fr .9fr; gap: 1.2rem; padding: 2rem; border: 1px solid var(--line-dark); border-top: 0; background: rgba(12,12,12,.91); }
.browser-copy { display: flex; flex-direction: column; justify-content: center; gap: .65rem; }
.browser-copy span { width: 3rem; height: .35rem; background: var(--yellow); }
.browser-copy strong { width: 94%; height: .8rem; background: rgba(255,255,255,.73); }
.browser-copy strong:nth-child(3) { width: 68%; }
.browser-copy button { width: 4.6rem; height: 1.7rem; margin-top: .8rem; border: 0; background: var(--yellow); }
.browser-system { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; align-content: center; }
.browser-system i { aspect-ratio: 1; border: 1px solid var(--line-dark); background: linear-gradient(135deg, rgba(255,196,0,.35), transparent); }
.device-labels { display: flex; justify-content: space-between; padding-top: .8rem; color: var(--gray-500); font-family: var(--font-mono); font-size: .64rem; }
.creative-visual { display: grid; grid-template-columns: 1fr .55fr; grid-template-rows: 1fr auto; gap: .8rem; align-content: center; padding: clamp(1.5rem, 4vw, 3.2rem); }
.type-sample, .swatches, .grid-mark { position: relative; z-index: 2; border: 1px solid var(--line-dark); background: rgba(5,5,5,.87); }
.type-sample { grid-row: 1/3; display: flex; flex-direction: column; justify-content: center; padding: 1.5rem; }
.type-sample small { color: var(--yellow); font-family: var(--font-mono); font-size: .65rem; }
.type-sample strong { font-size: clamp(5rem, 10vw, 8rem); line-height: .95; letter-spacing: -.1em; }
.type-sample span { color: rgba(255,255,255,.56); }
.swatches { display: grid; grid-template-columns: 1fr 1fr; gap: .3rem; padding: .5rem; }
.swatches i { aspect-ratio: 1; background: var(--white); }
.swatches i:nth-child(2) { background: var(--yellow); }.swatches i:nth-child(3) { background: var(--gray-700); }.swatches i:nth-child(4) { background: var(--black); border: 1px solid var(--line-dark); }
.grid-mark { display: flex; align-items: center; justify-content: center; min-height: 7rem; color: var(--black); background: var(--yellow); }
.grid-mark span { font-size: 3.5rem; font-weight: 850; letter-spacing: -.12em; }.grid-mark b { margin-left: -.75rem; font-size: 1rem; }
.content-visual { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.7rem; padding: 3rem; }
.content-source { position: relative; z-index: 2; width: min(90%, 24rem); display: grid; padding: 1.3rem; border: 1px solid var(--yellow); background: rgba(5,5,5,.9); box-shadow: var(--glow); }
.content-source::after { content: ""; position: absolute; top: 100%; left: 50%; width: 1px; height: 2.7rem; background: var(--yellow); }
.content-source span { color: var(--yellow); font-family: var(--font-mono); font-size: .68rem; }.content-source b { font-size: 1.2rem; }
.content-branches { position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: repeat(4,1fr); gap: .5rem; }
.content-branches::before { content: ""; position: absolute; top: -.8rem; left: 11%; right: 11%; height: 1px; background: rgba(255,196,0,.55); }
.content-branches span { padding: 1rem .35rem; border: 1px solid var(--line-dark); background: rgba(5,5,5,.86); color: rgba(255,255,255,.7); font-family: var(--font-mono); font-size: .65rem; text-align: center; }
.tech-visual { display: grid; align-content: center; gap: .65rem; padding: clamp(1.5rem, 5vw, 4rem); }
.code-line { position: relative; z-index: 2; display: grid; grid-template-columns: 2.3rem 1fr auto; padding: .9rem 1rem; border: 1px solid var(--line-dark); background: rgba(5,5,5,.84); font-family: var(--font-mono); }
.code-line span { color: var(--gray-500); font-size: .68rem; }.code-line b { color: var(--yellow); font-size: .8rem; }.code-line i { color: rgba(255,255,255,.5); font-size: .75rem; font-style: normal; }
.code-line.active { transform: translateX(1rem); color: var(--black); background: var(--yellow); border-color: var(--yellow); }.code-line.active span,.code-line.active b,.code-line.active i { color: var(--black); }
.strategy-visual { display: grid; place-items: center; }
.strategy-ring { position: relative; z-index: 2; width: min(78%, 24rem); aspect-ratio: 1; border: 1px solid rgba(255,196,0,.55); border-radius: 50%; animation: slow-spin 30s linear infinite; }
.strategy-ring::before, .strategy-ring::after { content: ""; position: absolute; inset: 17%; border: 1px dashed rgba(255,255,255,.2); border-radius: 50%; }.strategy-ring::after { inset: 35%; border-style: solid; border-color: var(--yellow); background: rgba(255,196,0,.08); }
.strategy-ring span, .strategy-ring strong { position: absolute; z-index: 2; transform: translate(-50%,-50%); font-family: var(--font-mono); font-size: .68rem; }
.strategy-ring span:nth-child(1){top:7%;left:50%}.strategy-ring span:nth-child(2){top:50%;left:94%}.strategy-ring span:nth-child(3){top:93%;left:50%}.strategy-ring span:nth-child(4){top:50%;left:7%}.strategy-ring strong{top:50%;left:50%;color:var(--yellow);font-size:1rem;letter-spacing:.12em}
.section-link-row { display: flex; justify-content: flex-end; margin-top: 2rem; }
@keyframes panel-in { from { opacity:0; transform:translateY(14px) } to { opacity:1; transform:translateY(0) } }

/* Problems, measurement, process */
.problems { padding: clamp(6.5rem, 11vw, 10rem) 0; }
.problems-layout { display: grid; grid-template-columns: .62fr 1.38fr; gap: clamp(3rem, 8vw, 8rem); }
.problems-heading { position: sticky; top: 8rem; align-self: start; }
.problems-heading h2 { max-width: 11ch; }
.problems-heading p { color: var(--gray-500); }
.problem-list { border-top: 1px solid var(--line-light); }
.problem-item { width: 100%; display: grid; grid-template-columns: 2.6rem 1fr auto; align-items: center; gap: 1rem; padding: 1.55rem 0; border: 0; border-bottom: 1px solid var(--line-light); color: var(--ink); background: transparent; text-align: left; cursor: pointer; }
.problem-num { color: var(--gray-500); font-family: var(--font-mono); font-size: .7rem; }
.problem-question { font-size: clamp(1.15rem, 2.2vw, 1.75rem); font-weight: 720; letter-spacing: -.03em; }
.problem-toggle { width: 2.2rem; height: 2.2rem; display: grid; place-items: center; border: 1px solid var(--line-light); border-radius: 50%; font-size: 1.3rem; transition: transform .3s var(--ease), color .25s ease, background .25s ease; }
.problem-answer { grid-column: 2/4; max-height: 0; overflow: hidden; max-width: 45rem; color: var(--gray-700); opacity: 0; transition: max-height .45s var(--ease), opacity .3s ease, padding .3s ease; }
.problem-answer a { color: var(--ink); font-weight: 750; }
.problem-item.is-open .problem-toggle { color: var(--black); background: var(--yellow); border-color: var(--yellow); transform: rotate(45deg); }
.problem-item.is-open .problem-answer { max-height: 8rem; padding-bottom: .45rem; opacity: 1; }

.measurement { padding: clamp(6.5rem, 11vw, 10rem) 0; background: radial-gradient(circle at 15% 20%, rgba(255,196,0,.09), transparent 25rem), var(--graphite); }
.measurement-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.measurement-copy > p { max-width: 38rem; color: rgba(255,255,255,.62); }
.metric-list { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 2rem; }
.metric-list span { padding: .48rem .7rem; border: 1px solid var(--line-dark); color: rgba(255,255,255,.72); font-family: var(--font-mono); font-size: .69rem; }
.signal-console { position: relative; padding: 1rem; border: 1px solid var(--line-dark); background: rgba(4,4,4,.55); box-shadow: 0 32px 70px rgba(0,0,0,.26); }
.console-top { display: flex; align-items: center; justify-content: space-between; padding: .55rem .65rem 1.1rem; border-bottom: 1px solid var(--line-dark); color: var(--gray-500); font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; }
.console-top i { width: .5rem; height: .5rem; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 1rem var(--yellow); }
.console-line { display: grid; grid-template-columns: 2.3rem 1fr auto; align-items: center; gap: .75rem; padding: .9rem .65rem; border-bottom: 1px solid var(--line-dark); }
.console-line > span { color: var(--gray-500); font-family: var(--font-mono); font-size: .68rem; }
.console-line div { display: grid; }.console-line b { font-size: .85rem; }.console-line small { color: var(--gray-500); font-size: .72rem; }
.console-line > i { padding: .3rem .5rem; border: 1px solid var(--line-dark); color: rgba(255,255,255,.45); font-family: var(--font-mono); font-size: .63rem; font-style: normal; }
.console-line > i.state-complete { color: var(--yellow); border-color: rgba(255,196,0,.42); }.console-line > i.state-active { color: var(--cyan); border-color: rgba(91,231,255,.35); }
.console-graph { height: 9rem; display: flex; align-items: end; gap: .45rem; padding: 1.35rem .65rem .4rem; }
.console-graph span { flex: 1; height: var(--h); border: 1px solid rgba(255,196,0,.38); background: linear-gradient(to top, rgba(255,196,0,.42), rgba(255,196,0,.04)); transition: height .7s var(--ease); }

.process { padding: clamp(6.5rem, 11vw, 10rem) 0; }
.process-line { position: relative; display: grid; grid-template-columns: repeat(7, 1fr); margin: 0; padding: 0; list-style: none; }
.process-line::before { content: ""; position: absolute; top: 1.15rem; left: 4%; right: 4%; height: 1px; background: var(--line-light); }
.process-line li { position: relative; padding: 0 1rem 0 0; }
.process-line li > span { position: relative; z-index: 2; width: 2.3rem; height: 2.3rem; display: grid; place-items: center; margin-bottom: 1.4rem; border: 1px solid var(--line-light); border-radius: 50%; background: var(--warm-white); color: var(--gray-500); font-family: var(--font-mono); font-size: .68rem; transition: color .25s ease, background .25s ease, transform .25s ease; }
.process-line li:hover > span { color: var(--black); background: var(--yellow); border-color: var(--yellow); transform: scale(1.08); }
.process-line strong { display: block; margin-bottom: .55rem; font-size: 1rem; }
.process-line p { color: var(--gray-700); font-size: .82rem; line-height: 1.5; }

/* Automation, industries, local */
.automation { padding: clamp(6.5rem, 11vw, 10rem) 0; overflow: hidden; }
.automation-layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.automation-copy > p { max-width: 39rem; color: rgba(255,255,255,.64); }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem 1rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.35rem; color: rgba(255,255,255,.8); font-size: .86rem; }
.check-list li::before { content: "↗"; position: absolute; left: 0; color: var(--yellow); }
.automation-visual { position: relative; min-height: 32rem; border: 1px solid var(--line-dark); background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,196,0,.03)); }
.automation-visual::before { content: "WORKFLOW / CONNECTED"; position: absolute; top: 1rem; left: 1rem; color: var(--gray-500); font-family: var(--font-mono); font-size: .67rem; letter-spacing: .08em; }
.automation-visual::after { content: ""; position: absolute; inset: 3.2rem 1rem 1rem; opacity: .27; background-image: linear-gradient(rgba(255,255,255,.09) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.09) 1px,transparent 1px); background-size: 45px 45px; }
.workflow-node { position: absolute; z-index: 2; width: 7.7rem; min-height: 5.1rem; display: grid; align-content: center; padding: .7rem; border: 1px solid var(--line-dark); background: rgba(5,5,5,.92); box-shadow: 0 12px 30px rgba(0,0,0,.28); }
.workflow-node span { position: absolute; top: .5rem; right: .55rem; color: var(--yellow); font-family: var(--font-mono); font-size: .62rem; }.workflow-node b { font-size: .86rem; }.workflow-node small { color: var(--gray-500); font-size: .7rem; }
.workflow-research { top: 18%; left: 8%; }.workflow-campaign { top: 18%; right: 8%; }.workflow-site { top: 45%; left: 50%; transform: translateX(-50%); border-color: var(--yellow); box-shadow: var(--glow); }.workflow-lead { bottom: 10%; left: 8%; }.workflow-report { bottom: 10%; right: 8%; }
.workflow-path { position: absolute; z-index: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--yellow), transparent); transform-origin: left; }.path-one{top:34%;left:25%;width:28%;transform:rotate(22deg)}.path-two{top:34%;right:22%;width:28%;transform:rotate(-24deg)}.path-three{bottom:28%;left:29%;width:25%;transform:rotate(-28deg)}.path-four{bottom:28%;right:27%;width:25%;transform:rotate(30deg)}
.workflow-pulse { position: absolute; z-index: 3; top: 51%; left: 50%; width: .7rem; height: .7rem; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 2rem var(--yellow); transform: translate(-50%,-50%); animation: blink 1.8s infinite; }

.industries { padding: clamp(6.5rem, 11vw, 10rem) 0; }
.industry-list { border-top: 1px solid var(--line-light); }
.industry-list article { display: grid; grid-template-columns: 3rem 1fr auto; align-items: center; gap: 1rem; min-height: 7.4rem; border-bottom: 1px solid var(--line-light); transition: padding .3s var(--ease), color .3s ease, background .3s ease; }
.industry-list article:hover { margin-inline: calc(var(--gutter) * -.35); padding-inline: calc(var(--gutter) * .35); color: var(--white); background: var(--black); }
.industry-list article > span { color: var(--gray-500); font-family: var(--font-mono); font-size: .7rem; }.industry-list h3 { margin: 0 0 .1rem; font-size: clamp(1.35rem, 2.6vw, 2.1rem); letter-spacing: -.04em; }.industry-list p { margin: 0; color: var(--gray-500); font-size: .82rem; }.industry-list article > b { max-width: 18rem; color: var(--gray-700); font-family: var(--font-mono); font-size: .7rem; font-weight: 500; text-align: right; }.industry-list article:hover > b { color: var(--yellow); }

.wyoming { position: relative; overflow: hidden; padding: clamp(6.5rem, 11vw, 10rem) 0; }
.wyoming::before { content: "WY"; position: absolute; right: -2vw; bottom: -18%; color: rgba(5,5,5,.065); font-size: min(38vw, 34rem); font-weight: 900; letter-spacing: -.14em; line-height: 1; pointer-events: none; }
.wyoming-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.wyoming-copy p { max-width: 37rem; margin-bottom: 2rem; }
.location-system { border: 1px solid rgba(5,5,5,.3); background: rgba(255,255,255,.18); }
.location-core { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border-bottom: 1px solid rgba(5,5,5,.3); }.location-core img { width: 2.9rem; padding: .35rem; background: var(--black); }.location-core strong { font-size: 1.35rem; letter-spacing: .08em; }.location-core small { margin-left: auto; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .08em; }
.location-row { display: grid; grid-template-columns: 2.8rem 1fr auto; align-items: center; min-height: 4.6rem; padding: .85rem 1.25rem; border-bottom: 1px solid rgba(5,5,5,.25); transition: color .25s ease, background .25s ease, transform .25s var(--ease); }.location-row:last-child { border-bottom: 0; }.location-row:hover { color: var(--white); background: var(--black); transform: translateX(.35rem); }.location-row span { font-family: var(--font-mono); font-size: .68rem; }.location-row b { font-size: 1.05rem; }.location-row small { font-size: .72rem; }

/* FAQ and form */
.faq { padding: clamp(6.5rem, 11vw, 10rem) 0; }
.faq-layout { display: grid; grid-template-columns: .58fr 1.42fr; gap: clamp(3rem, 8vw, 8rem); }
.faq-heading { position: sticky; top: 8rem; align-self: start; }
.faq-heading p { max-width: 24rem; color: var(--gray-700); }
.faq-list { border-top: 1px solid var(--line-light); }
.faq-list details { border-bottom: 1px solid var(--line-light); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.45rem 0; font-size: 1.04rem; font-weight: 700; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 2rem; height: 2rem; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid var(--line-light); border-radius: 50%; transition: transform .3s var(--ease), background .25s ease; }
.faq-list details[open] summary span { background: var(--yellow); transform: rotate(45deg); }
.faq-list details > div { overflow: hidden; }
.faq-list details p { max-width: 48rem; margin: 0; padding: 0 3.5rem 1.5rem 0; color: var(--gray-700); }
.faq-list details a { font-weight: 750; }

.project { padding: clamp(6.5rem, 11vw, 10rem) 0; background: radial-gradient(circle at 18% 30%, rgba(255,196,0,.1), transparent 30rem), var(--black); }
.project-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.project-intro { position: sticky; top: 8rem; }
.project-intro > p { max-width: 34rem; color: rgba(255,255,255,.61); }
.contact-direct { display: grid; margin: 2.2rem 0; border-top: 1px solid var(--line-dark); }
.contact-direct a { display: grid; grid-template-columns: 4rem 1fr auto; align-items: center; gap: .8rem; padding: 1rem 0; border-bottom: 1px solid var(--line-dark); text-decoration: none; transition: padding .25s var(--ease), color .25s ease; }
.contact-direct a:hover { padding-left: .5rem; color: var(--yellow); }
.contact-direct span { color: var(--gray-500); font-family: var(--font-mono); font-size: .66rem; text-transform: uppercase; }.contact-direct strong { font-size: .92rem; }.contact-direct i { font-style: normal; }
.project-intro address { color: rgba(255,255,255,.48); font-size: .82rem; }
.project-form-shell { min-height: 42rem; padding: clamp(1.4rem, 4vw, 3rem); border: 1px solid var(--line-dark); background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,196,0,.018)); box-shadow: 0 35px 80px rgba(0,0,0,.25); }
.form-progress { display: grid; grid-template-columns: repeat(5,1fr); margin-bottom: 2.5rem; }
.form-progress span { position: relative; padding-bottom: .75rem; border-bottom: 1px solid var(--line-dark); color: var(--gray-500); font-family: var(--font-mono); font-size: .69rem; }
.form-progress span::after { content: ""; position: absolute; bottom: -1px; left: 0; width: 0; height: 2px; background: var(--yellow); transition: width .35s var(--ease); }
.form-progress span.is-active, .form-progress span.is-complete { color: var(--yellow); }.form-progress span.is-active::after, .form-progress span.is-complete::after { width: 100%; }
.form-step { min-width: 0; margin: 0; padding: 0; border: 0; animation: panel-in .45s var(--ease); }
.form-step[hidden] { display: none; }
.form-step legend { display: grid; margin-bottom: 2rem; }.form-step legend small { color: var(--yellow); font-family: var(--font-mono); font-size: .69rem; letter-spacing: .1em; }.form-step legend strong { margin-top: .35rem; font-size: clamp(1.65rem, 3vw, 2.4rem); letter-spacing: -.04em; line-height: 1.15; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: grid; gap: .55rem; }
.field-full { grid-column: 1/-1; }
.field > span { color: rgba(255,255,255,.72); font-size: .78rem; font-weight: 650; }.field > span b { color: var(--yellow); }
.field input, .field textarea, .field select { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.24); border-radius: 0; padding: .75rem 0; color: var(--white); background: transparent; outline: 0; font-size: .95rem; transition: border-color .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 9rem; resize: vertical; }.field select { cursor: pointer; }.field select option { color: var(--ink); background: var(--white); }.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.31); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--yellow); box-shadow: 0 1px 0 var(--yellow); }.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #ff7878; }
.form-help { margin-top: -1rem; color: var(--gray-500); font-size: .78rem; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.choice-grid label { position: relative; }
.choice-grid input { position: absolute; inset: 0 auto auto 0; opacity: 0; pointer-events: none; }
.choice-grid span { min-height: 3.1rem; display: flex; align-items: center; padding: .7rem .85rem; border: 1px solid var(--line-dark); color: rgba(255,255,255,.68); background: rgba(255,255,255,.02); font-size: .8rem; cursor: pointer; transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease); }
.choice-grid span::after { content: "+"; margin-left: auto; font-size: 1rem; }
.choice-grid input:checked + span { color: var(--black); background: var(--yellow); border-color: var(--yellow); transform: translateY(-2px); }.choice-grid input:checked + span::after { content: "✓"; }
.choice-grid input:focus-visible + span { outline: 3px solid var(--yellow); outline-offset: 3px; }
.form-lower-fields { margin-top: 1.5rem; }
.consent { display: flex; gap: .75rem; align-items: flex-start; margin-top: 1.2rem; color: rgba(255,255,255,.6); font-size: .75rem; }.consent input { width: 1rem; height: 1rem; flex: 0 0 auto; margin-top: .2rem; accent-color: var(--yellow); }.consent a { color: var(--white); }
.form-note { display: flex; gap: .8rem; margin-top: 1.2rem; padding: .8rem; border-left: 2px solid var(--yellow); background: rgba(255,196,0,.05); }.form-note > span { color: var(--yellow); }.form-note p { margin: 0; color: rgba(255,255,255,.5); font-size: .72rem; }
.form-error { min-height: 1.5rem; margin-top: 1rem; color: #ff9696; font-size: .76rem; }
.form-actions { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1rem; }.form-actions .button:last-child { margin-left: auto; }
.form-success { min-height: 34rem; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }.form-success[hidden] { display: none; }.success-mark { width: 4rem; height: 4rem; display: grid; place-items: center; margin-bottom: 1.4rem; border-radius: 50%; color: var(--black); background: var(--yellow); font-size: 1.6rem; }.form-success small { color: var(--yellow); font-family: var(--font-mono); letter-spacing: .1em; }.form-success h3 { margin: .65rem 0; font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.05em; }.form-success p { max-width: 34rem; color: rgba(255,255,255,.62); }.form-success > div { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }

.final-cta { position: relative; overflow: hidden; padding: clamp(6.5rem, 12vw, 11rem) 0; background: radial-gradient(circle at 70% 25%, rgba(255,196,0,.42), transparent 28rem), linear-gradient(135deg, var(--white), #f1ead2); }
.final-cta::after { content: "10"; position: absolute; right: -4vw; bottom: -25%; color: rgba(5,5,5,.045); font-size: min(42vw, 38rem); font-weight: 900; letter-spacing: -.18em; line-height: 1; }
.final-cta-inner { position: relative; z-index: 2; text-align: center; }
.final-cta h2 { max-width: 13ch; margin-inline: auto; }.final-cta h2 em { color: var(--black); }
.final-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.5rem 2rem; }

/* Footer and chat */
.site-footer { color: var(--white); background: var(--black); }
.footer-top { display: grid; grid-template-columns: 1.2fr repeat(3, .65fr); gap: clamp(2rem, 6vw, 6rem); padding-block: 5.5rem 4.5rem; }
.footer-brand img { width: 9.6rem; margin-bottom: 1.2rem; }.footer-brand p { max-width: 18rem; color: rgba(255,255,255,.5); font-size: .82rem; }.footer-brand > a { color: var(--yellow); font-family: var(--font-mono); font-size: .72rem; text-decoration: none; }
.footer-column { display: grid; align-content: start; gap: .62rem; }.footer-column h2 { margin-bottom: .8rem; color: var(--gray-500); font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }.footer-column a { color: rgba(255,255,255,.7); font-size: .82rem; text-decoration: none; }.footer-column a:hover { color: var(--yellow); }.footer-column address { margin-top: .5rem; color: rgba(255,255,255,.45); font-size: .76rem; line-height: 1.65; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-block: 1.25rem; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.38); font-family: var(--font-mono); font-size: .67rem; }.footer-bottom > div { display: flex; gap: 1.25rem; }.footer-bottom a { text-decoration: none; }.footer-bottom a:hover { color: var(--yellow); }

.chat-launcher { position: fixed; z-index: 950; right: 1.35rem; bottom: 1.35rem; display: flex; align-items: center; gap: .65rem; min-height: 3.35rem; padding: .75rem 1rem; border: 1px solid rgba(5,5,5,.24); border-radius: 3rem; color: var(--black); background: var(--yellow); box-shadow: 0 18px 50px rgba(0,0,0,.24); font-size: .78rem; font-weight: 780; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s ease; }.chat-launcher:hover { transform: translateY(-3px); box-shadow: 0 24px 60px rgba(0,0,0,.32); }.chat-icon { position: relative; width: 1.25rem; height: 1rem; border: 2px solid var(--black); border-radius: .2rem; }.chat-icon::after { content: ""; position: absolute; left: .15rem; bottom: -.32rem; width: .3rem; height: .3rem; border-left: 2px solid var(--black); border-bottom: 2px solid var(--black); transform: skew(-20deg); }
.chat-panel { position: fixed; z-index: 1100; right: 1.35rem; bottom: 5.4rem; width: min(26rem, calc(100vw - 2rem)); max-height: min(43rem, calc(100svh - 7rem)); overflow: auto; border: 1px solid var(--line-dark); color: var(--white); background: #0c0c0c; box-shadow: 0 30px 90px rgba(0,0,0,.45); animation: chat-in .35s var(--ease); }.chat-panel[hidden] { display: none; }
.chat-header { display: flex; justify-content: space-between; gap: 1rem; padding: 1.25rem; border-bottom: 1px solid var(--line-dark); background: linear-gradient(135deg, rgba(255,196,0,.09), transparent); }.chat-header small { color: var(--yellow); font-family: var(--font-mono); font-size: .64rem; letter-spacing: .08em; }.chat-header h2 { margin: .65rem 0 0; font-size: 1.35rem; letter-spacing: -.035em; line-height: 1.15; }.chat-header .signal-dot { display: inline-block; margin-right: .5rem; }.chat-close { width: 2.35rem; height: 2.35rem; border: 1px solid var(--line-dark); border-radius: 50%; color: var(--white); background: transparent; font-size: 1.35rem; cursor: pointer; }.chat-close:hover { color: var(--black); background: var(--yellow); }
.chat-body { padding: 1.25rem; }.chat-body > p { color: rgba(255,255,255,.55); font-size: .82rem; }.chat-options { display: grid; gap: .5rem; }.chat-options button { display: flex; justify-content: space-between; align-items: center; min-height: 3.2rem; padding: .75rem .85rem; border: 1px solid var(--line-dark); color: rgba(255,255,255,.78); background: transparent; font-size: .8rem; text-align: left; cursor: pointer; }.chat-options button:hover { color: var(--black); background: var(--yellow); border-color: var(--yellow); }.chat-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: 1rem; }.chat-actions a { padding: .72rem; border: 1px solid var(--line-dark); color: var(--yellow); font-size: .72rem; text-align: center; text-decoration: none; }.chat-actions a:hover { color: var(--black); background: var(--yellow); }.chat-footer { display: flex; justify-content: space-between; gap: .75rem; padding: .8rem 1.25rem; border-top: 1px solid var(--line-dark); color: var(--gray-500); font-family: var(--font-mono); font-size: .58rem; }.chat-footer a { color: inherit; }
.mobile-contact-bar { display: none; }
@keyframes chat-in { from { opacity:0; transform:translateY(1rem) scale(.97) } to { opacity:1; transform:none } }

/* Subpages */
.subpage-body { background: var(--warm-white); }
.subpage-hero { position: relative; overflow: hidden; padding: 10rem 0 6rem; color: var(--white); background: radial-gradient(circle at 75% 20%, rgba(255,196,0,.18), transparent 25rem), var(--black); }
.subpage-hero::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.16) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.16) 1px,transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(#000,transparent); }
.subpage-hero .container { position: relative; z-index: 1; }.subpage-hero h1 { max-width: 14ch; }.subpage-hero p { max-width: 46rem; color: rgba(255,255,255,.65); font-size: 1.1rem; }.breadcrumb { display: flex; gap: .55rem; margin-bottom: 2rem; color: rgba(255,255,255,.45); font-family: var(--font-mono); font-size: .7rem; }.breadcrumb a { color: var(--white); text-decoration: none; }
.content-page { padding: 5rem 0 8rem; }.content-narrow { width: min(100% - (var(--gutter)*2), 840px); margin-inline: auto; }.content-page h2 { margin: 3rem 0 1rem; font-size: clamp(1.75rem, 3vw, 2.6rem); letter-spacing: -.04em; }.content-page h3 { margin: 2rem 0 .7rem; font-size: 1.25rem; }.content-page p, .content-page li { color: var(--gray-700); }.content-page a { font-weight: 700; }.content-page ul { padding-left: 1.2rem; }
.service-directory { padding: 6rem 0 8rem; }.service-category { display: grid; grid-template-columns: .45fr 1.55fr; gap: 2rem; padding: 3rem 0; border-top: 1px solid var(--line-light); }.service-category > div:first-child span { color: var(--yellow-deep); font-family: var(--font-mono); font-size: .7rem; }.service-category h2 { margin: .4rem 0; font-size: clamp(2rem,4vw,4rem); letter-spacing: -.055em; line-height: 1; }.service-category-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }.service-card { padding: 1.5rem; border: 1px solid var(--line-light); background: var(--white); transition: transform .25s var(--ease), color .25s ease, background .25s ease; }.service-card:hover { color: var(--white); background: var(--black); transform: translateY(-4px); }.service-card h3 { font-size: 1.1rem; }.service-card p { color: var(--gray-700); font-size: .84rem; }.service-card:hover p { color: rgba(255,255,255,.6); }
.about-principles { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 3rem; background: var(--line-light); border: 1px solid var(--line-light); }.about-principles article { padding: 1.5rem; background: var(--white); }.about-principles span { color: var(--yellow-deep); font-family: var(--font-mono); font-size: .7rem; }.about-principles h3 { margin: .65rem 0; font-size: 1.2rem; }.about-principles p { font-size: .84rem; }

@media (max-width: 1100px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .hero-layout { grid-template-columns: 1fr; padding-top: 9.5rem; }
  .hero-copy { max-width: 58rem; }
  .growth-engine { width: min(100%, 44rem); margin-inline: auto; }
  .proof-grid, .measurement-layout, .automation-layout, .wyoming-layout { grid-template-columns: 1fr; }
  .proof-facts { border-top: 1px solid var(--line-light); border-left: 0; padding-top: 1.5rem; }
  .services-interface { grid-template-columns: 1fr; }
  .service-tabs { display: grid; grid-template-columns: repeat(4,1fr); border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .service-tabs button { min-height: 4rem; border-right: 1px solid var(--line-dark); }
  .service-panel { grid-template-columns: 1fr 1fr; }
  .problems-layout, .faq-layout, .project-layout { grid-template-columns: .75fr 1.25fr; gap: 3rem; }
  .process-line { grid-template-columns: repeat(4,1fr); gap: 2rem .5rem; }
  .process-line::before { display: none; }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }.footer-contact { grid-column: 2; }
}

@media (max-width: 800px) {
  :root { --gutter: 1.15rem; }
  body { padding-bottom: 3.65rem; }
  .header-inner { min-height: 4.45rem; }
  .brand img { width: 136px; }
  .hero { min-height: auto; }
  .hero-layout { padding-block: 7.7rem 6.8rem; }
  .hero-copy h1 { font-size: clamp(3.5rem, 17vw, 6rem); }
  .growth-engine { min-height: 31rem; }
  .orbit-one { width: 18rem; height: 18rem; }.orbit-two { width: 12rem; height: 12rem; }
  .engine-node { min-width: 5.5rem; padding: .6rem; font-size: .67rem; }.engine-core { width: 9.2rem; }.node-search{top:21%;left:3%}.node-paid{top:19%;right:2%}.node-creative{top:48%;left:0}.node-build{top:49%;right:0}.node-data{bottom:15%;left:5%}.node-content{bottom:13%;right:4%}
  .proof-facts { grid-template-columns: 1fr 1fr; }.proof-facts div { border-bottom: 1px solid var(--line-light); }
  .split-heading, .problems-layout, .faq-layout, .project-layout { grid-template-columns: 1fr; }
  .problems-heading, .faq-heading, .project-intro { position: static; }
  .system-map { min-height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: auto; padding: 3.5rem 1rem 1rem; }.system-axis { display: none; }.system-center { position: static; grid-column: 1/-1; grid-row: 1; width: 100%; aspect-ratio: auto; flex-direction: row; gap: 1rem; border-radius: 0; transform: none; }.system-center img { margin: 0; }.system-chip { min-height: 8rem; }.chip-strategy,.chip-demand,.chip-experience,.chip-content,.chip-measure { grid-area: auto; }.chip-demand { display: none; }
  .service-tabs { display: flex; flex-direction: row; overflow-x: auto; scroll-snap-type: x mandatory; }.service-tabs button { min-width: 12.5rem; scroll-snap-align: start; }
  .service-panel { grid-template-columns: 1fr; }.service-stage,.service-panel { min-height: auto; }.service-copy { padding: 2rem 1.25rem; }.module-visual { min-height: 22rem; }
  .measurement-layout, .automation-layout { gap: 3rem; }.automation-visual { min-height: 28rem; }
  .process-line { grid-template-columns: 1fr 1fr; }
  .industry-list article { grid-template-columns: 2rem 1fr; padding: 1.2rem 0; }.industry-list article > b { grid-column: 2; text-align: left; }
  .location-core { flex-wrap: wrap; }.location-core small { width: 100%; margin-left: 4rem; }
  .check-list { grid-template-columns: 1fr; }
  .field-grid, .choice-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }.footer-brand { grid-column: 1/-1; }.footer-contact { grid-column: auto; }
  .chat-launcher { bottom: 4.7rem; }.chat-panel { right: 1rem; bottom: 8.5rem; max-height: calc(100svh - 10rem); }
  .mobile-contact-bar { position: fixed; z-index: 920; inset: auto 0 0; display: grid; grid-template-columns: repeat(4,1fr); min-height: 3.65rem; color: var(--white); background: rgba(5,5,5,.96); border-top: 1px solid var(--line-dark); backdrop-filter: blur(15px); }.mobile-contact-bar a,.mobile-contact-bar button { display: grid; place-items: center; border: 0; border-right: 1px solid var(--line-dark); color: inherit; background: transparent; font-size: .7rem; font-weight: 700; text-decoration: none; }.mobile-contact-bar a:last-child { color: var(--black); background: var(--yellow); }
  .service-category { grid-template-columns: 1fr; }.service-category-grid { grid-template-columns: 1fr; }.about-principles { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hero-actions, .final-actions { align-items: stretch; flex-direction: column; }.hero-actions .button, .final-actions .button { width: 100%; }.hero-actions .text-link, .final-actions .text-link { align-self: center; }
  .growth-engine { min-height: 28rem; }.growth-engine::before { background-size: 34px 34px; }.engine-hud { font-size: .58rem; }.engine-hud-bottom span:nth-child(2) { display: none; }.orbit-one { width: 15rem; height: 15rem; }.orbit-two { width: 10rem; height: 10rem; }.engine-core { width: 7.9rem; }.engine-core strong { font-size: 1.1rem; }.core-kicker { font-size: .5rem; }.engine-node { min-width: 4.65rem; font-size: .59rem; }.node-search{left:1%}.node-paid{right:1%}.node-data{left:2%}.node-content{right:2%}
  .proof-facts { grid-template-columns: 1fr; }.proof-facts div { min-height: 5.7rem; border-right: 0; }
  .system-map { grid-template-columns: 1fr; }.system-center { grid-column: 1; }.system-chip { min-height: 7rem; }
  .content-branches { grid-template-columns: 1fr 1fr; }.content-branches::before { display:none; }.creative-visual { grid-template-columns: 1fr; }.type-sample { grid-row:auto; }.module-visual { min-height: 19rem; }.browser-layout { padding: 1rem; }.funnel-step { width:100%!important;margin-left:0!important; }
  .problem-item { grid-template-columns: 2rem 1fr auto; }.problem-answer { grid-column: 1/-1; }.problem-item.is-open .problem-answer { max-height: 12rem; }
  .console-line { grid-template-columns: 2rem 1fr; }.console-line > i { grid-column: 2; justify-self: start; }
  .process-line { grid-template-columns: 1fr; }.process-line li { display:grid; grid-template-columns:2.7rem 1fr; column-gap:.8rem; }.process-line li > span { grid-row:1/3; }.process-line li p { grid-column:2; }
  .workflow-node { width: 6.4rem; }.workflow-research{left:3%}.workflow-campaign{right:3%}.workflow-lead{left:3%}.workflow-report{right:3%}
  .location-row { grid-template-columns: 2rem 1fr; }.location-row small { grid-column: 2; }
  .project-form-shell { padding: 1.15rem; }.form-actions .button { padding-inline: .85rem; }.chat-launcher span:last-child { display:none; }.chat-launcher { width:3.35rem; justify-content:center; padding:0; }
  .footer-top { grid-template-columns: 1fr; }.footer-bottom { flex-direction: column; }.footer-contact { grid-column:auto; }
}

@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; }
  .reveal { opacity: 1; transform: none; }
}
