:root {
  --bg: #090708;
  --bg-soft: #100c0d;
  --surface: #151011;
  --surface-2: #1b1315;
  --text: #faf6f5;
  --muted: #9e9292;
  --muted-2: #6e6263;
  --line: rgba(255,255,255,.1);
  --line-bright: rgba(255,255,255,.18);
  --red: #ff3548;
  --red-deep: #c9142c;
  --coral: #ff765e;
  --green: #5ce58b;
  --gradient: linear-gradient(112deg, #ff3147 0%, #ef263f 48%, #ff8064 112%);
  --container: 1180px;
  --radius: 20px;
  --shadow: 0 28px 90px rgba(0,0,0,.4);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body { margin: 0; overflow-x: hidden; background: var(--bg); color: var(--text); font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
svg { max-width: 100%; }
::selection { background: #dd2038; color: #fff; }

.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }
.section { position: relative; padding: 120px 0; }
.grid-bg { background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 72px 72px; animation: gridShift 30s linear infinite; }
.skip-link { position: fixed; z-index: 999; left: 16px; top: -100px; padding: 10px 16px; border-radius: 8px; background: #fff; color: #090708; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; border-bottom: 1px solid var(--line); background: rgba(9,7,8,.77); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); transition: background .25s; }
.site-header.scrolled { background: rgba(9,7,8,.95); }
.header-inner { height: 76px; display: flex; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-name { font-size: 15px; font-weight: 800; letter-spacing: .04em; }
.brand-name span { color: var(--red); }
.brand-division { padding: 3px 7px; border: 1px solid rgba(255,53,72,.45); border-radius: 5px; color: #ff7a84; font-size: 9px; font-weight: 700; letter-spacing: .11em; }
.desktop-nav { display: flex; align-items: center; gap: 24px; margin-right: auto; }
.desktop-nav a { color: #aaa0a1; font-size: 12px; transition: color .2s; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 17px; }
.phone-link { color: #b8adae; font-size: 13px; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 25px; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 650; cursor: pointer; transition: transform .2s, box-shadow .2s, border-color .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, button:focus-visible { outline: 2px solid #ff6675; outline-offset: 3px; }
.button-small { min-height: 42px; padding: 0 19px; font-size: 12px; }
.button-primary { position: relative; overflow: hidden; background: var(--gradient); color: #fff; box-shadow: 0 12px 36px rgba(222,31,57,.25); }
.button-primary::after { content: ""; position: absolute; inset: -60% auto -60% -35%; width: 27%; transform: rotate(16deg); background: rgba(255,255,255,.34); filter: blur(4px); animation: buttonShine 4.8s 1.4s ease-in-out infinite; }
.button-primary:hover { box-shadow: 0 18px 48px rgba(222,31,57,.38); }
.button-secondary { border-color: var(--line-bright); background: rgba(255,255,255,.025); }
.button-secondary:hover { border-color: rgba(255,85,103,.45); background: rgba(255,255,255,.055); }

.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 6px auto; background: #fff; transition: transform .2s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 99; inset: 76px 0 0; padding: 28px 24px; overflow-y: auto; background: rgba(9,7,8,.985); }
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 14px 0; border-bottom: 1px solid var(--line); color: #d4cbcb; font-size: 18px; }
.mobile-menu .button { width: 100%; margin-top: 28px; }

.eyebrow { margin: 0 0 21px; color: #ff6976; font-size: 10px; line-height: 1.3; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow > span { display: inline-block; width: 37px; height: 1px; margin-right: 10px; background: var(--red); vertical-align: middle; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1 { margin: 0; max-width: 740px; font-size: clamp(49px,5.6vw,78px); line-height: .99; letter-spacing: -.058em; font-weight: 760; }
h2 { margin: 0; font-size: clamp(38px,4.2vw,59px); line-height: 1.06; letter-spacing: -.046em; font-weight: 730; }
h3 { letter-spacing: -.025em; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.muted { color: #6c6263; }
.text-link { color: #ff6976; font-size: 13px; font-weight: 600; }

.hero { position: relative; min-height: 800px; display: flex; align-items: center; padding: 148px 0 78px; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,7,8,.18), rgba(9,7,8,.66)); pointer-events: none; }
.hero-spot { position: absolute; right: -120px; top: 10px; width: 800px; height: 650px; background: radial-gradient(ellipse, rgba(202,20,44,.24), transparent 66%); filter: blur(5px); animation: glowDrift 9s ease-in-out infinite alternate; }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 65px; align-items: center; }
.hero-lead { max-width: 680px; margin: 28px 0 0; color: #aca1a2; font-size: 17px; line-height: 1.7; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.hero-points { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px 22px; margin: 32px 0 0; padding: 0; list-style: none; color: #958a8b; font-size: 11px; }
.hero-points li { display: flex; align-items: flex-start; gap: 9px; }
.hero-points i { flex: 0 0 auto; width: 5px; height: 5px; margin-top: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 12px var(--red); animation: pulseDot 2.5s ease-in-out infinite; }
.scroll-hint { position: absolute; z-index: 3; bottom: 24px; left: 50%; transform: translateX(-50%); color: #5e5556; font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
.scroll-hint span { display: block; width: 1px; height: 26px; margin: 0 auto 7px; background: linear-gradient(var(--red),transparent); }

.insight-machine { position: relative; min-width: 0; padding: 23px; border: 1px solid var(--line-bright); border-radius: 22px; background: linear-gradient(145deg,rgba(34,19,22,.94),rgba(12,9,10,.9)); box-shadow: var(--shadow); transform-style: preserve-3d; transition: transform .25s ease; }
.insight-machine::before { content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; background: linear-gradient(135deg,rgba(255,53,72,.4),transparent 40%,rgba(255,118,94,.12)); }
.machine-head { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.machine-head div > span { display: block; color: #74696a; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.machine-head strong { display: block; margin-top: 4px; font-size: 16px; }
.status { display: flex; align-items: center; gap: 7px; color: #8d8182; font-size: 9px; }
.status i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.machine-stage { position: relative; min-height: 330px; display: grid; grid-template-columns: 1fr .75fr 1fr; gap: 15px; align-items: center; overflow: hidden; }
.machine-stage::before, .machine-stage::after { content: ""; position: absolute; z-index: 0; top: 50%; width: 21%; height: 1px; background: linear-gradient(90deg,rgba(255,53,72,.1),rgba(255,53,72,.65)); }
.machine-stage::before { left: 23%; }.machine-stage::after { right: 23%; transform: rotate(180deg); }
.source-cloud { position: relative; min-height: 230px; }
.source { position: absolute; display: grid; place-items: center; width: 47px; height: 37px; border: 1px solid var(--line); border-radius: 7px; background: rgba(255,255,255,.03); color: #8d8283; font-size: 8px; font-weight: 700; animation: fileFloat 4s ease-in-out infinite; }
.s1 { left: 3%; top: 12%; }.s2 { right: 8%; top: 3%; animation-delay: -.5s; }.s3 { left: 26%; top: 43%; animation-delay: -1s; }.s4 { right: 2%; top: 53%; animation-delay: -1.5s; }.s5 { left: 0; bottom: 4%; animation-delay: -2s; }.s6 { right: 24%; bottom: 0; animation-delay: -2.5s; }
.source-lines { position: absolute; inset: 20px; background: repeating-linear-gradient(24deg,transparent 0 32px,rgba(255,255,255,.035) 33px); }
.processor { position: relative; z-index: 2; height: 150px; display: grid; place-content: center; overflow: hidden; border: 1px solid rgba(255,53,72,.36); border-radius: 50%; background: radial-gradient(circle,rgba(197,19,43,.22),rgba(20,12,14,.86) 67%); box-shadow: 0 0 45px rgba(197,19,43,.13); text-align: center; }
.processor > i { position: absolute; inset: 14px; border: 1px solid rgba(255,53,72,.12); border-radius: 50%; }.processor > i:nth-of-type(2) { inset: 29px; }.processor > i:nth-of-type(3) { inset: 44px; }
.processor strong { position: relative; z-index: 2; color: #ff6572; font-size: 11px; letter-spacing: .14em; }
.processor small { position: relative; z-index: 2; margin-top: 4px; color: #665b5c; font-size: 6px; }
.scan-line { position: absolute; z-index: 3; left: 18%; right: 18%; height: 1px; background: #ff5363; box-shadow: 0 0 12px #ff5363; animation: scan 2.6s ease-in-out infinite; }
.output-stack { position: relative; min-height: 235px; }
.output-card { position: absolute; width: 85%; height: 120px; padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: linear-gradient(140deg,#25171a,#110d0e); box-shadow: 0 12px 28px rgba(0,0,0,.25); }
.output-card span { color: #a62638; font-size: 7px; }.output-card b { display: block; margin: 8px 0 16px; font-size: 13px; }.output-card i { display: block; width: 75%; height: 4px; margin: 7px 0; border-radius: 3px; background: rgba(255,255,255,.08); }.output-card i:last-child { width: 48%; }
.oc1 { z-index: 3; right: 2%; top: 42px; animation: cardBreathe 3.6s ease-in-out infinite; }.oc2 { z-index: 2; right: 8%; top: 70px; transform: rotate(-3deg); opacity: .7; }.oc3 { z-index: 1; right: 14%; top: 96px; transform: rotate(-6deg); opacity: .42; }
.machine-footer { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; padding-top: 17px; border-top: 1px solid var(--line); }
.machine-footer span { padding-left: 9px; border-left: 1px solid rgba(255,53,72,.5); color: #8d8283; font-size: 8px; }.machine-footer i { display: block; color: #a72536; font-size: 7px; font-style: normal; }

.about { background: #0d0a0b; }
.about-layout { display: grid; grid-template-columns: 1fr .8fr; gap: 120px; align-items: start; }
.section-title h2 { max-width: 700px; }
.about-copy { padding-top: 40px; color: var(--muted); font-size: 14px; }
.lead-paragraph { color: #d1c7c8; font-size: 18px; line-height: 1.65; }
.principle-strip { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 85px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle-strip > div { min-height: 150px; padding: 24px; border-right: 1px solid var(--line); }.principle-strip > div:first-child { border-left: 1px solid var(--line); }
.principle-strip span { display: block; color: #a92135; font-size: 8px; }.principle-strip strong { display: block; margin-top: 37px; font-size: 16px; }.principle-strip small { display: block; color: #756a6b; font-size: 9px; }

.section-heading { display: grid; grid-template-columns: 1.7fr .7fr; gap: 85px; align-items: end; margin-bottom: 60px; }
.section-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.audience { background-color: #090708; }
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.audience-card { min-height: 300px; padding: 27px; border: 1px solid var(--line); border-radius: 14px; background: rgba(17,12,13,.84); transition: transform .25s,border-color .25s,background .25s; }
.audience-card:hover { transform: translateY(-5px); border-color: rgba(255,53,72,.38); background: #171012; }
.audience-card > span { color: #6f5559; font-size: 8px; letter-spacing: .12em; }
.audience-card .icon { display: grid; place-items: center; width: 48px; height: 48px; margin: 44px 0 30px; border: 1px solid rgba(255,53,72,.35); border-radius: 50%; color: #ff5b6a; transition: transform .3s,box-shadow .3s; }
.audience-card:hover .icon { transform: rotate(9deg) scale(1.08); box-shadow: 0 0 24px rgba(255,53,72,.15); }
.audience-card h3 { margin: 0 0 12px; font-size: 19px; }.audience-card p { margin: 0; color: #8f8485; font-size: 12px; }

.services { background: #0e0a0b; }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 55px 1.2fr 1fr 44px; gap: 25px; align-items: center; min-height: 150px; padding: 24px 16px; border-bottom: 1px solid var(--line); transition: background .25s,padding .25s; }
.service-row:hover { padding-left: 25px; background: linear-gradient(90deg,rgba(255,53,72,.07),transparent 60%); }
.service-no { color: #a42436; font-size: 9px; }
.service-row h3 { margin: 0 0 6px; font-size: 21px; }.service-row p { margin: 0; color: #8f8485; font-size: 12px; }
.service-row ul { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }.service-row li { padding: 5px 8px; border: 1px solid var(--line); border-radius: 5px; color: #756a6b; font-size: 8px; }
.service-row > a { display: grid; place-items: center; width: 39px; height: 39px; border: 1px solid var(--line); border-radius: 50%; color: #ff5c6b; transition: transform .2s,background .2s; }.service-row > a:hover { transform: rotate(45deg); background: rgba(255,53,72,.1); }

.requests { overflow: hidden; background: radial-gradient(circle at 12% 85%,rgba(190,18,43,.18),transparent 30%),#090708; }
.requests-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: center; }
.requests-copy > p:not(.eyebrow) { max-width: 470px; margin: 25px 0 30px; color: var(--muted); }
.quote-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; transform: rotate(-1deg); }
blockquote { min-height: 220px; margin: 0; padding: 25px; border: 1px solid var(--line); border-radius: 14px; background: rgba(20,13,15,.92); }
blockquote:nth-child(2), blockquote:nth-child(4) { transform: translateY(28px); }
blockquote > span { color: #9f2435; font-size: 8px; } blockquote p { margin: 55px 0 18px; color: #d1c7c8; font-size: 14px; line-height: 1.55; } blockquote cite { color: #6f6566; font-size: 9px; font-style: normal; }

.light-section { background: #f2eeec; color: #151011; }
.light-section .eyebrow { color: #c51b34; }.light-section .muted { color: #aaa1a0; }.light-section .section-heading > p { color: #766e6d; }
.process-track { display: grid; grid-template-columns: repeat(6,1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(20,15,16,.14); }
.process-track li { position: relative; min-height: 250px; padding: 24px 17px; border-right: 1px solid rgba(20,15,16,.12); }.process-track li:first-child { border-left: 1px solid rgba(20,15,16,.12); }
.process-track li::before { content: ""; position: absolute; top: -4px; left: 17px; width: 7px; height: 7px; border-radius: 50%; background: #d42139; box-shadow: 0 0 0 5px rgba(212,33,57,.08); }
.process-track > li > span { color: #c52339; font-size: 8px; }.process-track div { margin-top: 90px; }.process-track h3 { margin: 0 0 8px; font-size: 15px; }.process-track p { margin: 0; color: #7d7473; font-size: 10px; line-height: 1.55; }

.results { background: #0c090a; }
.artifact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.artifact { min-height: 370px; padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: #120d0e; transition: transform .25s,border-color .25s; }.artifact:hover { transform: translateY(-5px); border-color: rgba(255,53,72,.35); }
.artifact-preview { position: relative; height: 190px; margin-bottom: 25px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; background: #0b0809; }
.artifact > b { color: #9e2334; font-size: 8px; }.artifact h3 { margin: 8px 0; font-size: 18px; }.artifact > p { margin: 0; color: #837879; font-size: 11px; }
.report .artifact-preview { padding: 25px; }.report .artifact-preview span { display: block; width: 80%; height: 5px; margin: 9px 0; border-radius: 5px; background: rgba(255,255,255,.1); }.report .artifact-preview span:nth-child(2) { width: 55%; }.report .artifact-preview i { display: block; width: 80px; height: 48px; margin-top: 24px; background: linear-gradient(135deg,rgba(255,53,72,.48),rgba(255,53,72,.04)); }
.table .artifact-preview { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: repeat(2,1fr); gap: 1px; padding: 22px; background: rgba(255,255,255,.06); }.table .artifact-preview i { background: #120d0e; }.table .artifact-preview i:first-child { background: rgba(255,53,72,.16); }
.slides .artifact-preview { display: flex; align-items: center; gap: 10px; padding: 23px; }.slides .artifact-preview span { min-width: 86%; height: 125px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 5px; background: linear-gradient(145deg,#231316,#0d090a); color: #bb2c40; font-size: 25px; }
.strategy .artifact-preview { display: flex; align-items: center; justify-content: center; gap: 7px; }.strategy .artifact-preview span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,53,72,.3); border-radius: 50%; color: #c52a3e; font-size: 8px; }.strategy .artifact-preview i { width: 25px; height: 1px; background: #74303a; }
.knowledge .artifact-preview { display: grid; place-content: center; text-align: center; }.knowledge .artifact-preview strong { display: grid; place-items: center; width: 65px; height: 65px; margin: 0 auto 18px; border: 1px solid rgba(255,53,72,.4); border-radius: 50%; color: #ef4558; }.knowledge .artifact-preview span { width: 125px; height: 4px; margin: 5px auto; background: rgba(255,255,255,.09); }.knowledge .artifact-preview span:last-child { width: 80px; }
.dashboard-art .artifact-preview { display: flex; align-items: flex-end; gap: 12px; padding: 28px; }.dashboard-art .artifact-preview i { width: 22px; height: 40%; background: rgba(255,53,72,.2); }.dashboard-art .artifact-preview i:nth-child(2) { height: 62%; }.dashboard-art .artifact-preview i:nth-child(3) { height: 85%; }.dashboard-art svg { position: absolute; left: 25px; right: 25px; bottom: 35px; }.dashboard-art path { fill: none; stroke: #ff5363; stroke-width: 2; }

.information-chaos { background-color: #090708; }
.chaos-shell { display: grid; grid-template-columns: .85fr 1.15fr; gap: 65px; align-items: center; padding: 65px; border: 1px solid rgba(255,53,72,.25); border-radius: 25px; background: radial-gradient(circle at 100% 0,rgba(177,19,41,.18),transparent 38%),rgba(15,10,11,.94); }
.chaos-copy > p:not(.eyebrow) { margin: 25px 0; color: var(--muted); }.input-tags { display: flex; flex-wrap: wrap; gap: 7px; }.input-tags span { padding: 5px 9px; border: 1px solid var(--line); border-radius: 5px; color: #827677; font-size: 8px; }
.chaos-flow { min-height: 360px; display: grid; grid-template-columns: 1fr .58fr 1fr; align-items: center; gap: 20px; }
.flow-column { position: relative; min-height: 270px; }.flow-column small { display: block; margin-bottom: 28px; color: #705f61; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }.flow-column > span { display: block; width: 75%; margin: 12px auto; padding: 12px 14px; border: 1px solid var(--line); border-radius: 7px; background: #171012; color: #918586; font-size: 10px; }.flow-column .m1 { transform: rotate(-7deg) translateX(-10px); }.flow-column .m2 { transform: rotate(5deg) translateX(16px); }.flow-column .m3 { transform: rotate(-3deg) translateX(2px); }.flow-column .m4 { transform: rotate(8deg) translateX(-7px); }
.flow-column.output > span { transform: none; border-color: rgba(255,53,72,.22); background: linear-gradient(90deg,rgba(255,53,72,.1),transparent); }
.flow-filter { position: relative; display: grid; place-content: center; width: 110px; height: 150px; margin: auto; border: 1px solid rgba(255,53,72,.35); border-radius: 55px; background: radial-gradient(circle,rgba(197,19,43,.17),transparent 70%); }.flow-filter strong { color: #dc3448; font-size: 9px; letter-spacing: .13em; }.flow-filter i { position: absolute; inset: 18px; border: 1px solid rgba(255,53,72,.12); border-radius: 50%; animation: orbitSpin 12s linear infinite; }.flow-filter i::before { content: ""; position: absolute; top: -3px; left: 50%; width: 6px; height: 6px; border-radius: 50%; background: #ff5262; box-shadow: 0 0 12px #ff5262; }.flow-filter span { position: absolute; left: -20px; right: -20px; top: 50%; height: 1px; background: linear-gradient(90deg,transparent,#ff5363,transparent); animation: filterPulse 2s ease-in-out infinite; }

.microservices { background: #0d0a0b; }
.micro-layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: 85px; align-items: center; }
.micro-copy > p:not(.eyebrow) { margin: 25px 0; color: var(--muted); }.micro-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 18px; margin: 0 0 30px; padding: 0; list-style: none; color: #938788; font-size: 11px; }.micro-copy li::before { content: "—"; margin-right: 7px; color: var(--red); }
.micro-visual { min-width: 0; transform-style: preserve-3d; transition: transform .25s; }
.app-window { overflow: hidden; border: 1px solid var(--line-bright); border-radius: 18px; background: #110d0e; box-shadow: var(--shadow); }
.app-bar { display: flex; align-items: center; gap: 6px; height: 43px; padding: 0 16px; border-bottom: 1px solid var(--line); }.app-bar i { width: 6px; height: 6px; border-radius: 50%; background: #453638; }.app-bar i:first-child { background: var(--red); }.app-bar span { margin-left: auto; color: #6e6263; font-size: 8px; }
.app-body { min-height: 360px; display: grid; grid-template-columns: 130px 1fr; }.app-body aside { display: grid; align-content: start; gap: 4px; padding: 23px 13px; border-right: 1px solid var(--line); }.app-body aside b { margin-bottom: 18px; font-size: 11px; }.app-body aside span { padding: 8px; border-radius: 5px; color: #6f6364; font-size: 8px; }.app-body aside span:nth-child(3) { background: rgba(255,53,72,.1); color: #e65464; }
.app-main { min-width: 0; padding: 24px; }.app-search { padding: 10px 12px; border: 1px solid var(--line); border-radius: 7px; color: #675b5c; font-size: 8px; }.app-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 18px 0; }.app-metrics > span { padding: 14px; border: 1px solid var(--line); border-radius: 7px; }.app-metrics b,.app-metrics small { display: block; }.app-metrics b { color: #f0e6e7; font-size: 17px; }.app-metrics small { color: #625657; font-size: 7px; }.app-rows { display: grid; gap: 8px; }.app-rows i { height: 31px; border: 1px solid rgba(255,255,255,.06); border-radius: 5px; background: linear-gradient(90deg,rgba(255,53,72,.08) 0 15%,transparent 15% 100%); }

.why { background: #090708; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.why-grid article { min-height: 300px; padding: 26px; border-right: 1px solid var(--line); }.why-grid article:first-child { border-left: 1px solid var(--line); }.why-grid span { color: #a32536; font-size: 8px; }.why-grid h3 { margin: 105px 0 12px; font-size: 18px; }.why-grid p { margin: 0; color: #8e8283; font-size: 11px; }

.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; }.faq-intro > p:not(.eyebrow) { color: #776e6d; }.accordion { border-top: 1px solid rgba(20,15,16,.14); }.accordion details { border-bottom: 1px solid rgba(20,15,16,.14); }.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; list-style: none; cursor: pointer; font-size: 15px; font-weight: 600; }.accordion summary::-webkit-details-marker { display: none; }.accordion summary span { display: grid; place-items: center; flex: 0 0 auto; width: 30px; height: 30px; border: 1px solid rgba(20,15,16,.16); border-radius: 50%; color: #d3233a; transition: transform .2s; }.accordion details[open] summary span { transform: rotate(45deg); }.accordion details p { max-width: 650px; margin: -3px 0 24px; color: #776e6d; font-size: 12px; }

.contact-section { position: relative; overflow: hidden; padding: 112px 0; background-color: #090708; }.contact-spot { position: absolute; left: -220px; bottom: -320px; width: 800px; height: 650px; background: radial-gradient(circle,rgba(201,20,44,.3),transparent 65%); animation: glowDrift 9s ease-in-out infinite alternate-reverse; }
.contact-layout { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: 95px; align-items: center; }.contact-copy > p:not(.eyebrow) { margin: 25px 0; color: var(--muted); }.contact-copy ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; color: #9b8f90; font-size: 12px; }.contact-copy li { position: relative; padding-left: 22px; }.contact-copy li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 1px; background: var(--red); }
.contact-channels { padding: 24px; border: 1px solid var(--line-bright); border-radius: 20px; background: rgba(20,13,15,.95); box-shadow: var(--shadow); }.channel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 5px 20px; color: #b2a7a8; font-size: 13px; }.channel-head > i { display: flex; align-items: center; gap: 7px; color: #766a6b; font-size: 8px; font-style: normal; text-transform: uppercase; letter-spacing: .12em; }.channel-head b { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.channel { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 16px; min-height: 86px; padding: 15px 18px; border-top: 1px solid var(--line); transition: transform .25s,background .25s,border-color .25s; }.channel:hover { transform: translateX(5px); background: rgba(255,255,255,.03); border-color: rgba(255,53,72,.3); }.channel-primary { margin-bottom: 7px; border: 1px solid rgba(255,73,91,.28); border-radius: 12px; background: linear-gradient(100deg,rgba(184,19,43,.28),rgba(104,15,29,.13)); }.channel-mark { display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid rgba(255,53,72,.3); border-radius: 50%; color: #ff6573; font-size: 9px; font-weight: 700; }.channel > span:nth-child(2) { display: grid; }.channel small { color: #796d6e; font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }.channel strong { margin-top: 2px; font-size: 14px; }.channel > i { color: #ff5b6a; font-style: normal; }.contact-note { margin: 18px 5px 2px; color: #6e6263; font-size: 10px; }

.site-footer { padding: 67px 0 24px; border-top: 1px solid var(--line); background: #070506; }.footer-top { display: grid; grid-template-columns: 1.2fr .6fr 1fr; gap: 70px; padding-bottom: 56px; }.footer-brand { margin-bottom: 18px; }.footer-top > div > p { max-width: 330px; margin: 0; color: #706566; font-size: 11px; }.footer-top nav,.footer-contacts { display: grid; align-content: start; gap: 10px; }.footer-top nav a,.footer-contacts a,.footer-contacts > span { color: #928687; font-size: 11px; }.footer-contacts > a { color: #fff; font-size: 15px; }.footer-contacts > div { display: flex; gap: 16px; margin-top: 7px; }.footer-top a:hover { color: #fff; }.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 20px; border-top: 1px solid var(--line); color: #5d5253; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.mobile-whatsapp { display: none; }.noscript { position: fixed; z-index: 1000; inset: auto 0 0; padding: 10px; background: #fff; color: #111; text-align: center; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease,transform .7s ease; }.reveal.is-visible { opacity: 1; transform: none; }

@keyframes gridShift { to { background-position: 72px 72px; } }
@keyframes buttonShine { 0%,58% { transform: translateX(-220%) rotate(16deg); } 76%,100% { transform: translateX(620%) rotate(16deg); } }
@keyframes glowDrift { from { transform: translate3d(-3%,-2%,0) scale(.96); } to { transform: translate3d(4%,3%,0) scale(1.05); } }
@keyframes pulseDot { 50% { opacity: .45; box-shadow: 0 0 19px var(--red); } }
@keyframes fileFloat { 50% { transform: translateY(-7px) rotate(2deg); border-color: rgba(255,53,72,.25); } }
@keyframes scan { 0%,100% { top: 25%; opacity: .3; } 50% { top: 75%; opacity: 1; } }
@keyframes cardBreathe { 50% { transform: translateY(-5px) rotate(1deg); box-shadow: 0 18px 35px rgba(0,0,0,.35); } }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes filterPulse { 50% { opacity: .35; transform: scaleX(.72); } }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }.header-actions { margin-left: auto; }
  .hero-layout { gap: 35px; }.machine-stage { grid-template-columns: 1fr .82fr 1fr; }
  .process-track { grid-template-columns: repeat(3,1fr); }.process-track li:nth-child(n+4) { border-top: 1px solid rgba(20,15,16,.12); }
  .chaos-shell { padding: 45px; gap: 35px; }.micro-layout { gap: 45px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 34px),var(--container)); }.section { padding: 90px 0; }
  .header-inner { height: 68px; }.site-header .header-actions { display: none; }.menu-toggle { display: block; margin-left: auto; }.mobile-menu { inset: 68px 0 0; }
  .hero { min-height: auto; padding: 128px 0 90px; }.hero-layout { grid-template-columns: 1fr; gap: 58px; }.insight-machine { max-width: 650px; }
  .about-layout,.requests-layout,.micro-layout,.contact-layout { grid-template-columns: 1fr; gap: 45px; }.about-copy { padding-top: 0; }.principle-strip { grid-template-columns: repeat(2,1fr); }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 46px; }.section-heading > p { max-width: 620px; }
  .audience-grid,.artifact-grid { grid-template-columns: repeat(2,1fr); }.service-row { grid-template-columns: 45px 1fr 40px; }.service-row ul { grid-column: 2 / 3; }.service-row > a { grid-column: 3; grid-row: 1 / 3; }
  .quote-stack { transform: none; }.chaos-shell { grid-template-columns: 1fr; }.why-grid { grid-template-columns: repeat(2,1fr); }.why-grid article:nth-child(n+3) { border-top: 1px solid var(--line); }
  .faq-layout { grid-template-columns: 1fr; gap: 45px; }.footer-top { grid-template-columns: 1.2fr .7fr; }.footer-contacts { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  html { scroll-padding-top: 70px; }.container { width: min(calc(100% - 28px),var(--container)); }.section { padding: 74px 0; }
  .eyebrow { margin-bottom: 17px; font-size: 8px; }.eyebrow > span { width: 25px; }
  h1 { font-size: clamp(42px,13vw,56px); } h2 { font-size: clamp(34px,10vw,45px); }
  .hero { padding-top: 110px; }.hero-lead { font-size: 15px; }.hero-buttons { display: grid; }.hero-buttons .button { width: 100%; }.hero-points { grid-template-columns: 1fr; }.scroll-hint { display: none; }
  .insight-machine { padding: 17px; border-radius: 16px; }.machine-stage { min-height: 270px; grid-template-columns: 1fr .75fr 1fr; gap: 4px; }.source { width: 38px; height: 30px; font-size: 6px; }.processor { height: 105px; }.processor strong { font-size: 7px; }.processor small { display: none; }.output-card { width: 94%; height: 95px; }.output-card b { font-size: 10px; }.machine-footer { grid-template-columns: repeat(2,1fr); }.machine-footer span { padding: 5px 8px; }
  .principle-strip { grid-template-columns: 1fr; border-bottom: 0; }.principle-strip > div { min-height: 120px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }.principle-strip strong { margin-top: 25px; }
  .audience-grid,.artifact-grid { grid-template-columns: 1fr; }.audience-card { min-height: 275px; }.service-row { grid-template-columns: 34px 1fr 37px; gap: 10px; min-height: 180px; padding: 20px 5px; }.service-row h3 { font-size: 18px; }.service-row ul { gap: 4px; }.service-row li { font-size: 7px; }
  .quote-stack { grid-template-columns: 1fr; }.quote-stack blockquote:nth-child(n) { min-height: 190px; transform: none; } blockquote p { margin-top: 42px; }
  .process-track { grid-template-columns: 1fr; border-left: 1px solid rgba(20,15,16,.12); border-top: 0; }.process-track li { min-height: 0; display: grid; grid-template-columns: 34px 1fr; gap: 13px; padding: 22px 15px; border-top: 1px solid rgba(20,15,16,.12); border-right: 0; }.process-track li:nth-child(n) { border-top: 1px solid rgba(20,15,16,.12); }.process-track li::before { top: 29px; left: -4px; }.process-track div { margin-top: 0; }.process-track p { font-size: 11px; }
  .artifact { min-height: 345px; }.chaos-shell { width: min(calc(100% - 20px),var(--container)); padding: 35px 22px; border-radius: 19px; }.chaos-flow { min-height: 310px; grid-template-columns: 1fr .42fr 1fr; gap: 4px; }.flow-filter { width: 62px; height: 110px; }.flow-filter strong { font-size: 6px; }.flow-column > span { width: 88%; padding: 9px; font-size: 8px; }
  .app-body { grid-template-columns: 82px 1fr; min-height: 310px; }.app-body aside { padding: 18px 7px; }.app-body aside span { padding: 6px 4px; font-size: 6px; }.app-main { padding: 16px 10px; }.app-metrics { gap: 4px; }.app-metrics > span { padding: 9px 5px; }.app-metrics b { font-size: 13px; }.micro-copy ul { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; border-bottom: 0; }.why-grid article { min-height: 230px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }.why-grid article:nth-child(n) { border-top: 0; }.why-grid h3 { margin-top: 65px; }
  .accordion summary { font-size: 13px; }.contact-section { padding: 78px 0 100px; }.contact-channels { padding: 18px; }.channel { grid-template-columns: 44px 1fr auto; gap: 12px; padding: 14px 10px; }
  .footer-top { grid-template-columns: 1fr; gap: 35px; }.footer-contacts { grid-column: auto; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 11px; }
  .mobile-whatsapp { position: fixed; z-index: 90; left: 14px; right: 14px; bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 52px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: linear-gradient(105deg,#d51f38,#ff5b50); color: #fff; box-shadow: 0 14px 35px rgba(0,0,0,.38); font-size: 12px; font-weight: 700; }.mobile-whatsapp span { display: grid; place-items: center; width: 27px; height: 27px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-size: 7px; }
}

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