:root {
  --ink: #090909;
  --ink-soft: #3a3a3a;
  --muted: #6c6c6c;
  --line: #e9e4d8;
  --paper: #ffffff;
  --warm: #fff8df;
  --gold: #ffc400;
  --gold-dark: #d99b00;
  --green: #13a05f;
  --purple: #6a4df4;
  --pink: #d93b87;
  --orange: #ee8b22;
  --blue: #2d7ce8;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
  --radius: 8px;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 196, 0, 0.08), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #fffdf6 42%, #fff 100%);
  color: var(--ink);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  text-transform: uppercase;
}

.method-node span {
  text-transform: uppercase;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.section-anchor {
  scroll-margin-top: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(340px, 460px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 1.5vw, 22px);
  width: 100%;
  min-height: 112px;
  padding: 10px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(233, 228, 216, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  width: min(440px, 31vw);
  height: 126px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: left center;
  filter: contrast(1.12) saturate(1.08);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.55vw, 24px);
}

.nav-link,
.nav-menu-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  margin: auto;
  border-radius: 999px;
  background: var(--gold);
  transition: width 180ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after,
.nav-menu:hover .nav-link::after,
.nav-menu.is-open .nav-link::after {
  width: 100%;
}

.nav-menu {
  position: relative;
}

.chevron {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  display: grid;
  min-width: 230px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu:hover .dropdown,
.nav-menu:focus-within .dropdown,
.nav-menu.is-open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.dropdown a:hover,
.dropdown a:focus {
  background: var(--warm);
  color: var(--ink);
  outline: none;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.btn-primary {
  color: #111;
  background: var(--gold);
  box-shadow: 0 14px 28px rgba(255, 196, 0, 0.28);
}

.header-cta:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 196, 0, 0.36);
}

.btn-secondary {
  background: #fff;
  border-color: #e4d89e;
  color: #111;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.btn-dark {
  min-width: min(100%, 430px);
  color: #fff;
  background: #050505;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.btn-dark:hover {
  transform: translateY(-2px);
  background: #1b1b1b;
}

.btn svg,
.header-cta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 720px) minmax(0, 1fr);
  gap: clamp(24px, 3.2vw, 52px);
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 112px);
  margin: 0;
  padding: clamp(56px, 6vw, 94px) max(24px, calc((100vw - 1440px) / 2 + 24px)) 36px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 28%, rgba(255, 255, 255, 0.68) 48%, rgba(255, 255, 255, 0.14) 76%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.62) 100%),
    linear-gradient(110deg, #fff 0%, #fffdf7 48%, #fff7d8 100%);
  border-bottom: 1px solid rgba(233, 228, 216, 0.86);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 6% 66%, rgba(255, 196, 0, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 76%, rgba(255, 255, 255, 0.84) 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  margin: 0 0 14px;
  padding: 0 10px;
  border: 1px solid rgba(217, 155, 0, 0.26);
  border-radius: 8px;
  background: rgba(255, 248, 223, 0.78);
  color: var(--gold-dark);
  font-size: clamp(12px, 1vw, 13px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.hero h1 {
  display: grid;
  justify-items: start;
  max-width: 760px;
  margin: 0;
  color: #050505;
  font-size: clamp(38px, 3.55vw, 60px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 .hero-title-line,
.hero h1 .hero-title-highlight {
  position: relative;
  display: block;
  width: 100%;
  max-width: 760px;
  white-space: normal;
  text-wrap: balance;
}

.hero h1 .hero-title-line {
  color: #050505;
}

.hero h1 .hero-title-highlight {
  margin-top: 0.03em;
  padding: 0 0.08em 0.04em 0;
  color: transparent;
  background: linear-gradient(90deg, #e19100 0%, #ffc400 46%, #111 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 18px 38px rgba(255, 196, 0, 0.2);
}

.section-copy h2 span,
.center-heading h2 span,
.impact-copy h2 span,
.work-intro h2 span,
.contact-copy h2 span,
.cta-band h2 span,
.center-heading .eyebrow {
  color: var(--gold-dark);
}

.section-copy h2 span,
.center-heading h2 span,
.impact-copy h2 span,
.work-intro h2 span,
.contact-copy h2 span,
.cta-band h2 span {
  position: relative;
  display: inline;
}

.hero h1 .hero-title-highlight::after,
.section-copy h2 span::after,
.center-heading h2 span::after,
.contact-copy h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.2em;
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.22);
  z-index: -1;
}

.hero h1 .hero-title-highlight::before {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.1em;
  bottom: -0.03em;
  height: 0.62em;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 196, 0, 0.16), rgba(255, 196, 0, 0.03));
  z-index: -2;
}

.hero-lede,
.hero-note {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 20px);
}

.hero-note {
  margin-top: 20px;
  font-size: clamp(15px, 1.2vw, 18px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-proof {
  grid-column: 1 / -1;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin-top: clamp(18px, 3vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(233, 228, 216, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.08);
}

.hero-proof span {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 3px 14px;
  align-items: center;
  min-height: 96px;
  padding: 18px 22px;
  border-right: 1px solid rgba(233, 228, 216, 0.92);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.hero-proof span:hover {
  background: rgba(255, 248, 223, 0.72);
  transform: translateY(-2px);
}

.hero-proof span:last-child {
  border-right: 0;
}

.hero-proof svg {
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.13);
  color: #111;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-proof strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-proof small {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.35;
}

.hero-proof .rating-proof {
  grid-template-columns: 1fr;
}

.rating-proof b {
  color: var(--gold-dark);
  font-size: 17px;
  letter-spacing: 0.08em;
}

.hero-command-stage {
  position: relative;
  min-width: 0;
  min-height: clamp(560px, 43vw, 700px);
  isolation: isolate;
  perspective: 1500px;
}

.hero-command-stage::before {
  content: "";
  position: absolute;
  inset: 4% 0 auto 22%;
  width: 78%;
  height: 72%;
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 196, 0, 0.1) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(0deg, rgba(255, 196, 0, 0.08) 0 1px, transparent 1px 16px);
  opacity: 0.78;
  z-index: -2;
}

.hero-command-stage::after {
  content: "";
  position: absolute;
  inset: 24% 18% 12% 20%;
  z-index: -3;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 196, 0, 0.42), rgba(255, 196, 0, 0.16) 42%, transparent 70%),
    radial-gradient(circle at 80% 24%, rgba(0, 0, 0, 0.16), transparent 48%);
  filter: blur(18px);
}

.hero-image-stage {
  position: relative;
  min-width: 0;
  min-height: clamp(430px, 38vw, 620px);
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-image-stage::before {
  content: "";
  position: absolute;
  inset: 12% 5% 8% 12%;
  z-index: -1;
  border-radius: 28px;
  background: radial-gradient(circle at 48% 52%, rgba(255, 196, 0, 0.18), transparent 62%);
  filter: blur(18px);
}

.hero-image-stage img {
  width: min(100%, 920px);
  height: auto;
  margin-left: auto;
  display: block;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 34px 58px rgba(0, 0, 0, 0.12));
}

.tool-chaos {
  position: absolute;
  inset: 8% auto 6% 0;
  width: 36%;
  z-index: 3;
  overflow: visible;
}

.tool-token,
.doc-chip,
.gear {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(233, 228, 216, 0.94);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.tool-token {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  color: #111;
  font-size: 12px;
  font-weight: 950;
  transform: rotate(var(--r));
  transform-origin: center;
  animation: orbitTool 6500ms ease-in-out infinite;
  animation-delay: var(--float-delay, 0ms);
  transition: transform 180ms ease, box-shadow 180ms ease;
  will-change: transform, opacity, filter;
}

.tool-token:hover {
  transform: translateY(-8px) rotate(0deg) scale(1.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.14);
}

.tool-token::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 10px;
  background: var(--token-bg);
  opacity: 0.92;
  z-index: -1;
}

.token-mail {
  --token-bg: linear-gradient(135deg, #ffffff, #e53935);
  left: 12%;
  top: 7%;
  --r: -14deg;
  --float-delay: 0ms;
}

.token-sheet {
  --token-bg: linear-gradient(135deg, #ffffff, #16a05d);
  left: 42%;
  top: 19%;
  --r: 10deg;
  --float-delay: 180ms;
}

.token-crm {
  --token-bg: linear-gradient(135deg, #ffffff, #0067d8);
  left: 25%;
  top: 37%;
  --r: -8deg;
  --float-delay: 360ms;
}

.token-chat {
  --token-bg: linear-gradient(135deg, #ffffff, #7f4dff);
  left: 44%;
  top: 48%;
  --r: 11deg;
  --float-delay: 540ms;
}

.token-doc {
  --token-bg: linear-gradient(135deg, #ffffff, #f4b400);
  left: 14%;
  bottom: 20%;
  --r: 7deg;
  --float-delay: 720ms;
}

.token-qb {
  --token-bg: linear-gradient(135deg, #ffffff, #16a34a);
  left: 46%;
  bottom: 24%;
  --r: -12deg;
  --float-delay: 900ms;
}

.doc-chip {
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 6px;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.05;
  transform: rotate(var(--r));
  transform-origin: center;
  animation: floatChip 5400ms ease-in-out infinite;
  animation-delay: var(--float-delay, 0ms);
  will-change: transform, opacity, filter;
}

.doc-invoice {
  right: -4%;
  top: 31%;
  --r: -8deg;
  --float-delay: 0ms;
}

.doc-report {
  left: 20%;
  bottom: 9%;
  --r: 6deg;
  --float-delay: 520ms;
}

.gear {
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, #111 0 11deg, #a79d84 11deg 22deg),
    #fff;
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.13),
    inset 0 0 0 10px #fff8df,
    inset 0 0 0 18px rgba(17, 17, 17, 0.85);
  animation: spinGear 8500ms linear infinite;
}

.gear::after {
  content: "";
  width: 32%;
  height: 32%;
  border-radius: 50%;
  background: #fff;
}

.gear-a {
  --s: 46px;
  left: 2%;
  top: 50%;
}

.gear-b {
  --s: 34px;
  right: 18%;
  top: 10%;
  animation-duration: 6200ms;
  animation-direction: reverse;
}

.gear-c {
  --s: 38px;
  right: 9%;
  bottom: 13%;
  animation-duration: 7200ms;
}

.flow-engine {
  position: absolute;
  left: 32%;
  top: 33%;
  z-index: 7;
  display: grid;
  place-items: center;
  width: clamp(150px, 14vw, 210px);
  height: clamp(150px, 14vw, 210px);
  perspective: 820px;
  transform: translateZ(90px) rotate(-7deg);
  transform-style: preserve-3d;
  pointer-events: none;
}

.engine-aura {
  position: absolute;
  inset: -28%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 196, 0, 0.78) 0 12%, rgba(255, 196, 0, 0.32) 34%, rgba(255, 196, 0, 0.08) 56%, transparent 72%),
    conic-gradient(from 180deg, transparent, rgba(255, 196, 0, 0.52), transparent 38%, rgba(17, 17, 17, 0.2), transparent);
  filter: blur(4px);
  animation: engineAura 3600ms ease-in-out infinite;
}

.engine-sphere {
  position: relative;
  display: grid;
  place-items: center;
  width: 98%;
  height: 98%;
  overflow: visible;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 56%, rgba(255, 196, 0, 0.18), transparent 62%);
  box-shadow:
    0 36px 82px rgba(0, 0, 0, 0.28),
    0 0 70px rgba(255, 196, 0, 0.6);
  transform-style: preserve-3d;
  animation: engineSpin 5200ms linear infinite;
  will-change: transform;
}

.engine-sphere::before,
.engine-sphere::after {
  display: none;
}

.engine-logo {
  position: absolute;
  inset: -30%;
  z-index: 2;
  width: 160%;
  height: 160%;
  object-fit: contain;
  backface-visibility: hidden;
  filter:
    drop-shadow(0 28px 34px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 28px rgba(255, 196, 0, 0.48));
}

.engine-logo-front {
  transform: translateZ(34px) rotate(7deg);
}

.engine-logo-back {
  opacity: 0.64;
  filter:
    brightness(0.48)
    saturate(1.1)
    drop-shadow(0 24px 28px rgba(0, 0, 0, 0.28));
  transform: rotateY(180deg) translateZ(34px) rotate(7deg);
}

.engine-label {
  position: absolute;
  bottom: -12px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 196, 0, 0.48);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.88);
  color: #fff;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
}

.engine-stream {
  position: absolute;
  z-index: 4;
  height: 150px;
  pointer-events: none;
}

.engine-stream::before,
.engine-stream::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 196, 0, 0.94), transparent);
  box-shadow: 0 0 20px rgba(255, 196, 0, 0.62);
  transform: translateY(-50%);
  animation: energyRun 1900ms linear infinite;
}

.engine-stream::after {
  top: 62%;
  opacity: 0.54;
  animation-delay: 380ms;
}

.engine-stream i {
  position: absolute;
  top: calc(50% + var(--y, 0px));
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 5px rgba(255, 196, 0, 0.16),
    0 0 18px rgba(255, 196, 0, 0.82);
  animation: particleFlow 2300ms linear infinite;
}

.engine-stream i:nth-child(2) {
  --y: -22px;
  animation-delay: 460ms;
}

.engine-stream i:nth-child(3) {
  --y: 22px;
  animation-delay: 920ms;
}

.engine-stream i:nth-child(4) {
  --y: -8px;
  animation-delay: 1280ms;
}

.stream-input {
  left: 19%;
  top: 31%;
  width: 22%;
  transform: rotate(-7deg);
}

.stream-output {
  left: 45%;
  top: 31%;
  width: 20%;
  transform: rotate(3deg);
}

.stream-output::before,
.stream-output::after {
  background: linear-gradient(90deg, transparent, rgba(255, 196, 0, 0.96), rgba(255, 255, 255, 0.9), transparent);
}

.dashboard-output {
  position: absolute;
  left: 47%;
  top: 25%;
  z-index: 6;
  width: 22%;
  height: 250px;
  pointer-events: none;
}

.output-tile {
  position: absolute;
  left: 0;
  top: var(--tile-top, 0);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 5px;
  width: 78px;
  height: 56px;
  padding: 10px;
  border: 1px solid rgba(255, 196, 0, 0.42);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 223, 0.82)),
    #fff;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.12),
    0 0 28px rgba(255, 196, 0, 0.18);
  opacity: 0;
  transform: translate3d(0, 0, 40px) scale(0.5);
  animation: dashboardTileOut 5200ms cubic-bezier(0.22, 0.76, 0.32, 1) infinite;
  animation-delay: var(--tile-delay, 0ms);
  will-change: transform, opacity, filter;
}

.output-tile b {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 9px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(17, 17, 17, 0.72));
}

.output-tile i {
  display: block;
  height: var(--bar-h, 42%);
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, var(--gold), rgba(17, 17, 17, 0.78));
}

.output-tile i:nth-of-type(2) {
  --bar-h: 62%;
}

.output-tile i:nth-of-type(3) {
  --bar-h: 82%;
}

.output-tile-one {
  --tile-top: 18px;
  --tile-y: 6px;
  --tile-delay: 620ms;
}

.output-tile-two {
  --tile-top: 94px;
  --tile-y: -18px;
  --tile-delay: 1480ms;
}

.output-tile-three {
  --tile-top: 166px;
  --tile-y: -36px;
  --tile-delay: 2320ms;
}

.command-center {
  position: absolute;
  right: 0;
  top: 5%;
  z-index: 5;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  width: min(64%, 760px);
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(232, 229, 220, 0.95);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 231, 0.92)),
    #fff;
  box-shadow:
    0 46px 98px rgba(17, 17, 17, 0.16),
    0 0 0 1px rgba(255, 196, 0, 0.12) inset;
  transform: rotate(-1.2deg) translateZ(0);
  transform-origin: left center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.command-center:hover,
.command-center.is-live {
  transform: translateY(-5px) rotate(-0.4deg) scale(1.008);
  box-shadow:
    0 58px 118px rgba(17, 17, 17, 0.2),
    0 0 0 1px rgba(255, 196, 0, 0.18) inset;
}

.command-sidebar {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 22px 13px;
  border-right: 1px solid #eee9dd;
  background:
    linear-gradient(180deg, rgba(255, 196, 0, 0.1), transparent 42%),
    #fbfbf8;
}

.command-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: #111;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  line-height: 1.05;
}

.command-brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #111;
  color: var(--gold);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);
}

.command-brand-mark svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.command-sidebar button,
.command-period,
.command-card {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.command-sidebar button {
  min-height: 34px;
  padding: 0 10px;
  border-radius: 7px;
  background: transparent;
  color: #6e6e6e;
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.command-sidebar button:hover,
.command-sidebar button.is-active {
  background: var(--gold);
  color: #111;
  transform: translateX(3px);
}

.command-main {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  padding: 24px;
  background:
    radial-gradient(circle at 88% 11%, rgba(255, 196, 0, 0.18), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 227, 0.48));
}

.command-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.command-top p {
  margin: 0 0 4px;
  color: #111;
  font-size: clamp(18px, 1.38vw, 21px);
  font-weight: 950;
}

.command-top span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.command-period {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  min-width: 104px;
  padding: 0 14px;
  border: 1px solid #eee9dd;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: #111;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease;
}

.command-period:hover {
  border-color: rgba(255, 196, 0, 0.72);
  transform: translateY(-2px);
}

.command-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.command-card {
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 118px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid #eee9dd;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.command-card:hover,
.command-card-highlight {
  border-color: rgba(255, 196, 0, 0.62);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.command-card span {
  color: #111;
  font-size: 11px;
  font-weight: 950;
  line-height: 1.16;
}

.command-card strong {
  color: #111;
  font-size: clamp(20px, 1.28vw, 27px);
  line-height: 1;
  white-space: nowrap;
}

.command-card em {
  color: var(--green);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  animation: liveMetric 2400ms ease-in-out infinite;
}

.command-card-highlight {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 196, 0, 0.28), transparent 34%),
    #111;
}

.command-card-highlight span,
.command-card-highlight strong {
  color: #fff;
}

.command-card-highlight em {
  color: var(--gold);
}

.command-body {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(176px, 0.86fr);
  gap: 14px;
  margin-top: 16px;
}

.command-chart,
.command-activity {
  min-height: 176px;
  padding: 16px;
  border: 1px solid #eee9dd;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.04);
}

.command-chart .chart-head {
  align-items: flex-start;
  gap: 10px;
}

.command-chart .chart-head span {
  min-width: 0;
  line-height: 1.15;
}

.command-chart .chart-head small {
  flex: 0 0 auto;
}

.command-bars {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 10px;
  height: 106px;
  padding-top: 16px;
}

.command-bars i {
  display: block;
  height: var(--h);
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--gold), #ede6d4);
  transform-origin: bottom;
  animation: barLift 2600ms ease-in-out infinite;
}

.command-bars i:nth-child(even) {
  background: linear-gradient(180deg, #111, #d7d2c4);
}

.command-bars i:nth-child(2) { animation-delay: 120ms; }
.command-bars i:nth-child(3) { animation-delay: 240ms; }
.command-bars i:nth-child(4) { animation-delay: 360ms; }
.command-bars i:nth-child(5) { animation-delay: 480ms; }
.command-bars i:nth-child(6) { animation-delay: 600ms; }
.command-bars i:nth-child(7) { animation-delay: 720ms; }
.command-bars i:nth-child(8) { animation-delay: 840ms; }

.command-activity {
  display: grid;
  align-content: start;
  gap: 11px;
}

.command-activity span,
.command-footer strong {
  color: #111;
  font-size: 13px;
  font-weight: 950;
}

.command-activity p {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.28;
}

.command-activity p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255, 196, 0, 0.42);
  animation: activityPing 1800ms ease-out infinite;
}

.command-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-video-showcase {
  position: relative;
  align-self: start;
  min-width: 0;
  margin-top: clamp(6px, 1.2vw, 18px);
  isolation: isolate;
}

.hero-video-showcase::before {
  content: "";
  position: absolute;
  inset: -24px -18px auto auto;
  width: 74%;
  height: 70%;
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 196, 0, 0.12) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(0deg, rgba(255, 196, 0, 0.08) 0 1px, transparent 1px 16px);
  opacity: 0.62;
  z-index: -1;
}

.hero-video-showcase::after {
  content: "";
  position: absolute;
  inset: 12% 0 4% 16%;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 196, 0, 0.36), rgba(255, 196, 0, 0.08) 42%, transparent 72%),
    radial-gradient(circle at 78% 16%, rgba(0, 0, 0, 0.2), transparent 44%);
  filter: blur(20px);
}

.hero-video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 196, 0, 0.34);
  border-radius: 8px;
  background: #050505;
  box-shadow:
    0 42px 90px rgba(17, 17, 17, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.52) inset;
  transform: rotateX(2deg) rotateY(-3deg);
  transform-origin: left center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-video-frame:hover {
  transform: translateY(-5px) rotateX(1deg) rotateY(-1deg);
  box-shadow:
    0 52px 110px rgba(17, 17, 17, 0.2),
    0 0 0 1px rgba(255, 196, 0, 0.36) inset;
}

.hero-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 196, 0, 0.12), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.16)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 20%, transparent 84%, rgba(0, 0, 0, 0.18));
}

.hero-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 470px;
  object-fit: cover;
  object-position: center;
}

.dashboard-showcase {
  position: relative;
  align-self: start;
  min-width: 0;
  margin-top: clamp(10px, 2vw, 28px);
  padding: 0 24px 34px 0;
  isolation: isolate;
  perspective: 1200px;
}

.dashboard-showcase::before {
  content: "";
  position: absolute;
  inset: 0 -12px auto auto;
  width: 82%;
  height: 74%;
  background:
    repeating-linear-gradient(90deg, rgba(255, 196, 0, 0.11) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(0deg, rgba(255, 196, 0, 0.09) 0 1px, transparent 1px 16px);
  opacity: 0.55;
  border-radius: 8px;
  z-index: -1;
}

.dashboard-showcase::after {
  content: "";
  position: absolute;
  inset: 16% 2% 2% 18%;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 196, 0, 0.38), rgba(255, 196, 0, 0.1) 36%, transparent 68%),
    radial-gradient(circle at 82% 18%, rgba(0, 0, 0, 0.18), transparent 42%);
  filter: blur(18px);
}

.hero-flow-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.flow-path {
  position: absolute;
  inset: 6% -1% 3% 3%;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.flow-path path {
  fill: none;
  stroke: rgba(255, 196, 0, 0.72);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 12 16;
  filter: drop-shadow(0 0 12px rgba(255, 196, 0, 0.42));
  animation: traceFlow 3600ms linear infinite;
}

.flow-path path:nth-child(2) {
  stroke: rgba(15, 15, 15, 0.26);
  stroke-width: 2;
  stroke-dasharray: 8 18;
  animation-duration: 4600ms;
  animation-direction: reverse;
}

.flow-node {
  position: absolute;
  z-index: 2;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 0 8px rgba(255, 196, 0, 0.14),
    0 0 28px rgba(255, 196, 0, 0.55);
  animation: nodePulse 2200ms ease-in-out infinite;
}

.node-a {
  left: 8%;
  top: 55%;
}

.node-b {
  left: 34%;
  top: 24%;
  animation-delay: 260ms;
}

.node-c {
  right: 16%;
  top: 17%;
  animation-delay: 520ms;
}

.node-d {
  right: 7%;
  bottom: 26%;
  animation-delay: 780ms;
}

.hero-floating-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 196, 0, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.hero-system-ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 40px;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(255, 196, 0, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 218, 0.84)),
    #fff;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 12px 28px rgba(0, 0, 0, 0.06);
}

.hero-system-ribbon strong {
  display: inline-grid;
  place-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #111;
  color: var(--gold);
  font-size: 11px;
}

.hero-floating-card {
  display: grid;
  gap: 4px;
  width: min(214px, 34vw);
  min-height: 78px;
  padding: 14px 16px;
  animation: floatCard 5200ms ease-in-out infinite;
}

.hero-floating-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-floating-card strong {
  color: #111;
  font-size: 16px;
  line-height: 1.12;
}

.card-automation {
  left: -8px;
  bottom: 78px;
}

.card-profit {
  right: -2px;
  bottom: 20px;
  animation-delay: 700ms;
}

.dashboard-shell {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 154px 1fr;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid #e8e5dc;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 231, 0.92)),
    #fff;
  box-shadow:
    0 42px 90px rgba(17, 17, 17, 0.16),
    0 0 0 1px rgba(255, 196, 0, 0.12) inset;
  transform: rotateX(2deg) rotateY(-4deg);
  transform-origin: left center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.dashboard-shell:hover {
  transform: translateY(-5px) rotateX(1deg) rotateY(-2deg);
  box-shadow:
    0 52px 110px rgba(17, 17, 17, 0.18),
    0 0 0 1px rgba(255, 196, 0, 0.18) inset;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 18px;
  border-right: 1px solid #eee9dd;
  background:
    linear-gradient(180deg, rgba(255, 196, 0, 0.08), transparent 38%),
    #fbfbf8;
}

.mini-logo {
  width: 112px;
  height: 40px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  margin-bottom: 12px;
}

.mini-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.dashboard-sidebar span {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 6px;
  color: #6e6e6e;
  font-size: 12px;
  font-weight: 800;
}

.dashboard-sidebar .is-selected {
  color: #111;
  background: var(--gold);
}

.dashboard-main {
  position: relative;
  padding: 28px;
  background:
    radial-gradient(circle at 86% 13%, rgba(255, 196, 0, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 227, 0.42));
}

.dashboard-main::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 196, 0, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.dashboard-topbar p {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 900;
}

.dashboard-topbar span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.dashboard-live-panel {
  display: grid;
  gap: 8px;
  width: min(260px, 38%);
  min-width: 210px;
}

.live-signal {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(233, 228, 216, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-signal i {
  display: block;
  width: 7px;
  height: 14px;
  border-radius: 999px;
  background: var(--gold);
  animation: signalPulse 1400ms ease-in-out infinite;
}

.live-signal i:nth-child(2) {
  height: 20px;
  background: #111;
  animation-delay: 160ms;
}

.live-signal i:nth-child(3) {
  height: 11px;
  animation-delay: 320ms;
}

.search-line {
  width: 210px;
  height: 34px;
  border: 1px solid #eee9dd;
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 196, 0, 0.3) 50%, transparent 100%),
    linear-gradient(90deg, #f5f3ec 0 42%, transparent 42%);
  background-size: 180% 100%, 100% 100%;
  animation: scanLine 3000ms ease-in-out infinite;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.metric-card {
  display: grid;
  gap: 5px;
  min-height: 112px;
  padding: 16px;
  border: 1px solid #eee9dd;
  border-radius: 8px;
  background:
    linear-gradient(145deg, #fff, #fff9dd),
    #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
  transition: transform 180ms ease, border-color 180ms ease;
}

.metric-card:nth-child(2),
.metric-card:nth-child(4) {
  background: #111;
  border-color: #242424;
  color: #fff;
}

.metric-card:nth-child(2) span,
.metric-card:nth-child(4) span {
  color: rgba(255, 255, 255, 0.72);
}

.metric-card:hover {
  border-color: rgba(255, 196, 0, 0.62);
  transform: translateY(-2px);
}

.metric-card span,
.chart-head small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.metric-card strong {
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1;
}

.metric-card em {
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  animation: liveMetric 2400ms ease-in-out infinite;
}

.dashboard-lower {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(190px, 0.75fr);
  gap: 16px;
  margin-top: 18px;
}

.chart-card,
.activity-card {
  min-height: 238px;
  padding: 18px;
  border: 1px solid #eee9dd;
  border-radius: 8px;
  background: #fff;
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  font-weight: 900;
}

.live-dashboard-strip {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  overflow: hidden;
}

.live-dashboard-strip span {
  flex: 0 0 auto;
  min-height: 28px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 196, 0, 0.4);
  border-radius: 999px;
  background: rgba(255, 248, 223, 0.82);
  color: #111;
  font-size: 11px;
  font-weight: 900;
  animation: liveTicker 4200ms ease-in-out infinite;
}

.live-dashboard-strip span:nth-child(2) {
  animation-delay: 300ms;
}

.live-dashboard-strip span:nth-child(3) {
  animation-delay: 600ms;
}

.chart-bars {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 13px;
  height: 120px;
  padding-top: 18px;
}

.chart-bars i {
  display: block;
  height: var(--h);
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--gold), #ede6d4);
  transform-origin: bottom;
  animation: barLift 2600ms ease-in-out infinite;
}

.chart-bars i:nth-child(2) { animation-delay: 120ms; }
.chart-bars i:nth-child(3) { animation-delay: 240ms; }
.chart-bars i:nth-child(4) { animation-delay: 360ms; }
.chart-bars i:nth-child(5) { animation-delay: 480ms; }
.chart-bars i:nth-child(6) { animation-delay: 600ms; }
.chart-bars i:nth-child(7) { animation-delay: 720ms; }
.chart-bars i:nth-child(8) { animation-delay: 840ms; }

.chart-bars i:nth-child(even) {
  background: linear-gradient(180deg, #111, #d7d2c4);
}

.activity-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.activity-card span {
  font-size: 13px;
  font-weight: 900;
}

.activity-card p {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.activity-card p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255, 196, 0, 0.4);
  animation: activityPing 1800ms ease-out infinite;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  width: min(100% - 40px, 1360px);
  margin: 0 auto;
  padding: 34px 0 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 248, 223, 0.38), rgba(255, 255, 255, 0.96)),
    #fff;
}

.service-strip article {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 15px;
  row-gap: 8px;
  align-items: start;
  min-height: 150px;
  padding: 18px 16px;
  overflow: hidden;
  border: 1px solid rgba(233, 228, 216, 0.9);
  border-radius: 8px;
  background:
    radial-gradient(circle at 94% 0%, rgba(255, 196, 0, 0.18), transparent 38%),
    #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-strip article:hover {
  border-color: rgba(255, 196, 0, 0.72);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  --icon-accent: var(--gold);
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  overflow: hidden;
  border: 1px solid rgba(233, 228, 216, 0.95);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 20%, #fff 0 12%, transparent 13%),
    radial-gradient(circle at 28% 18%, color-mix(in srgb, var(--icon-accent) 26%, transparent), transparent 40%),
    linear-gradient(145deg, #fff, #fffaf0 56%, color-mix(in srgb, var(--icon-accent) 15%, #fff));
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  color: var(--icon-accent);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-icon::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -50%;
  width: 70%;
  height: 170%;
  background: rgba(255, 255, 255, 0.72);
  transform: rotate(24deg);
  opacity: 0;
  transition: opacity 180ms ease, transform 320ms ease;
}

.service-icon::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--icon-accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--icon-accent) 18%, transparent);
}

.service-strip article:hover .service-icon {
  border-color: color-mix(in srgb, var(--icon-accent) 58%, var(--line));
  box-shadow:
    0 20px 42px color-mix(in srgb, var(--icon-accent) 22%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  transform: translateY(-2px) scale(1.04);
}

.service-strip article:hover .service-icon::before {
  opacity: 1;
  transform: translateX(150%) rotate(24deg);
}

.service-icon svg {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 12px color-mix(in srgb, var(--icon-accent) 22%, transparent));
  transition: transform 180ms ease;
}

.service-strip article:hover .service-icon svg {
  transform: rotate(-4deg) scale(1.04);
}

.service-icon .icon-dot {
  fill: currentColor;
  stroke: #fff;
  stroke-width: 1.5;
}

.service-icon .icon-spark {
  color: #111;
  stroke-width: 2.5;
}

.code-icon { --icon-accent: var(--green); }
.brain-icon { --icon-accent: var(--gold-dark); }
.cloud-icon { --icon-accent: var(--blue); }
.link-icon { --icon-accent: var(--purple); }
.shield-icon { --icon-accent: var(--orange); }

.service-strip h2 {
  grid-column: 2;
  margin: 0 0 9px;
  font-size: 17px;
  line-height: 1.2;
}

.service-strip p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.trusted,
.visual-story,
.method,
.impact-lab,
.solutions,
.work,
.industries,
.contact {
  width: min(100% - 40px, 1360px);
  margin: 0 auto;
}

.trusted {
  padding: 38px 0;
}

.section-rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 26px;
}

.section-rule span {
  height: 1px;
  background: var(--line);
}

.section-rule p {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.client-logo-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 132px;
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 196, 0, 0.13), transparent 34%),
    linear-gradient(180deg, #fff, #fffdf8);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.client-logo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.74) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.client-logo-card:hover {
  z-index: 1;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 196, 0, 0.2), transparent 34%),
    #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}

.client-logo-card:hover::after {
  transform: translateX(120%);
}

.client-logo-card:last-child {
  border-right: 0;
}

.client-logo-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 220px);
  height: 88px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  filter: contrast(1.05) saturate(1.04);
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: 32px 0 70px;
}

.visual-story-copy h2 {
  max-width: 500px;
  margin: 0;
  color: #060606;
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 900;
  line-height: 1.06;
}

.visual-story-copy p:not(.eyebrow) {
  max-width: 500px;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 600;
}

.visual-gallery {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 16px;
}

.visual-frame {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(17, 17, 17, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.visual-frame:hover {
  border-color: rgba(255, 196, 0, 0.72);
  box-shadow: 0 28px 74px rgba(17, 17, 17, 0.15);
  transform: translateY(-4px);
}

.visual-frame-large {
  grid-row: span 2;
}

.visual-frame img {
  width: 100%;
  height: 100%;
  min-height: 214px;
  aspect-ratio: 14 / 9;
  object-fit: contain;
  background: #f8f4e8;
}

.visual-frame-large img {
  min-height: 448px;
}

.visual-frame figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 196, 0, 0.42);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.82);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.method {
  display: grid;
  grid-template-columns: minmax(360px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: 74px 0 54px;
}

.visual-story-copy h2,
.section-copy h2,
.center-heading h2,
.impact-copy h2,
.work-intro h2,
.contact-copy h2,
.cta-band h2 {
  margin: 0;
  color: #060606;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.07;
  text-wrap: balance;
}

.section-copy h2,
.visual-story-copy h2,
.work-intro h2,
.contact-copy h2 {
  max-width: 680px;
}

.section-copy p:not(.eyebrow),
.center-heading p:not(.eyebrow),
.impact-copy p,
.work-intro p,
.contact-copy p,
.cta-band p {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 600;
}

.section-copy::after {
  content: "";
  display: block;
  width: 96px;
  height: 4px;
  margin-top: 28px;
  border-radius: 999px;
  background: var(--gold);
}

.method-image-wrap {
  position: relative;
  justify-self: end;
  width: min(100%, 740px);
  margin: 0;
  overflow: hidden;
  padding: clamp(10px, 1.4vw, 18px);
  border: 1px solid rgba(255, 196, 0, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.18), rgba(255, 255, 255, 0)),
    #101010;
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.18);
}

.method-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.method-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: contain;
}

.method-wheel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-height: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.method-wheel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 196, 0, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.method-wheel::after {
  display: none;
}

.method-center {
  position: relative;
  grid-column: 1 / -1;
  z-index: 2;
  display: grid;
  place-items: center;
  justify-self: center;
  width: min(440px, 100%);
  height: 150px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #343534;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
}

.method-center img {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.method-node {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-rows: auto auto;
  gap: 4px 14px;
  max-width: none;
  min-height: 132px;
  padding: 18px;
  border: 1px solid #eee9dd;
  border-radius: 8px;
  background: #fffdf8;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.method-node:hover {
  border-color: rgba(255, 196, 0, 0.72);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.method-node strong {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0;
  border-radius: 50%;
  background: #101010;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.node-f strong,
.node-o strong {
  color: #111;
  background: var(--gold);
}

.method-node span {
  font-size: 16px;
  font-weight: 900;
}

.method-node p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.node-f {
  left: auto;
  top: auto;
  transform: none;
}

.node-l {
  right: auto;
  top: auto;
}

.node-o {
  left: auto;
  bottom: auto;
  transform: none;
}

.node-w {
  left: auto;
  top: auto;
}

.impact-lab {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 74px clamp(18px, 4vw, 54px);
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.96), rgba(33, 33, 30, 0.94)),
    #101010;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.16);
}

.impact-copy h2,
.impact-copy p {
  color: #fff;
}

.impact-copy .eyebrow {
  border-color: rgba(255, 196, 0, 0.38);
  background: rgba(255, 196, 0, 0.12);
  color: #ffd84a;
}

.impact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.impact-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.impact-chip {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.impact-chip:hover,
.impact-chip.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: #111;
  transform: translateY(-2px);
}

.impact-console {
  display: grid;
  gap: 22px;
  min-width: 0;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.console-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.console-topline span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.console-topline strong {
  color: var(--gold);
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: 1.05;
  text-align: right;
}

.blueprint-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 250px;
}

.pulse-ring {
  position: absolute;
  inset: 8% 26%;
  border: 1px solid rgba(255, 196, 0, 0.26);
  border-radius: 50%;
  animation: pulseBlueprint 2600ms ease-in-out infinite;
}

.blueprint-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
  color: #fff;
}

.blueprint-card.is-gold {
  grid-column: 1 / -1;
  min-height: 96px;
  border-color: rgba(255, 196, 0, 0.48);
  background: rgba(255, 196, 0, 0.14);
}

.blueprint-card small,
.impact-results small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.blueprint-card strong {
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.12;
}

.blueprint-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  width: 86px;
}

.blueprint-lines i {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), var(--gold), rgba(255, 255, 255, 0.12));
  animation: flowLine 1700ms ease-in-out infinite;
}

.blueprint-lines i:nth-child(2) {
  animation-delay: 180ms;
}

.blueprint-lines i:nth-child(3) {
  animation-delay: 360ms;
}

.impact-slider {
  display: grid;
  gap: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.impact-slider input {
  width: 100%;
  accent-color: var(--gold);
}

.impact-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.impact-results div {
  display: grid;
  gap: 6px;
  min-height: 102px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.impact-results strong {
  color: #fff;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

@keyframes pulseBlueprint {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.95);
  }

  50% {
    opacity: 0.78;
    transform: scale(1.03);
  }
}

@keyframes flowLine {
  0%, 100% {
    opacity: 0.34;
    transform: scaleX(0.72);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes traceFlow {
  to {
    stroke-dashoffset: -56;
  }
}

@keyframes nodePulse {
  0%, 100% {
    opacity: 0.72;
    transform: scale(0.88);
  }

  50% {
    opacity: 1;
    transform: scale(1.16);
  }
}

@keyframes orbitTool {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 8px -12px;
  }
}

@keyframes feedToolIntoEngine {
  0%, 18% {
    opacity: 1;
    filter: none;
    transform: translate3d(0, 0, 0) rotate(var(--r)) scale(1);
  }

  44% {
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(255, 196, 0, 0.22));
    transform: translate3d(var(--feed-mid-x, var(--feed-x)), var(--feed-mid-y, var(--feed-y)), 34px) rotate(-2deg) scale(0.9);
  }

  62% {
    opacity: 0.95;
    filter: blur(0.2px) drop-shadow(0 0 18px rgba(255, 196, 0, 0.72));
    transform: translate3d(var(--feed-x), var(--feed-y), 94px) rotate(0deg) scale(0.42);
  }

  72%, 84% {
    opacity: 0;
    filter: blur(1.5px) drop-shadow(0 0 26px rgba(255, 196, 0, 0.9));
    transform: translate3d(calc(var(--feed-x) + 18px), calc(var(--feed-y) - 4px), 130px) rotate(0deg) scale(0.08);
  }

  92% {
    opacity: 0;
    filter: none;
    transform: translate3d(0, 0, 0) rotate(var(--r)) scale(0.8);
  }

  100% {
    opacity: 1;
    filter: none;
    transform: translate3d(0, 0, 0) rotate(var(--r)) scale(1);
  }
}

@keyframes floatChip {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: -8px -8px;
  }
}

@keyframes spinGear {
  to {
    rotate: 360deg;
  }
}

@keyframes engineSpin {
  0% {
    transform: rotateX(8deg) rotateY(-32deg) translateZ(0);
  }

  25% {
    transform: rotateX(-4deg) rotateY(62deg) translateZ(10px);
  }

  50% {
    transform: rotateX(7deg) rotateY(152deg) translateZ(0);
  }

  75% {
    transform: rotateX(-5deg) rotateY(246deg) translateZ(10px);
  }

  100% {
    transform: rotateX(8deg) rotateY(328deg) translateZ(0);
  }
}

@keyframes engineAura {
  0%, 100% {
    opacity: 0.72;
    transform: scale(0.94);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes dashboardTileOut {
  0%, 46% {
    opacity: 0;
    filter: blur(1px);
    transform: translate3d(0, 0, 70px) scale(0.36) rotateY(-42deg);
  }

  55% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(34px, var(--tile-y), 54px) scale(0.72) rotateY(-18deg);
  }

  78% {
    opacity: 1;
    transform: translate3d(clamp(92px, 12vw, 180px), calc(var(--tile-y) - 8px), 18px) scale(1) rotateY(0deg);
  }

  100% {
    opacity: 0;
    filter: blur(0.8px);
    transform: translate3d(clamp(132px, 16vw, 238px), calc(var(--tile-y) - 12px), 0) scale(0.86) rotateY(14deg);
  }
}

@keyframes energyRun {
  0% {
    opacity: 0;
    transform: translateY(-50%) scaleX(0.1);
    transform-origin: left center;
  }

  28% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-50%) scaleX(1);
    transform-origin: left center;
  }
}

@keyframes particleFlow {
  0% {
    left: 0;
    opacity: 0;
    transform: translateY(-50%) scale(0.55);
  }

  15%,
  82% {
    opacity: 1;
  }

  100% {
    left: calc(100% - 9px);
    opacity: 0;
    transform: translateY(-50%) scale(1.08);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes scanLine {
  0%, 100% {
    background-position: 160% 0, 0 0;
  }

  50% {
    background-position: 0 0, 0 0;
  }
}

@keyframes barLift {
  0%, 100% {
    transform: scaleY(0.82);
  }

  50% {
    transform: scaleY(1);
  }
}

@keyframes signalPulse {
  0%, 100% {
    opacity: 0.45;
    transform: scaleY(0.62);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes liveMetric {
  0%, 100% {
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }
}

@keyframes liveTicker {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes activityPing {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 196, 0, 0.44);
  }

  80%, 100% {
    box-shadow: 0 0 0 9px rgba(255, 196, 0, 0);
  }
}

@keyframes revealPanel {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-path path,
  .flow-node,
  .tool-token,
  .doc-chip,
  .gear,
  .engine-aura,
  .engine-sphere,
  .engine-stream::before,
  .engine-stream::after,
  .engine-stream i,
  .output-tile,
  .hero-floating-card,
  .search-line,
  .chart-bars i,
  .command-bars i,
  .live-signal i,
  .metric-card em,
  .command-card em,
  .live-dashboard-strip span,
  .activity-card p::before,
  .command-activity p::before,
  .pulse-ring,
  .tab-panel {
    animation: none;
  }

  .output-tile {
    opacity: 0.82;
    transform: translate3d(72px, var(--tile-y), 0) scale(0.88);
  }
}

.solutions,
.industries {
  position: relative;
  padding: 62px 0 70px;
}

.solutions::before,
.industries::before {
  content: "";
  position: absolute;
  inset: 28px 50% auto auto;
  z-index: -1;
  width: min(520px, 46vw);
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.18), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.industries::before {
  inset: auto auto 18px 48%;
  background: radial-gradient(circle, rgba(45, 124, 232, 0.12), transparent 70%);
}

.center-heading {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 1040px;
  margin: 0 auto 34px;
  text-align: center;
}

.center-heading h2 {
  max-width: 980px;
}

.solution-tabs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto 22px;
  padding: 8px;
  border: 1px solid rgba(233, 228, 216, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

.tab-button {
  position: relative;
  min-height: 44px;
  overflow: hidden;
  padding: 0 18px 0 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.tab-button::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.42;
  transform: translateY(-50%);
}

.tab-button.is-active,
.tab-button:hover,
.tab-button:focus {
  border-color: var(--gold);
  background: var(--gold);
  color: #111;
  outline: none;
  transform: translateY(-2px);
}

.tab-button.is-active::before {
  opacity: 1;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.08);
}

.tab-panels {
  margin: 0 auto 28px;
  max-width: 1040px;
}

.tab-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  min-height: 190px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 224, 0.88)),
    #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.08);
  animation: revealPanel 260ms ease;
}

.tab-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, var(--gold), #111);
}

.tab-panel::after {
  content: "";
  position: absolute;
  inset: auto 24px 18px auto;
  width: 160px;
  height: 110px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.06) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(255, 196, 0, 0.2) 0 1px, transparent 1px 18px);
  opacity: 0.48;
  pointer-events: none;
}

.tab-panel > *,
.industry-grid article > * {
  position: relative;
  z-index: 1;
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
  text-wrap: balance;
}

.tab-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 600;
}

.tab-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tab-panel li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-weight: 800;
  transition: transform 160ms ease, color 160ms ease;
}

.tab-panel li:hover {
  color: #111;
  transform: translateX(5px);
}

.tab-panel li::before,
.cta-promises span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 3px solid var(--gold);
  border-radius: 50%;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.platform-grid article,
.case-card,
.industry-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.platform-grid article:hover,
.case-card:hover,
.industry-grid article:hover {
  border-color: rgba(255, 196, 0, 0.72);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.platform-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 220px;
  padding: 24px 16px;
  text-align: center;
}

.platform-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
}

.platform-icon.green { background: var(--green); }
.platform-icon.forest { background: #1f7a4c; }
.platform-icon.purple { background: var(--purple); }
.platform-icon.pink { background: var(--pink); }
.platform-icon.orange { background: var(--orange); }
.platform-icon.blue { background: var(--blue); }

.platform-grid h3,
.case-card h3,
.industry-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.16;
}

.platform-grid p,
.case-card p,
.industry-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.work {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  gap: 28px;
  align-items: start;
  padding: 42px 0 68px;
}

.work-intro {
  position: sticky;
  top: 118px;
}

.work-intro .btn {
  margin-top: 16px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.case-card {
  overflow: hidden;
}

.case-card h3,
.case-card p {
  padding: 0 18px;
}

.case-card p {
  padding-bottom: 22px;
}

.case-visual {
  display: grid;
  place-items: center;
  min-height: 180px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 38px;
  font-weight: 900;
}

.case-visual span {
  display: grid;
  place-items: center;
  min-width: 74px;
  min-height: 62px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.38);
}

.visual-parking {
  background:
    linear-gradient(135deg, rgba(18, 55, 88, 0.7), rgba(54, 149, 219, 0.55)),
    repeating-linear-gradient(90deg, #d4e5ef 0 38px, #f8fafb 38px 74px);
}

.visual-crm {
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.38), rgba(45, 124, 232, 0.34)),
    linear-gradient(90deg, #f7f7f5 0 20%, #fff 20% 100%);
}

.visual-automation {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.78), rgba(238, 139, 34, 0.5)),
    repeating-linear-gradient(45deg, #253446 0 18px, #34465b 18px 36px);
}

.visual-mobile {
  background:
    linear-gradient(135deg, rgba(19, 160, 95, 0.68), rgba(45, 124, 232, 0.58)),
    repeating-linear-gradient(90deg, #e9f2fb 0 30px, #f9fbfc 30px 60px);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.industry-grid article {
  min-height: 194px;
  padding: 116px 24px 24px;
  border-top: 5px solid var(--gold);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 226, 0.64)),
    #fff;
}

.industry-grid article:nth-child(2) { border-top-color: var(--green); }
.industry-grid article:nth-child(3) { border-top-color: var(--purple); }
.industry-grid article:nth-child(4) { border-top-color: var(--orange); }
.industry-grid article:nth-child(5) { border-top-color: var(--blue); }

.industry-grid article::before {
  content: none;
}

.industry-grid article::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -32px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.16);
  transition: transform 220ms ease, opacity 220ms ease;
}

.industry-grid article:hover::after {
  opacity: 0.88;
  transform: scale(1.28);
}

.industry-grid article:hover::before {
  transform: none;
  box-shadow: none;
}

.industry-grid article > .industry-icon {
  position: absolute;
  left: 22px;
  top: 24px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #3e3100;
  box-shadow: none;
  pointer-events: none;
  transition: transform 220ms ease;
}

.ministry-icon {
  color: #05633c;
}

.commerce-icon {
  color: #442dbb;
}

.construction-icon {
  color: #8b4700;
}

.services-icon {
  color: #00558d;
}

.industry-grid article > .industry-icon svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.14));
  transition: transform 220ms ease;
}

.industry-grid article:hover .industry-icon svg {
  transform: scale(1.08);
}

.industry-grid article:hover .industry-icon {
  transform: translateY(-4px) rotate(-4deg);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 36px;
  align-items: center;
  padding: 48px clamp(20px, 7vw, 140px);
  background:
    linear-gradient(90deg, rgba(255, 196, 0, 0.92), rgba(255, 211, 45, 0.92)),
    #ffc400;
}

.cta-band h2,
.cta-band p {
  color: #090909;
}

.cta-band p {
  margin-bottom: 0;
}

.cta-promises {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cta-promises span {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  font-weight: 900;
}

.cta-promises span::before {
  top: 4px;
  width: 7px;
  height: 7px;
  border-color: #111;
}

.contact {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  padding: 74px 0 82px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a,
.contact-list span {
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 850;
}

.contact-list a:hover {
  color: var(--gold-dark);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #1b1b1b;
  font-size: 13px;
  font-weight: 900;
}

.contact-form input:not([type="radio"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ded8c7;
  border-radius: 8px;
  background: #fffdf8;
  color: #111;
  font-size: 15px;
  font-weight: 650;
}

.contact-form input:not([type="radio"]),
.contact-form select {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form select {
  appearance: none;
  padding-right: 44px;
  background:
    linear-gradient(45deg, transparent 50%, #111 50%) right 20px center / 7px 7px no-repeat,
    linear-gradient(135deg, #111 50%, transparent 50%) right 15px center / 7px 7px no-repeat,
    radial-gradient(circle at 96% 50%, rgba(255, 196, 0, 0.16), transparent 30%),
    #fffdf8;
  cursor: pointer;
}

.contact-form textarea {
  min-height: 132px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:not([type="radio"]):focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-dark);
  outline: 3px solid rgba(255, 196, 0, 0.25);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
}

.contact-form button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(360px, 0.7fr) minmax(0, 1fr);
  gap: 40px;
  padding: 42px clamp(20px, 5vw, 64px) 26px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-brand {
  display: grid;
  justify-items: start;
  text-align: left;
}

.footer-brand img {
  width: min(560px, 92vw);
  height: 178px;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 390px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr)) minmax(220px, 0.96fr);
  gap: 24px;
}

.footer-columns div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-columns h2 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 900;
}

.footer-columns a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.footer-columns a:hover {
  color: var(--gold-dark);
}

.footer-action {
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 196, 0, 0.44);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 196, 0, 0.2), transparent 34%),
    #111;
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.footer-action h2 {
  color: #fff;
}

.footer-action p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.footer-action .footer-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 4px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--gold);
  color: #111;
  font-size: 12px;
  font-weight: 950;
}

.footer-action .footer-action-link:hover {
  background: #fff;
  color: #111;
}

.copyright {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  text-align: center;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(280px, 360px) auto auto;
  }

  .brand {
    width: min(360px, 36vw);
    height: 104px;
  }

  .main-nav {
    gap: 15px;
  }

  .header-cta {
    padding-inline: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 104px);
    background-position: 58% center;
  }

  .hero-command-stage {
    min-height: 610px;
  }

  .hero-image-stage {
    min-height: auto;
  }

  .hero-image-stage img {
    margin-inline: auto;
  }

  .flow-engine {
    left: 34%;
    top: 34%;
    width: 172px;
    height: 172px;
  }

  .stream-input {
    left: 22%;
    width: 20%;
  }

  .stream-output {
    left: 47%;
    width: 19%;
  }

  .dashboard-output {
    left: 49%;
    width: 19%;
  }

  .command-center {
    width: min(64%, 720px);
    right: 2%;
  }

  .tool-chaos {
    width: 46%;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-proof span:nth-child(3) {
    border-right: 0;
  }

  .dashboard-shell {
    max-width: 860px;
    margin: 0 auto;
    transform: none;
  }

  .hero-video-frame {
    max-width: 860px;
    margin: 0 auto;
    transform: none;
  }

  .dashboard-shell:hover {
    transform: translateY(-4px);
  }

  .hero-video-frame:hover {
    transform: translateY(-4px);
  }

  .hero-floating-card {
    width: min(210px, 28vw);
  }

  .service-strip,
  .platform-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .impact-lab {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 88px;
  }

  .hero-command-stage {
    min-height: 560px;
  }

  .hero-image-stage {
    min-height: auto;
  }

  .flow-engine {
    left: 25%;
    top: 35%;
    width: 132px;
    height: 132px;
  }

  .engine-label {
    display: none;
  }

  .stream-input {
    left: 14%;
    width: 22%;
  }

  .stream-output {
    left: 38%;
    width: 18%;
  }

  .dashboard-output {
    left: 41%;
    width: 18%;
  }

  .command-center {
    grid-template-columns: 118px minmax(0, 1fr);
    width: 72%;
    min-height: 470px;
  }

  .command-main {
    padding: 22px;
  }

  .command-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .command-body {
    grid-template-columns: 1fr;
  }

  .command-activity {
    min-height: 130px;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof span:nth-child(3) {
    border-right: 1px solid rgba(233, 228, 216, 0.92);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 88px 0 auto;
    display: none;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

  .main-nav.is-open {
    display: grid;
    justify-content: stretch;
    gap: 8px;
  }

  .nav-link,
  .nav-menu-button {
    width: 100%;
    justify-content: space-between;
    padding: 0 10px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-menu {
    display: grid;
    gap: 4px;
  }

  .dropdown {
    position: static;
    display: none;
    min-width: 0;
    padding: 4px 0 4px 12px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu.is-open .dropdown {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .hero {
    width: min(100% - 32px, 1360px);
    padding-top: 42px;
  }

  .dashboard-showcase {
    padding: 22px 0 28px;
  }

  .hero-video-showcase {
    padding: 22px 0 28px;
  }

  .card-automation {
    left: 10px;
    bottom: 58px;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-live-panel {
    width: min(260px, 44%);
  }

  .dashboard-sidebar {
    display: none;
  }

  .method,
  .visual-story,
  .impact-lab,
  .work,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .method-wheel {
    min-height: auto;
  }

  .method-wheel::before {
    inset: 18px;
    width: auto;
    height: auto;
  }

  .method-wheel::after {
    display: none;
  }

  .node-f,
  .node-o {
    transform: none;
  }

  .node-f {
    left: auto;
  }

  .node-l {
    right: auto;
    top: auto;
  }

  .node-o {
    left: auto;
  }

  .node-w {
    left: auto;
    top: auto;
  }

  .work-intro {
    position: static;
  }

  .visual-gallery {
    grid-template-columns: 1fr;
  }

  .visual-frame-large {
    grid-row: auto;
  }

  .visual-frame-large img,
  .visual-frame img {
    min-height: 260px;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-promises {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .brand {
    width: min(286px, 68vw);
    height: 82px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 48%, rgba(255, 255, 255, 0.8) 100%),
      linear-gradient(180deg, #fff 0%, #fffaf0 100%);
  }

  .hero-copy,
  .hero-lede,
  .hero-note {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 1.06;
  }

  .hero h1 .hero-title-line,
  .hero h1 .hero-title-highlight {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .dashboard-showcase::before,
  .hero-video-showcase::before,
  .hero-flow-field,
  .tool-chaos,
  .flow-engine,
  .engine-stream,
  .dashboard-output,
  .hero-floating-card {
    display: none;
  }

  .hero-command-stage {
    min-height: auto;
    padding-top: 18px;
  }

  .hero-command-stage::before,
  .hero-command-stage::after {
    display: none;
  }

  .hero-image-stage {
    padding-top: 18px;
  }

  .hero-image-stage::before {
    display: none;
  }

  .hero-image-stage img {
    width: 100%;
    border-radius: 10px;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.1));
  }

  .command-center {
    position: relative;
    right: auto;
    top: auto;
    grid-template-columns: 1fr;
    width: 100%;
    min-height: auto;
    border-radius: 16px;
    transform: none;
  }

  .command-center:hover,
  .command-center.is-live {
    transform: translateY(-3px);
  }

  .command-sidebar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid #eee9dd;
  }

  .command-brand {
    grid-column: 1 / -1;
    margin-bottom: 2px;
  }

  .command-sidebar button {
    min-height: 34px;
    padding: 0 8px;
    text-align: center;
  }

  .command-sidebar button:hover,
  .command-sidebar button.is-active {
    transform: none;
  }

  .command-top {
    display: grid;
  }

  .command-metrics {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof span,
  .hero-proof span:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(233, 228, 216, 0.92);
  }

  .hero-proof span:last-child {
    border-bottom: 0;
  }

  .hero-video-frame video {
    min-height: 320px;
  }

  .dashboard-live-panel {
    width: 100%;
    min-width: 0;
  }

  .hero-system-ribbon {
    justify-content: space-between;
  }

  .hero-actions,
  .hero-actions .btn,
  .cta-band .btn {
    width: 100%;
  }

  .hero-proof,
  .blueprint-stage,
  .impact-results {
    grid-template-columns: 1fr;
  }

  .blueprint-lines {
    width: 100%;
  }

  .impact-lab {
    padding: 38px 18px;
  }

  .dashboard-main {
    padding: 18px;
  }

  .dashboard-topbar,
  .dashboard-lower,
  .tab-panel {
    grid-template-columns: 1fr;
  }

  .dashboard-topbar {
    display: grid;
  }

  .search-line {
    display: none;
  }

  .metric-grid,
  .service-strip,
  .platform-grid,
  .case-grid,
  .industry-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .service-strip {
    padding-inline: 20px;
  }

  .service-strip article {
    min-height: 0;
  }

  .trusted,
  .visual-story,
  .method,
  .impact-lab,
  .solutions,
  .work,
  .industries,
  .contact {
    width: min(100% - 32px, 1360px);
  }

  .section-rule {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-rule span {
    display: none;
  }

  .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logo-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-wheel {
    display: grid;
    gap: 16px;
    min-height: 0;
  }

  .method-wheel::before,
  .method-wheel::after {
    display: none;
  }

  .method-node {
    position: static;
    transform: none;
  }

  .method-center {
    position: relative;
    transform: none;
  }

  .method-center {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .method-node {
    grid-template-columns: 62px 1fr;
    max-width: none;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .method-node strong {
    grid-row: span 2;
    width: 54px;
    height: 54px;
    margin: 0;
    font-size: 26px;
  }

  .tab-panel {
    padding: 22px;
  }
}

@media (max-width: 460px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    width: min(252px, 70vw);
    height: 72px;
  }

  .hero,
  .trusted,
  .visual-story,
  .method,
  .impact-lab,
  .solutions,
  .work,
  .industries,
  .contact {
    width: min(100% - 24px, 1360px);
  }

  .btn,
  .header-cta {
    padding-inline: 14px;
  }

  .logo-row {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    gap: 10px;
  }

  .chart-bars {
    gap: 8px;
  }

  .hero-video-frame video {
    min-height: 250px;
  }

  .case-visual {
    min-height: 150px;
  }
}

/* Live hero command center */
.hero {
  grid-template-columns: minmax(360px, 660px) minmax(560px, 1fr);
  gap: clamp(26px, 4vw, 70px);
  align-items: center;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 196, 0, 0.16), transparent 28%),
    radial-gradient(circle at 62% 70%, rgba(0, 178, 122, 0.08), transparent 24%),
    linear-gradient(110deg, #fff 0%, #fffdf7 48%, #fff7d8 100%);
}

.hero::before {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0) 74%),
    repeating-linear-gradient(90deg, rgba(217, 155, 0, 0.1) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(0deg, rgba(217, 155, 0, 0.07) 0 1px, transparent 1px 20px);
}

.hero::after {
  content: "";
  position: absolute;
  right: min(7vw, 110px);
  top: 18%;
  z-index: 0;
  width: min(44vw, 720px);
  height: min(44vw, 720px);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 196, 0, 0.24), rgba(255, 196, 0, 0.08) 44%, transparent 70%),
    radial-gradient(circle at 68% 38%, rgba(17, 17, 17, 0.13), transparent 48%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-copy {
  max-width: 680px;
}

.hero-live-stage {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: clamp(560px, 42vw, 690px);
  isolation: isolate;
  perspective: 1400px;
}

.hero-live-stage::before {
  content: "";
  position: absolute;
  inset: 7% -2% 7% 13%;
  z-index: -2;
  border: 1px solid rgba(217, 155, 0, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.2)),
    repeating-linear-gradient(90deg, rgba(255, 196, 0, 0.13) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(255, 196, 0, 0.08) 0 1px, transparent 1px 18px);
  transform: rotate(-1deg);
}

.live-input-cloud {
  position: absolute;
  inset: 5% auto 6% 0;
  width: 35%;
  z-index: 3;
}

.live-token {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 58px;
  height: 58px;
  padding: 0 12px;
  border: 1px solid rgba(233, 228, 216, 0.95);
  border-radius: 15px;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.85), transparent 24%),
    linear-gradient(135deg, color-mix(in srgb, var(--token), #fff 72%), #fff);
  color: #111;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
  font-size: 12px;
  font-weight: 950;
  transform: translate3d(0, 0, 0) rotate(var(--tilt));
  animation: liveToolFeed 7200ms cubic-bezier(0.65, 0, 0.35, 1) infinite;
  animation-delay: var(--delay);
}

.live-token::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-bottom: 2px;
  border-radius: 6px;
  background: var(--token);
  box-shadow: inset 0 7px 12px rgba(255, 255, 255, 0.36);
}

.token-mail { --token: #ff596a; --tilt: -12deg; --delay: 0ms; --tx: 210px; --ty: 185px; left: 10%; top: 7%; }
.token-xls { --token: #00a874; --tilt: 11deg; --delay: 780ms; --tx: 158px; --ty: 142px; left: 58%; top: 17%; }
.token-crm { --token: #008ce3; --tilt: -10deg; --delay: 1560ms; --tx: 208px; --ty: 58px; left: 28%; top: 38%; }
.token-chat { --token: #7c4dff; --tilt: 12deg; --delay: 2340ms; --tx: 156px; --ty: -26px; left: 64%; top: 50%; }
.token-docs { --token: #ffc400; --tilt: 9deg; --delay: 3120ms; --tx: 224px; --ty: -148px; left: 16%; top: 68%; }
.token-orders { --token: #ff8a00; --tilt: -7deg; --delay: 3900ms; --tx: 132px; --ty: -198px; left: 62%; top: 74%; }
.token-report { --token: #111; --tilt: 7deg; --delay: 4680ms; --tx: 238px; --ty: -270px; left: 26%; top: 88%; min-width: 104px; height: 42px; }

.live-sync-core {
  position: absolute;
  left: 28%;
  top: 47%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.62), transparent 15%),
    conic-gradient(from 18deg, #111, #ffc400, #1b1b1b, #f0a000, #111);
  box-shadow:
    0 28px 54px rgba(0, 0, 0, 0.22),
    0 0 0 12px rgba(255, 196, 0, 0.12),
    0 0 0 1px rgba(255, 196, 0, 0.55) inset;
  transform-style: preserve-3d;
  animation: liveCoreTilt 5200ms ease-in-out infinite;
}

.live-sync-core::before,
.live-sync-core::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(255, 196, 0, 0.5);
  animation: liveRing 2400ms ease-out infinite;
}

.live-sync-core::after {
  inset: -30px;
  animation-delay: 900ms;
}

.live-sync-core span {
  position: absolute;
  inset: 20px;
  border-radius: inherit;
  background:
    repeating-linear-gradient(115deg, rgba(255, 196, 0, 0.86) 0 12px, rgba(0, 0, 0, 0.72) 12px 24px);
  opacity: 0.9;
  filter: saturate(1.2);
  transform: translateZ(12px);
}

.live-sync-core strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.82);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transform: translateY(66px) translateZ(24px);
}

.live-route {
  position: absolute;
  z-index: 2;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 196, 0, 0.9), transparent);
  box-shadow: 0 0 26px rgba(255, 196, 0, 0.62);
  overflow: hidden;
}

.live-route::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: liveRoute 1500ms linear infinite;
}

.live-route-in {
  left: 13%;
  top: 50%;
  width: 21%;
  transform: rotate(-7deg);
}

.live-route-out {
  left: 40%;
  top: 49%;
  width: 18%;
  transform: rotate(3deg);
}

.hero-live-stage .live-command-center {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 6;
  width: min(76%, 760px);
  min-height: 540px;
  grid-template-columns: 122px minmax(0, 1fr);
  transform: translateY(-50%) rotate(1deg);
  transform-origin: center;
  border-radius: 24px;
  box-shadow:
    0 52px 110px rgba(17, 17, 17, 0.18),
    0 0 0 1px rgba(255, 196, 0, 0.14) inset;
}

.hero-live-stage .live-command-center:hover,
.hero-live-stage .live-command-center.is-live {
  transform: translateY(-52%) rotate(0.25deg) scale(1.012);
}

.hero-live-stage .command-main {
  padding: 28px;
}

.hero-live-stage .command-top p {
  font-size: clamp(21px, 1.65vw, 30px);
  line-height: 1.12;
}

.hero-live-stage .command-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-live-stage .command-card {
  min-height: 126px;
  border-radius: 14px;
}

.hero-live-stage .command-card strong {
  font-size: clamp(24px, 1.75vw, 34px);
}

.hero-live-stage .command-body {
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.85fr);
  gap: 14px;
}

.hero-live-stage .command-chart,
.hero-live-stage .command-activity {
  min-height: 190px;
}

.hero-live-stage .command-footer {
  font-size: 13px;
}

@keyframes liveToolFeed {
  0%, 16% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(var(--tilt)) scale(1);
  }
  46%, 56% {
    opacity: 0.08;
    transform: translate3d(var(--tx), var(--ty), 0) rotate(0deg) scale(0.38);
  }
  72%, 100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(var(--tilt)) scale(1);
  }
}

@keyframes liveCoreTilt {
  0%, 100% { transform: rotateY(-22deg) rotateX(8deg); }
  50% { transform: rotateY(22deg) rotateX(-7deg); }
}

@keyframes liveRing {
  0% { opacity: 0.72; transform: scale(0.82); }
  100% { opacity: 0; transform: scale(1.36); }
}

@keyframes liveRoute {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    background:
      radial-gradient(circle at 74% 40%, rgba(255, 196, 0, 0.16), transparent 34%),
      linear-gradient(180deg, #fff 0%, #fffaf0 100%);
  }

  .hero::before {
    background:
      repeating-linear-gradient(90deg, rgba(217, 155, 0, 0.08) 0 1px, transparent 1px 20px),
      repeating-linear-gradient(0deg, rgba(217, 155, 0, 0.06) 0 1px, transparent 1px 20px);
    opacity: 0.5;
  }

  .hero-copy {
    max-width: 860px;
  }

  .hero-live-stage {
    min-height: 620px;
  }

  .hero-live-stage .live-command-center {
    width: min(78%, 760px);
    right: 2%;
  }
}

@media (max-width: 920px) {
  .hero-live-stage {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .live-input-cloud,
  .live-sync-core,
  .live-route {
    display: none;
  }

  .hero-live-stage .live-command-center {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-height: auto;
    transform: none;
  }

  .hero-live-stage .live-command-center:hover,
  .hero-live-stage .live-command-center.is-live {
    transform: translateY(-4px);
  }

  .hero-live-stage .command-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    background:
      linear-gradient(180deg, #fff 0%, #fffaf0 100%);
  }

  .hero-live-stage .live-command-center {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .hero-live-stage .command-sidebar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid #eee9dd;
  }

  .hero-live-stage .command-brand {
    display: none;
  }

  .hero-live-stage .command-main {
    padding: 20px;
  }

  .hero-live-stage .command-top {
    display: grid;
  }

  .hero-live-stage .command-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .hero {
    width: 100%;
    padding-inline: 14px;
  }

  .hero-live-stage .command-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* FSS hero artwork placement */
.hero {
  grid-template-columns: minmax(360px, 0.78fr) minmax(620px, 1.22fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  min-height: calc(100vh - 112px);
  background:
    radial-gradient(circle at 78% 44%, rgba(255, 196, 0, 0.13), transparent 36%),
    linear-gradient(110deg, #fff 0%, #fff 50%, #fffaf0 100%);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 42%, rgba(255, 255, 255, 0.18) 74%, transparent 100%),
    repeating-linear-gradient(90deg, rgba(217, 155, 0, 0.06) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(0deg, rgba(217, 155, 0, 0.045) 0 1px, transparent 1px 22px);
}

.hero::after {
  right: 4vw;
  top: 18%;
  width: min(50vw, 780px);
  height: min(38vw, 590px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 48% 54%, rgba(255, 196, 0, 0.22), transparent 55%),
    radial-gradient(circle at 82% 16%, rgba(17, 17, 17, 0.1), transparent 44%);
  filter: blur(22px);
}

.hero-art-stage {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: clamp(470px, 42vw, 690px);
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-art-stage::before {
  content: "";
  position: absolute;
  inset: 9% -2% 7% 8%;
  z-index: -1;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 248, 223, 0.24)),
    radial-gradient(circle at 44% 58%, rgba(255, 196, 0, 0.2), transparent 48%);
  filter: blur(8px);
}

.hero-art-stage img {
  width: min(112%, 1040px);
  max-width: none;
  height: auto;
  margin-left: auto;
  display: block;
  object-fit: contain;
  transform: translateX(2%);
  filter: drop-shadow(0 34px 62px rgba(0, 0, 0, 0.12));
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background:
      radial-gradient(circle at 70% 58%, rgba(255, 196, 0, 0.12), transparent 36%),
      linear-gradient(180deg, #fff 0%, #fffaf0 100%);
  }

  .hero-copy {
    max-width: 860px;
  }

  .hero-art-stage {
    min-height: auto;
  }

  .hero-art-stage img {
    width: min(100%, 1040px);
    margin-inline: auto;
    transform: none;
  }
}

@media (max-width: 720px) {
  .hero {
    width: 100%;
    padding-inline: 18px;
    background: linear-gradient(180deg, #fff 0%, #fffaf0 100%);
  }

  .hero-art-stage {
    padding-top: 14px;
  }

  .hero-art-stage::before,
  .hero::after {
    display: none;
  }

  .hero-art-stage img {
    width: 100%;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.1));
  }
}

/* Flow website assistant */
.site-agent {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  font-family: inherit;
}

.agent-launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 8px 16px 8px 8px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: #111;
  color: #fff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.agent-launcher span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-size: 13px;
}

.agent-launcher strong {
  font-size: 13px;
  text-transform: uppercase;
}

.agent-panel {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: min(430px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid rgba(233, 228, 216, 0.96);
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 196, 0, 0.18), transparent 34%),
    #fff;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.18);
}

.agent-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-bottom: 1px solid rgba(233, 228, 216, 0.9);
  background: rgba(255, 251, 231, 0.72);
}

.agent-head span {
  display: block;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.agent-head strong {
  display: block;
  margin-top: 4px;
  color: #111;
  font-size: 17px;
  line-height: 1.12;
  text-transform: uppercase;
}

.agent-head button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 50%;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.agent-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 12px 16px 0;
}

.agent-progress span {
  min-height: 28px;
  border: 1px solid rgba(233, 228, 216, 0.96);
  border-radius: 999px;
  background: #fff;
  color: #6b6355;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.agent-progress span.is-active {
  border-color: rgba(255, 196, 0, 0.8);
  background: var(--gold);
  color: #111;
}

.agent-progress span.is-complete {
  border-color: rgba(0, 158, 98, 0.24);
  background: rgba(0, 158, 98, 0.1);
  color: #007a4e;
}

.agent-messages {
  display: grid;
  gap: 10px;
  max-height: 320px;
  overflow-y: auto;
  padding: 16px;
}

.agent-message {
  width: fit-content;
  max-width: 92%;
  margin: 0;
  padding: 11px 13px;
  border-radius: 12px;
  color: #333;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.agent-message-bot {
  background: #fff8df;
  border: 1px solid rgba(217, 155, 0, 0.18);
}

.agent-message-user {
  justify-self: end;
  background: #111;
  color: #fff;
}

.agent-prompts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 16px 14px;
}

.agent-prompts button {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(217, 155, 0, 0.24);
  border-radius: 10px;
  background: rgba(255, 248, 223, 0.86);
  color: #6f4e00;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.agent-prompts button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 196, 0, 0.72);
  background: #fff7d7;
}

.agent-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(233, 228, 216, 0.9);
}

.agent-form input {
  min-height: 44px;
  min-width: 0;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #111;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
}

.agent-form button,
.agent-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  color: #111;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.agent-form button {
  padding: 0 14px;
}

.agent-cta {
  width: calc(100% - 32px);
  margin: 0 16px 16px;
}

.agent-prompts[hidden],
.agent-cta[hidden] {
  display: none;
}

@media (max-width: 720px) {
  .site-agent {
    right: 14px;
    bottom: 14px;
  }

  .agent-launcher strong {
    display: none;
  }

  .agent-panel {
    width: calc(100vw - 28px);
    max-height: calc(100vh - 104px);
  }

  .agent-messages {
    max-height: 300px;
  }
}
