:root {
  --ink: #101211;
  --ink-soft: #303533;
  --paper: #f7f8f3;
  --paper-strong: #ffffff;
  --muted: #68706c;
  --line: rgba(16, 18, 17, 0.14);
  --line-strong: rgba(16, 18, 17, 0.28);
  --dark: #0b0f0d;
  --dark-soft: #151b18;
  --cyan: #18d8b2;
  --blue: #2868ff;
  --amber: #f3aa2c;
  --radius: 8px;
  --max: 1180px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.is-dragging {
  cursor: grabbing;
  user-select: none;
}

[data-parallax] {
  --parallax-y: 0px;
  --parallax-progress: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: block;
  width: 100%;
  min-height: var(--header-height);
  padding: 0 40px;
  color: var(--paper-strong);
  background: rgba(11, 15, 13, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  position: absolute;
  top: 50%;
  left: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 182px;
  transform: translateY(-50%);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 3px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
}

.site-nav {
  position: absolute;
  top: 50%;
  left: 280px;
  right: auto;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: flex-start;
  transform: translateY(-50%);
  min-width: 0;
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-parent,
.nav-direct,
.nav-chevron {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-parent,
.nav-direct {
  padding: 0 10px;
}

.nav-chevron {
  justify-content: center;
  width: 24px;
  min-height: 44px;
  margin-left: -8px;
  padding: 0;
}

.nav-chevron::before {
  width: 5px;
  height: 5px;
  content: "";
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 180ms ease, color 180ms ease;
}

.nav-parent::after,
.nav-direct::after {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 1px;
  height: 2px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-parent:hover,
.nav-parent:focus-visible,
.nav-group:hover .nav-parent,
.nav-group.is-open .nav-parent,
.nav-group:hover .nav-chevron,
.nav-group.is-open .nav-chevron,
.nav-direct:hover,
.nav-direct:focus-visible,
.nav-current {
  color: #fff;
}

.nav-parent:hover::after,
.nav-parent:focus-visible::after,
.nav-group:hover .nav-parent::after,
.nav-group.is-open .nav-parent::after,
.nav-direct:hover::after,
.nav-direct:focus-visible::after,
.nav-current::after {
  transform: scaleX(1);
}

.nav-group:hover .nav-chevron::before,
.nav-group:focus-within .nav-chevron::before,
.nav-group.is-open .nav-chevron::before {
  transform: translateY(1px) rotate(225deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 24;
  display: grid;
  grid-template-columns: minmax(220px, 1fr);
  gap: 6px;
  width: 286px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(24, 216, 178, 0.16), transparent 38%),
    rgba(10, 15, 13, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.nav-menu::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
  content: "";
}

.nav-menu-wide {
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  width: 520px;
}

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

.nav-menu a {
  display: grid;
  gap: 4px;
  min-height: 66px;
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(24, 216, 178, 0.34);
  transform: translateY(-2px);
}

.nav-menu span,
.nav-menu small {
  display: block;
}

.nav-menu span {
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.nav-menu small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  position: absolute;
  top: 50%;
  right: 18px;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  transform: translateY(-50%);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

body.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 92svh;
  padding: 112px max(40px, calc((100vw - var(--max)) / 2)) 56px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(40, 104, 255, 0.24), transparent 28%),
    radial-gradient(circle at 20% 84%, rgba(24, 216, 178, 0.22), transparent 24%),
    linear-gradient(135deg, #080a09 0%, #101411 52%, #191b14 100%);
  overflow: hidden;
}

.flow-canvas,
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.hero-grid {
  z-index: -1;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.72) 48%, transparent 100%);
}

.hero-depth {
  position: absolute;
  inset: -12%;
  z-index: -1;
  pointer-events: none;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.hero-depth-backplane {
  opacity: 0.48;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(24, 216, 178, 0.16) 34.2% 34.6%, transparent 34.8% 100%),
    linear-gradient(115deg, transparent 0 61%, rgba(40, 104, 255, 0.14) 61.2% 61.5%, transparent 61.7% 100%);
  background-size: 520px 520px, 680px 680px;
}

.hero-depth-circuit {
  inset: 8% 3% 6% 48%;
  opacity: 0.58;
  background:
    linear-gradient(90deg, rgba(24, 216, 178, 0.28) 1px, transparent 1px),
    linear-gradient(rgba(40, 104, 255, 0.22) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 46%, rgba(243, 170, 44, 0.18) 46.1% 46.5%, transparent 46.7%);
  background-size: 34px 34px, 34px 34px, 220px 220px;
  clip-path: polygon(18% 0, 100% 12%, 86% 100%, 0 86%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 24%, #000 78%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 78%, transparent);
}

.hero-depth-scan {
  inset: -32% 6% auto auto;
  width: min(46vw, 640px);
  height: 130%;
  opacity: 0.32;
  background:
    linear-gradient(90deg, transparent, rgba(24, 216, 178, 0.22) 48%, transparent 70%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 14px);
  transform: translate3d(0, var(--parallax-y), 0) skewX(-16deg);
  animation: scanPulse 7s ease-in-out infinite;
}

.hero-data-stack {
  position: absolute;
  top: 18%;
  right: max(420px, calc((100vw - var(--max)) / 2 + 386px));
  z-index: 0;
  display: grid;
  gap: 8px;
  min-width: 82px;
  pointer-events: none;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.hero-data-stack span {
  display: grid;
  place-items: center;
  min-height: 28px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(24, 216, 178, 0.22);
  border-radius: 3px;
  box-shadow: 0 0 24px rgba(24, 216, 178, 0.08);
}

.hero-data-stack span:nth-child(2) {
  color: var(--cyan);
  border-color: rgba(40, 104, 255, 0.26);
}

.hero-data-stack span:nth-child(3) {
  color: var(--amber);
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: min(720px, calc(100% - 430px));
}

.page-hero {
  min-height: 78svh;
}

.page-hero .hero-content {
  max-width: min(820px, calc(100% - 500px));
}

.page-hero .hero-copy {
  max-width: 760px;
}

.home-page-hero .hero-content {
  max-width: min(620px, 42vw);
}

.home-hero-visual {
  position: absolute;
  right: max(40px, calc((100vw - var(--max)) / 2));
  bottom: 52px;
  z-index: 1;
  width: min(48vw, 720px);
  margin: 0;
  overflow: hidden;
  background: rgba(12, 18, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 32px 92px rgba(0, 0, 0, 0.36);
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.home-hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.38), transparent 38%),
    linear-gradient(180deg, transparent 60%, rgba(8, 10, 9, 0.72));
  pointer-events: none;
}

.home-hero-visual img,
.capability-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-visual img {
  aspect-ratio: 16 / 9;
}

.home-hero-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.home-hero-visual figcaption span {
  color: var(--cyan);
  text-transform: uppercase;
}

.home-hero-visual figcaption strong {
  color: rgba(255, 255, 255, 0.86);
}

.home-hero-metrics {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(420px, calc(100% - 36px));
}

.home-hero-metrics span {
  display: grid;
  gap: 5px;
  min-height: 66px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  background: rgba(5, 10, 9, 0.58);
  border: 1px solid rgba(24, 216, 178, 0.22);
  border-radius: 5px;
  backdrop-filter: blur(14px);
}

.home-hero-metrics b {
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.page-hero-panel {
  position: absolute;
  right: max(40px, calc((100vw - var(--max)) / 2));
  bottom: 64px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  gap: 10px;
  width: min(400px, 32vw);
  padding: 12px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(12, 18, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.page-hero-panel span {
  display: grid;
  gap: 4px;
  padding: 12px;
  min-height: 78px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 800;
}

.page-hero-panel b {
  color: var(--cyan);
  font-size: 25px;
  line-height: 1;
}

.hero-content::before {
  position: absolute;
  top: -42px;
  left: -26px;
  width: 118px;
  height: 118px;
  content: "";
  border: 1px solid rgba(24, 216, 178, 0.24);
  transform: rotate(18deg);
  pointer-events: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 68px;
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 680px;
  margin-top: 26px;
}

.hero-tags span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 850;
  background:
    linear-gradient(90deg, rgba(24, 216, 178, 0.12), transparent 62%),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
}

.hero-tags span::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--cyan);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-ai-panel {
  position: absolute;
  top: 50%;
  right: max(40px, calc((100vw - var(--max)) / 2));
  z-index: 1;
  width: 360px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(12, 18, 15, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  transform: translate3d(0, calc(-42% + var(--parallax-y)), 0);
  will-change: transform;
}

.hero-ai-panel::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, rgba(24, 216, 178, 0.32), transparent 34%),
    linear-gradient(315deg, rgba(40, 104, 255, 0.28), transparent 36%);
  border-radius: inherit;
  opacity: 0.7;
  pointer-events: none;
}

.ai-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 850;
}

.ai-panel-top span {
  color: var(--cyan);
}

.ai-panel-top strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ai-prompt {
  padding: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
}

.ai-prompt small {
  display: block;
  color: var(--amber);
  font-size: 10px;
  font-weight: 850;
}

.ai-prompt p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.ai-pipeline {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.ai-pipeline li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 6px 10px;
  align-items: center;
  min-height: 58px;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ai-pipeline li:first-child {
  border-top: 0;
}

.ai-pipeline span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--dark);
  font-size: 10px;
  font-weight: 900;
  background: var(--cyan);
  border-radius: 50%;
}

.ai-pipeline b,
.ai-pipeline em {
  display: block;
  font-style: normal;
}

.ai-pipeline b {
  color: #fff;
  font-size: 14px;
}

.ai-pipeline em {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 750;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button::after {
  position: absolute;
  inset: auto auto -40px -40px;
  width: 80px;
  height: 80px;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42), transparent 58%);
  opacity: 0;
  transform: translate(var(--magnetic-x, 0), var(--magnetic-y, 0));
  transition: opacity 180ms ease;
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
}

.button.primary {
  color: var(--dark);
  background: var(--cyan);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #62f3d6;
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-signal {
  position: absolute;
  right: max(40px, calc((100vw - var(--max)) / 2));
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 800;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.hero-signal i {
  display: block;
  width: 92px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan) 25%, rgba(255, 255, 255, 0.22) 25%);
}

.section {
  padding: 108px max(40px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
}

.tech-section {
  --section-parallax-y: 0px;
  --section-progress: 0;
  --section-focus-x: 44%;
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.tech-section::before {
  position: absolute;
  inset: -18% -8%;
  z-index: 0;
  content: "";
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(24, 216, 178, 0.16) 42.15% 42.45%, transparent 42.6%),
    linear-gradient(120deg, transparent 0 68%, rgba(40, 104, 255, 0.12) 68.15% 68.5%, transparent 68.65%),
    linear-gradient(rgba(16, 18, 17, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 17, 0.07) 1px, transparent 1px);
  background-size: 420px 420px, 620px 620px, 58px 58px, 58px 58px;
  -webkit-mask-image: radial-gradient(circle at var(--section-focus-x) 42%, #000, transparent 66%);
  mask-image: radial-gradient(circle at var(--section-focus-x) 42%, #000, transparent 66%);
  transform: translate3d(0, var(--section-parallax-y), 0);
  will-change: transform;
}

.method.tech-section::before,
.statement-band.tech-section::before,
.trust.tech-section::before,
.contact.tech-section::before {
  opacity: 0.42;
  background:
    linear-gradient(120deg, transparent 0 40%, rgba(24, 216, 178, 0.22) 40.15% 40.5%, transparent 40.65%),
    linear-gradient(120deg, transparent 0 72%, rgba(40, 104, 255, 0.18) 72.15% 72.5%, transparent 72.65%),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 440px 440px, 680px 680px, 62px 62px, 62px 62px;
}

.tech-section > * {
  position: relative;
  z-index: 1;
}

@keyframes scanPulse {
  0%,
  100% {
    opacity: 0.22;
    background-position: 0 0, 0 0;
  }

  50% {
    opacity: 0.44;
    background-position: 42px 0, 0 36px;
  }
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 1fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.14;
  font-weight: 850;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.services {
  background: var(--paper);
}

.page-section-dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(24, 216, 178, 0.14), transparent 44%),
    var(--dark);
}

.page-section-dark .section-heading p,
.page-section-dark .overview-card p,
.page-section-dark .product-card p,
.page-section-dark .product-card li {
  color: rgba(255, 255, 255, 0.68);
}

.page-section-dark .overview-card,
.page-section-dark .product-card {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.13);
}

.page-section-dark .overview-card h3,
.page-section-dark .product-card h3 {
  color: #fff;
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 36px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(24, 216, 178, 0.22), transparent 42%),
    #101511;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.page-cta h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.12;
}

.page-cta p {
  max-width: 700px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.brand-overview {
  background: #f2f6f0;
}

.home-service-snapshot {
  background: var(--paper-strong);
}

.feature-grid,
.deliverable-grid {
  display: grid;
  gap: 14px;
}

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

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

.feature-card,
.deliverable-card {
  min-height: 286px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.64)),
    linear-gradient(90deg, rgba(24, 216, 178, 0.12), transparent 64%);
  border: 1px solid rgba(16, 18, 17, 0.13);
  border-radius: var(--radius);
}

.feature-card h3,
.deliverable-card h3 {
  margin: 28px 0 0;
  font-size: 25px;
  line-height: 1.18;
}

.feature-card p,
.deliverable-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.home-capabilities {
  padding-top: 128px;
  padding-bottom: 128px;
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.capability-visual {
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  background: #080d0b;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.28);
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.capability-item {
  min-height: 314px;
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.overview-card .icon-badge,
.feature-card .icon-badge,
.capability-item .icon-badge,
.deliverable-card .icon-badge {
  margin-bottom: 24px;
  color: var(--cyan);
  text-transform: none;
}

.capability-item .icon-badge {
  background: rgba(24, 216, 178, 0.12);
  border-color: rgba(24, 216, 178, 0.28);
}

.capability-item span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.capability-item h3 {
  margin: 32px 0 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.16;
}

.capability-item p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.home-deliverables {
  background: #eef3ed;
}

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

.overview-card {
  min-height: 286px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.58)),
    linear-gradient(90deg, rgba(24, 216, 178, 0.13), transparent 62%);
  border: 1px solid rgba(16, 18, 17, 0.13);
  border-radius: var(--radius);
}

.overview-card span,
.product-card > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.overview-card h3,
.product-card h3 {
  margin: 28px 0 0;
  font-size: 27px;
  line-height: 1.18;
}

.overview-card p,
.product-card p,
.product-card li {
  color: var(--muted);
  font-size: 16px;
}

.overview-card p {
  margin: 18px 0 0;
}

.service-board {
  position: relative;
}

.service-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.service-lines path {
  fill: none;
  stroke: rgba(24, 216, 178, 0.52);
  stroke-width: 1.5;
  stroke-dasharray: 8 9;
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-board.is-linked .service-lines path {
  opacity: 1;
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.service-item {
  position: relative;
  min-height: 312px;
  padding: 24px 20px 22px;
  background: rgba(255, 255, 255, 0.36);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-item::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(24, 216, 178, 0.08);
  opacity: 0.42;
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-item:hover,
.service-item:focus-within,
.service-item.is-hovered {
  z-index: 3;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(24, 216, 178, 0.34);
  box-shadow: 0 22px 54px rgba(16, 18, 17, 0.12);
  transform: translateY(-8px);
}

.service-item:hover::after,
.service-item:focus-within::after,
.service-item.is-hovered::after {
  opacity: 1;
  transform: scale(1.4);
}

.service-item span,
.method-list span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.service-item h3,
.method-list h3,
.case-item h3 {
  margin: 26px 0 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0;
}

.service-item p,
.method-list p,
.case-item dd,
.trust-list p {
  color: var(--muted);
  font-size: 16px;
}

.service-item p {
  margin: 18px 0 0;
}

.service-item em {
  display: block;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.featured-work {
  padding: 128px max(40px, calc((100vw - 1340px) / 2));
  background: #dfe9e3;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.featured-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 72px;
  max-width: 1180px;
  margin: 0 auto;
}

.featured-type {
  max-width: 180px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.featured-intro h2 {
  max-width: 930px;
  margin: 0;
  font-size: 68px;
  line-height: 1.06;
  font-weight: 850;
}

.featured-intro > div:last-child > p {
  max-width: 730px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.showcase-stage {
  position: relative;
  min-height: 780px;
  max-width: 1340px;
  margin: 82px auto 0;
  background:
    linear-gradient(rgba(16, 18, 17, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 17, 0.055) 1px, transparent 1px),
    #bdebdc;
  background-size: 54px 54px;
  border: 1px solid rgba(16, 18, 17, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
}

.showcase-stage::before {
  position: absolute;
  inset: 7% 5% auto auto;
  width: 34%;
  height: 38%;
  content: "";
  background: #f3aa2c;
  opacity: 0.86;
  transform: rotate(8deg);
}

.products {
  background: #eef3ed;
}

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

.product-card {
  position: relative;
  min-height: 430px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.66)),
    #fff;
  border: 1px solid rgba(16, 18, 17, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 18, 17, 0.07);
}

.product-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 128px;
  height: 128px;
  content: "";
  border: 1px solid rgba(24, 216, 178, 0.28);
  transform: rotate(18deg);
}

.product-card p {
  margin: 18px 0 0;
}

.product-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 18px;
  font-weight: 700;
}

.product-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
  transform: translateY(-50%);
}

.product-card .button {
  width: auto;
  margin-top: 24px;
}

.product-card .button.ghost {
  color: var(--ink);
  background: rgba(16, 18, 17, 0.04);
  border-color: rgba(16, 18, 17, 0.14);
}

.product-card .button.ghost:hover,
.product-card .button.ghost:focus-visible {
  color: var(--dark);
  background: var(--cyan);
  border-color: var(--cyan);
}

.showcase-depth {
  position: absolute;
  inset: -10%;
  z-index: 1;
  pointer-events: none;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.showcase-depth-grid {
  opacity: 0.46;
  background:
    linear-gradient(rgba(16, 18, 17, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 17, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 50%, rgba(24, 216, 178, 0.18) 50.1% 50.5%, transparent 50.7%);
  background-size: 92px 92px, 92px 92px, 360px 360px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 20%, #000 72%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 72%, transparent);
}

.showcase-depth-beam {
  inset: auto -6% -24% 36%;
  height: 56%;
  opacity: 0.5;
  background:
    linear-gradient(105deg, transparent, rgba(40, 104, 255, 0.22) 42%, rgba(24, 216, 178, 0.24) 56%, transparent 72%);
  transform: translate3d(0, var(--parallax-y), 0) rotate(-8deg);
}

.showcase-window,
.showcase-phone,
.showcase-flow {
  transition: transform 260ms ease-out;
  will-change: transform;
}

.showcase-window {
  position: absolute;
  top: 72px;
  left: 5%;
  z-index: 2;
  width: 82%;
  height: 628px;
  color: var(--ink);
  background: #f9fbf8;
  border: 1px solid rgba(16, 18, 17, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 36px 90px rgba(16, 18, 17, 0.2);
  overflow: hidden;
}

.product-topbar {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  align-items: center;
  height: 48px;
  padding: 0 18px;
  color: var(--muted);
  font-size: 11px;
  background: #edf1ed;
  border-bottom: 1px solid var(--line);
}

.product-topbar strong {
  color: #167f6b;
  font-weight: 800;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  background: #b2bbb5;
  border-radius: 50%;
}

.window-dots i:first-child {
  background: #ef765f;
}

.window-dots i:nth-child(2) {
  background: var(--amber);
}

.window-dots i:last-child {
  background: var(--cyan);
}

.product-layout {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  height: calc(100% - 48px);
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 16px;
  color: rgba(255, 255, 255, 0.58);
  background: #111613;
}

.product-sidebar b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 0 26px 6px;
  color: var(--dark);
  background: var(--cyan);
  border-radius: 3px;
}

.product-sidebar span {
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 750;
  border-left: 2px solid transparent;
}

.product-sidebar span.is-current {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--cyan);
}

.product-main {
  padding: 34px;
  overflow: hidden;
}

.product-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.product-heading p,
.product-heading h3 {
  margin: 0;
}

.product-heading p {
  color: var(--muted);
  font-size: 11px;
}

.product-heading h3 {
  margin-top: 5px;
  font-size: 25px;
}

.product-heading time {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

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

.product-metrics > div {
  min-height: 128px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.product-metrics span,
.product-metrics small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.product-metrics strong {
  display: block;
  margin: 12px 0 4px;
  font-size: 31px;
  line-height: 1;
}

.product-metrics > div:first-child strong {
  color: #168f77;
}

.product-metrics > div:nth-child(2) strong {
  color: var(--blue);
}

.product-metrics > div:last-child strong {
  color: #bd7411;
}

.product-panels {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.product-chart,
.product-queue {
  min-height: 246px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.product-chart > div:first-child,
.product-queue > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-chart p,
.product-queue p,
.product-chart span,
.product-queue > div span {
  margin: 0;
  font-size: 11px;
}

.product-chart p,
.product-queue p {
  font-weight: 800;
}

.product-chart span,
.product-queue > div span {
  color: var(--muted);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 172px;
  margin-top: 22px;
  border-bottom: 1px solid var(--line);
}

.chart-bars i {
  flex: 1;
  height: var(--bar);
  background: #7de3cc;
  border-radius: 3px 3px 0 0;
}

.chart-bars i:nth-child(2n) {
  background: #5a8cff;
}

.product-queue ol {
  display: grid;
  gap: 0;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.product-queue li {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 50px;
  font-size: 10px;
  border-top: 1px solid var(--line);
}

.product-queue li b,
.product-queue li em {
  font-style: normal;
  font-weight: 800;
}

.product-queue li em {
  color: #168f77;
}

.showcase-phone {
  position: absolute;
  right: 3.2%;
  bottom: 34px;
  z-index: 4;
  width: 236px;
  min-height: 468px;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(40, 104, 255, 0.26), transparent 46%),
    #101511;
  border: 6px solid #0b0f0d;
  border-radius: 30px;
  box-shadow: 0 26px 70px rgba(16, 18, 17, 0.34);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
}

.showcase-phone > p {
  margin: 46px 0 5px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
}

.showcase-phone h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.16;
}

.phone-appointment {
  display: grid;
  margin-top: 36px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.phone-appointment span {
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
}

.phone-appointment strong {
  margin-top: 28px;
  font-size: 19px;
}

.phone-appointment small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
}

.showcase-phone button,
.mini-phone button,
.mini-browser button {
  width: 100%;
  min-height: 42px;
  margin-top: 42px;
  color: var(--dark);
  font-size: 11px;
  font-weight: 850;
  background: var(--cyan);
  border: 0;
  border-radius: 3px;
  pointer-events: none;
}

.showcase-flow {
  position: absolute;
  left: 2.4%;
  bottom: 34px;
  z-index: 3;
  width: 226px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 20px 56px rgba(16, 18, 17, 0.16);
}

.showcase-flow p {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 850;
}

.showcase-flow div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  color: var(--muted);
  font-size: 11px;
  border-top: 1px solid var(--line);
}

.showcase-flow b {
  color: var(--ink);
}

.featured-result {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 38px auto 0;
  border-top: 1px solid rgba(16, 18, 17, 0.24);
}

.featured-result p {
  margin: 0;
  padding: 24px 20px 0 0;
  font-size: 15px;
  font-weight: 800;
}

.featured-result span {
  margin-right: 18px;
  color: var(--blue);
  font-size: 12px;
}

.method {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(24, 216, 178, 0.12), transparent 42%),
    var(--dark);
}

.method.tech-section {
  overflow: visible;
}

.method .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  z-index: 1;
}

.method .section-heading p,
.method-list p {
  color: rgba(255, 255, 255, 0.68);
}

.method-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: rgba(255, 255, 255, 0.12);
}

.method-list li {
  position: relative;
  min-height: 260px;
  padding: 28px;
  background: var(--dark-soft);
  transition: background 220ms ease, transform 220ms ease;
}

.method-list li::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: var(--cyan);
  opacity: 0;
  transition: opacity 220ms ease;
}

.method-list li.is-active {
  background:
    linear-gradient(180deg, rgba(24, 216, 178, 0.14), transparent 78%),
    #1b2320;
  transform: translateY(-6px);
}

.method-list li.is-active::before {
  opacity: 1;
}

.method-list h3 {
  color: #fff;
}

.method-list p {
  margin: 18px 0 0;
}

.scenes {
  background: #eef3ed;
}

.scenes .section-heading {
  grid-template-columns: minmax(0, 780px);
}

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

.scene-map span {
  display: flex;
  align-items: flex-end;
  min-height: 168px;
  padding: 18px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.54)),
    linear-gradient(90deg, rgba(24, 216, 178, 0.16), transparent);
  border: 1px solid rgba(16, 18, 17, 0.12);
  border-radius: var(--radius);
}

.scene-map span:nth-child(2n) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.58)),
    linear-gradient(90deg, rgba(40, 104, 255, 0.14), transparent);
}

.scene-map span:nth-child(3n) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.58)),
    linear-gradient(90deg, rgba(243, 170, 44, 0.18), transparent);
}

.statement-band {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 78svh;
  padding: 120px max(40px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, transparent 0 72%, rgba(24, 216, 178, 0.12) 72% 72.2%, transparent 72.2%),
    linear-gradient(0deg, transparent 0 64%, rgba(255, 255, 255, 0.08) 64% 64.15%, transparent 64.15%),
    #0c100e;
  overflow: hidden;
}

.statement-band::after {
  position: absolute;
  right: -9vw;
  bottom: -19vw;
  z-index: -1;
  width: 48vw;
  height: 48vw;
  content: "";
  border: 1px solid rgba(24, 216, 178, 0.3);
  border-radius: 50%;
  box-shadow:
    0 0 0 8vw rgba(40, 104, 255, 0.05),
    0 0 0 16vw rgba(243, 170, 44, 0.025);
}

.statement-band h2 {
  margin: 0;
  font-size: clamp(58px, 6.8vw, 104px);
  line-height: 1.02;
  font-weight: 850;
}

.statement-band h2 span {
  display: block;
}

.statement-band h2 span:first-child {
  color: rgba(255, 255, 255, 0.46);
}

.statement-band h2 span:last-child {
  color: var(--cyan);
}

.cases {
  background: var(--paper-strong);
  overflow: hidden;
}

.case-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: -20px 0 18px;
}

.case-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.case-toolbar p span {
  color: var(--ink);
  font-size: 24px;
}

.case-toolbar div {
  display: flex;
  gap: 8px;
}

.case-arrow {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.case-arrow:hover,
.case-arrow:focus-visible {
  background: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.case-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 4px 0 20px;
  cursor: grab;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan) rgba(16, 18, 17, 0.08);
}

.case-track::-webkit-scrollbar {
  height: 8px;
}

.case-track::-webkit-scrollbar-track {
  background: rgba(16, 18, 17, 0.08);
}

.case-track::-webkit-scrollbar-thumb {
  background: var(--cyan);
  border-radius: 999px;
}

.case-item {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.35fr);
  flex: 0 0 min(1080px, calc(100vw - 80px));
  min-height: 590px;
  padding: 0;
  background: #fff;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  scroll-snap-align: start;
}

.case-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px 38px 36px 0;
}

.case-copy > p {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.case-item h3 {
  margin: 72px 0 auto;
  font-size: 42px;
  line-height: 1.08;
}

.case-item dl {
  display: grid;
  gap: 16px;
  margin: 42px 0 0;
}

.case-item div {
  min-width: 0;
}

.case-item dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.case-item dd {
  margin: 8px 0 0;
}

.case-copy dl > div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.case-visual {
  position: relative;
  min-height: 590px;
  border-left: 1px solid var(--line);
  overflow: hidden;
}

.case-visual-brand {
  display: grid;
  place-items: center;
  padding: 9%;
  background: #b9e8dc;
}

.mini-browser {
  width: 100%;
  min-height: 390px;
  background: #fafbf7;
  border: 1px solid rgba(16, 18, 17, 0.22);
  border-radius: 6px;
  box-shadow: 0 28px 70px rgba(16, 18, 17, 0.18);
  overflow: hidden;
}

.mini-browser > div {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 32px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 8px;
  background: #e8ece8;
  border-bottom: 1px solid var(--line);
}

.mini-browser > div i {
  width: 6px;
  height: 6px;
  background: #9ca69f;
  border-radius: 50%;
}

.mini-browser > div span {
  margin-left: 14px;
}

.mini-browser nav {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 46px;
  padding: 0 22px;
  font-size: 9px;
  border-bottom: 1px solid var(--line);
}

.mini-browser nav b {
  margin-right: auto;
  color: #147e69;
  font-size: 13px;
}

.mini-browser-main {
  min-height: 312px;
  padding: 52px 38px 32px;
  background:
    linear-gradient(90deg, rgba(40, 104, 255, 0.1), transparent 45%),
    #f8f9f4;
}

.mini-browser-main small {
  display: block;
  color: #147e69;
  font-size: 9px;
  font-weight: 850;
}

.mini-browser-main strong {
  display: block;
  max-width: 420px;
  margin-top: 18px;
  font-size: 34px;
  line-height: 1.06;
}

.mini-browser button {
  width: 108px;
  margin-top: 32px;
}

.case-visual-mini {
  background:
    linear-gradient(90deg, transparent 0 50%, rgba(255, 255, 255, 0.26) 50%),
    #306aff;
}

.mini-phone {
  position: absolute;
  left: 15%;
  bottom: -24px;
  width: 250px;
  min-height: 490px;
  padding: 22px;
  background: #f8faf7;
  border: 7px solid #111512;
  border-radius: 32px;
  box-shadow: 0 32px 76px rgba(9, 16, 25, 0.34);
}

.mini-phone > span {
  font-size: 9px;
  font-weight: 800;
}

.mini-phone > p {
  margin: 50px 0 5px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.mini-phone h4 {
  margin: 0;
  font-size: 25px;
  line-height: 1.1;
}

.date-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 34px;
}

.date-row b {
  padding: 12px 4px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.date-row b:nth-child(2) {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.date-row small {
  color: inherit;
  font-size: 8px;
  font-weight: 600;
}

.mini-phone button {
  margin-top: 52px;
  color: #fff;
  background: var(--blue);
}

.mini-note {
  position: absolute;
  right: 8%;
  bottom: 82px;
  display: grid;
  width: 250px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 26px 64px rgba(9, 16, 25, 0.22);
}

.mini-note span,
.mini-note small {
  color: var(--muted);
  font-size: 10px;
}

.mini-note strong {
  margin: 20px 0 5px;
  font-size: 22px;
}

.case-visual-system {
  display: grid;
  place-items: center;
  padding: 10%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #111613;
  background-size: 42px 42px;
}

.system-panel {
  width: 100%;
  min-height: 400px;
  padding: 28px;
  background: #f5f7f3;
  border-radius: 6px;
  box-shadow: 0 32px 76px rgba(0, 0, 0, 0.38);
}

.system-panel header {
  display: flex;
  justify-content: space-between;
}

.system-panel header span {
  color: var(--muted);
  font-size: 11px;
}

.system-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.system-numbers p {
  display: grid;
  margin: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.system-numbers span {
  color: var(--muted);
  font-size: 10px;
}

.system-numbers strong {
  margin-top: 10px;
  font-size: 30px;
}

.system-lines {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 190px;
  margin-top: 24px;
  padding: 20px 18px 0;
  background: #fff;
  border: 1px solid var(--line);
}

.system-lines i {
  flex: 1;
  height: 48%;
  background: #83ddc8;
}

.system-lines i:nth-child(2) {
  height: 72%;
}

.system-lines i:nth-child(3) {
  height: 57%;
  background: #5e8bff;
}

.system-lines i:nth-child(4) {
  height: 86%;
  background: #5e8bff;
}

.system-lines i:last-child {
  height: 68%;
  background: var(--amber);
}

.case-overview-section,
.case-ops-section {
  background: #eef3ed;
}

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

.case-snapshot-card {
  display: flex;
  min-height: 328px;
  flex-direction: column;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.62)),
    linear-gradient(90deg, rgba(24, 216, 178, 0.13), transparent 68%);
  border: 1px solid rgba(16, 18, 17, 0.13);
  border-radius: var(--radius);
}

.case-snapshot-card > span,
.case-detail-card > span,
.case-ai-copy span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-snapshot-card h3,
.case-detail-card h3,
.case-ai-copy h3 {
  margin: 26px 0 0;
  font-size: 24px;
  line-height: 1.18;
}

.case-snapshot-card p,
.case-detail-card p,
.case-ai-copy p,
.case-note p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.case-snapshot-card div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.case-snapshot-card b {
  color: var(--muted);
  font-size: 12px;
}

.case-snapshot-card strong {
  color: var(--ink);
  font-size: 24px;
}

.case-visual-wms .system-panel {
  background: #f8fbf6;
}

.wms-pipeline {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.wms-pipeline span {
  position: relative;
  padding: 13px 14px 13px 36px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  background: #fff;
  border: 1px solid var(--line);
}

.wms-pipeline span::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(24, 216, 178, 0.11);
  transform: translateY(-50%);
}

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

.case-detail-card {
  min-height: 316px;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    linear-gradient(90deg, rgba(24, 216, 178, 0.12), transparent 68%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.case-detail-card > span {
  color: var(--cyan);
}

.case-detail-card h3 {
  color: #fff;
}

.case-detail-card p {
  color: rgba(255, 255, 255, 0.68);
}

.case-result-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.case-result-strip span {
  display: grid;
  min-height: 118px;
  align-content: center;
  gap: 8px;
  padding: 22px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.case-result-strip b {
  color: #fff;
  font-size: 26px;
}

.case-ai-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.case-ai-layout .case-visual {
  min-height: 620px;
  border: 1px solid var(--line-strong);
}

.case-ai-copy {
  display: grid;
  gap: 14px;
}

.case-ai-copy article,
.case-note {
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(16, 18, 17, 0.13);
  border-radius: var(--radius);
}

.case-ai-copy h3 {
  font-size: 28px;
}

.case-note {
  margin-top: 22px;
}

.case-note strong {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(40, 104, 255, 0.18), transparent 42%),
    linear-gradient(90deg, #111412, #1c1f18);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.76fr);
  gap: 74px;
  align-items: start;
}

.trust .section-heading {
  display: block;
  margin: 0;
}

.trust-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-list p {
  margin: 0;
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact {
  display: flex;
  align-items: center;
  min-height: 92svh;
  padding: 128px max(40px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(24, 216, 178, 0.13), transparent 38%),
    linear-gradient(0deg, rgba(40, 104, 255, 0.12), transparent 50%),
    #0b0f0d;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(48px, 6vw, 82px);
  align-items: end;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-heading > p:last-child {
  max-width: 580px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 19px;
}

.contact-action {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-action > p:first-child {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.need-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin: 0 0 18px;
}

.need-option {
  position: relative;
  min-height: 38px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.need-option::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 16px;
  height: 2px;
  content: "";
  background: transparent;
  transition: background 180ms ease, width 180ms ease;
}

.need-option:hover,
.need-option:focus-visible,
.need-option.is-selected {
  color: var(--dark);
  background: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.need-option:hover::before,
.need-option:focus-visible::before,
.need-option.is-selected::before {
  width: 22px;
  background: #fff;
}

.contact-card .need-summary {
  min-height: 28px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.contact-card h2 {
  max-width: 820px;
  margin: 0;
  font-size: 74px;
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: 0;
}

.contact-action .button {
  width: 100%;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(40px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.64);
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--cyan);
  font-weight: 800;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--cyan);
  background: rgba(24, 216, 178, 0.1);
  border: 1px solid rgba(24, 216, 178, 0.24);
  border-radius: 8px;
}

.icon-badge svg {
  display: block;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

body.reveal-ready .reveal {
  opacity: 1;
  transform: translateY(18px);
}

body.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero {
    display: block;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero-ai-panel {
    display: none;
  }

  .home-hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 48px;
  }

  .page-hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 42px;
  }

  .hero-depth-circuit {
    inset: 10% -12% 8% 34%;
  }

  .hero-data-stack {
    top: auto;
    right: 40px;
    bottom: 112px;
    opacity: 0.58;
  }

  .section-heading,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .method-list,
  .overview-grid,
  .product-suite,
  .capability-list,
  .feature-grid,
  .deliverable-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-layout {
    grid-template-columns: 1fr;
  }

  .capability-visual {
    min-height: 480px;
  }

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

  .featured-intro {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 44px;
  }

  .featured-intro h2 {
    font-size: 54px;
  }

  .showcase-stage {
    min-height: 710px;
  }

  .showcase-window {
    width: 86%;
    height: 560px;
  }

  .product-main {
    padding: 26px;
  }

  .product-metrics > div {
    min-height: 112px;
  }

  .showcase-phone {
    width: 208px;
    min-height: 420px;
  }

  .case-item {
    grid-template-columns: minmax(280px, 0.8fr) minmax(440px, 1.2fr);
    flex-basis: calc(100vw - 80px);
    min-height: 540px;
  }

  .case-copy {
    padding-right: 28px;
  }

  .case-item h3 {
    font-size: 34px;
  }

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

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

  .case-detail-grid,
  .case-result-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-ai-layout {
    grid-template-columns: 1fr;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .contact-card h2 {
    max-width: 780px;
    font-size: 64px;
  }

  .contact-action {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand {
    left: 18px;
    min-width: 166px;
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    padding: 3px;
  }

  .brand-name {
    font-size: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    display: grid;
    gap: 6px;
    width: 100%;
    max-height: calc(100svh - var(--header-height));
    padding: 16px 18px 22px;
    background: rgba(11, 15, 13, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 200ms ease, opacity 200ms ease, visibility 200ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .nav-parent,
  .nav-direct {
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 0;
    font-size: 17px;
  }

  .nav-chevron {
    width: 44px;
    min-height: 52px;
    margin: 0;
    justify-self: end;
  }

  .nav-parent::after,
  .nav-direct::after {
    left: 0;
    right: 0;
    bottom: 0;
  }

  .nav-menu,
  .nav-menu-wide {
    position: static;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: none;
    transform: none;
    transition: max-height 220ms ease, padding 220ms ease;
    visibility: visible;
  }

  .nav-menu::before {
    display: none;
  }

  .nav-menu a {
    min-height: 58px;
    padding: 11px 13px;
    background: rgba(255, 255, 255, 0.055);
  }

  .nav-group:not(.is-open) .nav-menu {
    max-height: 0;
    padding: 0;
    pointer-events: none;
    transform: none;
  }

  .nav-group.is-open .nav-menu {
    max-height: 420px;
    padding: 0 0 12px;
    pointer-events: auto;
    transform: none;
  }

  .hero {
    align-items: center;
    min-height: 86svh;
    padding: 104px 18px 48px;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero-panel {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero-depth-backplane,
  .hero-depth-circuit {
    opacity: 0.28;
  }

  .hero-depth-scan,
  .hero-data-stack {
    display: none;
  }

  .home-hero-visual {
    margin-top: 34px;
  }

  .home-hero-visual figcaption {
    display: grid;
    gap: 5px;
  }

  .home-hero-metrics {
    grid-template-columns: 1fr;
    width: 118px;
  }

  .home-hero-metrics span {
    min-height: auto;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-tags {
    gap: 8px;
    margin-top: 22px;
  }

  .hero-tags span {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    min-height: 36px;
    padding: 0 10px;
    text-align: center;
  }

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

  .button {
    width: 100%;
  }

  .hero-signal {
    right: 18px;
    bottom: 24px;
  }

  .section {
    padding: 78px 18px;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 34px;
    line-height: 1.16;
  }

  .section-heading p,
  .contact-heading > p:last-child {
    font-size: 16px;
  }

  .service-grid,
  .method-list,
  .scene-map,
  .overview-grid,
  .product-suite,
  .capability-list,
  .feature-grid,
  .deliverable-grid {
    grid-template-columns: 1fr;
  }

  .service-lines {
    display: none;
  }

  .service-grid {
    border-left: 0;
  }

  .service-item {
    min-height: 236px;
    border-left: 1px solid var(--line);
  }

  .overview-card,
  .product-card,
  .capability-item,
  .feature-card,
  .deliverable-card {
    min-height: auto;
    padding: 22px;
  }

  .home-capabilities {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .capability-visual {
    min-height: 310px;
  }

  .page-cta {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .page-cta h2 {
    font-size: 31px;
  }

  .method-list li {
    min-height: 210px;
  }

  .method .section-heading {
    position: static;
  }

  .scene-map span {
    min-height: 98px;
  }

  .featured-work {
    padding: 84px 18px;
  }

  .featured-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .featured-type {
    max-width: none;
  }

  .featured-intro h2 {
    font-size: 42px;
    line-height: 1.08;
  }

  .featured-intro > div:last-child > p {
    margin-top: 22px;
    font-size: 17px;
  }

  .showcase-stage {
    min-height: 610px;
    margin-top: 48px;
    background-size: 38px 38px;
  }

  .showcase-depth {
    opacity: 0.22;
  }

  .showcase-stage::before {
    top: 4%;
    right: -16%;
    width: 70%;
    height: 34%;
  }

  .showcase-window {
    top: 28px;
    left: 16px;
    width: calc(100% - 32px);
    height: 476px;
  }

  .product-topbar {
    grid-template-columns: 74px 1fr;
    height: 38px;
    padding: 0 12px;
  }

  .product-topbar > span:nth-child(2) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-topbar strong {
    display: none;
  }

  .product-layout {
    grid-template-columns: 1fr;
    height: calc(100% - 38px);
  }

  .product-sidebar {
    display: none;
  }

  .product-main {
    padding: 18px;
  }

  .product-heading h3 {
    font-size: 21px;
  }

  .product-metrics {
    gap: 6px;
    margin-top: 18px;
  }

  .product-metrics > div {
    min-height: 92px;
    padding: 10px;
  }

  .product-metrics strong {
    margin-top: 10px;
    font-size: 22px;
  }

  .product-metrics small {
    display: none;
  }

  .product-panels {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 8px;
  }

  .product-chart {
    min-height: 208px;
    padding: 12px;
  }

  .product-queue {
    display: none;
  }

  .chart-bars {
    height: 140px;
    margin-top: 20px;
  }

  .showcase-phone {
    right: 10px;
    bottom: 18px;
    width: 158px;
    min-height: 326px;
    padding: 12px;
    border-width: 4px;
    border-radius: 22px;
  }

  .showcase-phone > p {
    margin-top: 28px;
  }

  .showcase-phone h3 {
    font-size: 18px;
  }

  .phone-appointment {
    margin-top: 20px;
    padding: 12px 0;
  }

  .phone-appointment strong {
    margin-top: 18px;
    font-size: 14px;
  }

  .phone-appointment small {
    font-size: 8px;
  }

  .showcase-phone button {
    min-height: 34px;
    margin-top: 24px;
    font-size: 9px;
  }

  .showcase-flow {
    display: none;
  }

  .featured-result {
    grid-template-columns: 1fr;
  }

  .featured-result p {
    padding-top: 16px;
  }

  .statement-band {
    min-height: 66svh;
    padding: 90px 18px;
  }

  .statement-band h2 {
    font-size: 44px;
    line-height: 1.06;
  }

  .statement-band::after {
    right: -28vw;
    bottom: -18vw;
    width: 86vw;
    height: 86vw;
  }

  .case-item {
    display: block;
    flex-basis: calc(100vw - 36px);
    min-height: 0;
  }

  .case-toolbar {
    margin-top: -8px;
  }

  .case-copy {
    min-height: 450px;
    padding: 30px 0;
  }

  .case-item h3 {
    margin-top: 54px;
    font-size: 34px;
  }

  .case-visual {
    min-height: 430px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .case-visual-brand,
  .case-visual-system {
    padding: 22px;
  }

  .case-snapshot-grid,
  .case-detail-grid,
  .case-result-strip {
    grid-template-columns: 1fr;
  }

  .case-snapshot-card,
  .case-detail-card {
    min-height: 0;
    padding: 24px;
  }

  .case-ai-layout .case-visual {
    min-height: 430px;
  }

  .mini-browser {
    min-height: 330px;
  }

  .mini-browser nav {
    gap: 10px;
    padding: 0 14px;
  }

  .mini-browser-main {
    min-height: 252px;
    padding: 36px 24px 24px;
  }

  .mini-browser-main strong {
    font-size: 27px;
  }

  .mini-phone {
    left: 8%;
    width: 190px;
    min-height: 390px;
    padding: 16px;
  }

  .mini-phone > p {
    margin-top: 34px;
  }

  .mini-phone h4 {
    font-size: 20px;
  }

  .mini-phone button {
    margin-top: 34px;
  }

  .mini-note {
    right: 2%;
    bottom: 48px;
    width: 170px;
    padding: 16px;
  }

  .mini-note strong {
    margin-top: 14px;
    font-size: 17px;
  }

  .system-panel {
    min-height: 340px;
    padding: 18px;
  }

  .system-lines {
    height: 150px;
  }

  .trust-layout {
    gap: 34px;
  }

  .contact {
    min-height: auto;
    padding: 96px 18px;
  }

  .contact-card {
    gap: 54px;
    padding: 0;
  }

  .contact-card h2 {
    font-size: 48px;
    line-height: 1.06;
  }

  .need-option {
    flex: 1 1 calc(50% - 10px);
  }

  .site-footer {
    display: grid;
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  body.reveal-ready .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }

  .flow-canvas,
  .hero-grid,
  .hero-depth,
  .hero-data-stack,
  .hero-signal,
  .showcase-depth,
  .tech-section::before {
    transform: none !important;
  }

  .hero-ai-panel {
    transform: translateY(-42%) !important;
  }
}

/* Sales conversion system */
.nav-consult {
  min-height: 38px;
  margin-left: 6px;
  padding: 0 16px;
  color: var(--dark);
  background: var(--cyan);
  border-radius: 6px;
}

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

.nav-consult:hover,
.nav-consult:focus-visible,
.nav-consult.nav-current {
  color: var(--dark);
  background: #5ce8ca;
}

.hero-assurance {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.sales-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  padding: 0 max(40px, calc((100vw - var(--max)) / 2));
  color: var(--paper-strong);
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sales-proof > div {
  display: grid;
  gap: 6px;
  min-height: 116px;
  padding: 28px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.sales-proof > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.sales-proof strong {
  color: var(--cyan);
  font-size: 19px;
}

.sales-proof span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.fit-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 48px auto 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.fit-card,
.package-card {
  padding: 34px;
  background: var(--paper-strong);
}

.fit-card > span,
.package-card > span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fit-card-positive > span {
  color: #087f69;
}

.fit-card h3,
.package-card h3 {
  margin: 0 0 14px;
  font-size: 21px;
}

.fit-card p,
.package-card p {
  color: var(--muted);
  line-height: 1.75;
}

.page-section-dark .package-grid {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.14);
}

.page-section-dark .package-card {
  color: #fff;
  background: var(--dark-soft);
}

.package-card-featured {
  box-shadow: inset 0 3px 0 var(--cyan);
}

.package-card strong {
  display: block;
  min-height: 48px;
  margin-top: 18px;
  font-size: 28px;
}

.package-card ul {
  display: grid;
  gap: 10px;
  min-height: 118px;
  margin: 26px 0 30px;
  padding: 24px 0 0;
  color: var(--muted);
  list-style: none;
  border-top: 1px solid var(--line);
}

.page-section-dark .package-card p,
.page-section-dark .package-card ul {
  color: rgba(255, 255, 255, 0.66);
}

.package-card li::before {
  margin-right: 9px;
  color: var(--cyan);
  content: "✓";
}

.pricing-table {
  max-width: var(--max);
  margin: 48px auto 0;
  overflow-x: auto;
  background: var(--paper-strong);
  border: 1px solid var(--line);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.25fr 1.45fr 1fr 1fr .7fr;
  align-items: center;
  min-width: 880px;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
}

.pricing-row:last-child {
  border-bottom: 0;
}

.pricing-row > * {
  padding: 18px 20px;
}

.pricing-row b {
  color: #087f69;
}

.pricing-row a {
  color: #087f69;
  font-weight: 700;
}

.pricing-head {
  min-height: 52px;
  color: var(--muted);
  background: #edf1eb;
  font-size: 12px;
}

.pricing-note {
  max-width: var(--max);
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 13px;
}

.evidence-note {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  max-width: var(--max);
  margin: 30px auto 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.evidence-note strong {
  font-size: 14px;
}

.evidence-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.lead-contact-card {
  align-items: start;
}

.contact-expectations {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.contact-expectations p {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-expectations strong {
  color: var(--ink);
  font-size: 14px;
}

.contact-expectations span {
  color: var(--muted);
  font-size: 14px;
}

.lead-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 14px;
  margin-top: 28px;
  align-items: start;
}

.form-grid label {
  position: relative;
  display: grid;
  grid-template-rows: 18px 48px 34px;
  gap: 6px;
  align-items: start;
  min-width: 0;
}

.form-grid label > span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
}

.form-field-wide {
  grid-column: 1 / -1;
  grid-template-rows: 18px minmax(132px, auto) 30px;
  min-height: 194px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 38px 12px 14px;
  color: var(--ink);
  background: var(--paper-strong);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.form-grid textarea {
  min-height: 132px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: #087f69;
  box-shadow: 0 0 0 3px rgba(24, 216, 178, 0.14);
}

.field-message {
  display: -webkit-box;
  min-height: 30px;
  max-width: 100%;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11.5px;
  font-weight: 650;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transform: translateY(-2px);
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.form-field.is-active .field-message {
  color: rgba(159, 241, 223, 0.82);
  transform: translateY(0);
}

.form-field.is-complete:not(.has-error) .field-message {
  color: rgba(159, 241, 223, 0.62);
}

.form-field.is-complete:not(.has-error)::after {
  position: absolute;
  right: 10px;
  top: 34px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: #06221c;
  font-size: 11px;
  font-weight: 900;
  content: "✓";
  background: #52e4c7;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(82, 228, 199, 0.13);
  pointer-events: none;
}

.form-field.is-complete:has(select):not(.has-error)::after {
  content: none;
}

.form-field.is-select-field.is-complete:not(.has-error)::after {
  content: none;
}

.form-field.has-error .field-message {
  color: #ffc0a8;
  -webkit-line-clamp: 2;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #ff9a75;
  background: #fff8f5;
  box-shadow: 0 0 0 3px rgba(255, 154, 117, 0.16);
}

.form-field.is-active input,
.form-field.is-active select,
.form-field.is-active textarea {
  transform: translateY(-1px);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.privacy-check input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #087f69;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-fallback {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.form-fallback a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Contact section contrast on dark background */
.contact .contact-heading > p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.contact .contact-expectations {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.contact .contact-expectations p {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.contact .contact-expectations strong {
  color: #6ee8cf;
  font-weight: 800;
}

.contact .contact-expectations span {
  color: rgba(255, 255, 255, 0.72);
}

.contact .contact-action {
  border-top-color: rgba(255, 255, 255, 0.28);
}

.contact .need-question {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.contact .form-grid label > span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.contact .form-grid input,
.contact .form-grid select,
.contact .form-grid textarea {
  color: #161a18;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.54);
}

.contact .form-field.is-complete:not(.has-error) input,
.contact .form-field.is-complete:not(.has-error) select,
.contact .form-field.is-complete:not(.has-error) textarea {
  border-color: rgba(82, 228, 199, 0.72);
  background:
    linear-gradient(90deg, rgba(82, 228, 199, 0.1), transparent 34%),
    #ffffff;
}

.contact .form-grid input::placeholder,
.contact .form-grid textarea::placeholder {
  color: #737977;
  opacity: 1;
}

.contact .privacy-check,
.contact .form-fallback {
  color: rgba(255, 255, 255, 0.68);
}

.contact .form-fallback a {
  color: #6ee8cf;
}

.faq-list {
  max-width: 900px;
  margin: 48px auto 0;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 6px;
  color: var(--muted);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  margin: -4px 0 24px;
  color: var(--muted);
  line-height: 1.8;
}

.blog-hero {
  min-height: 70svh;
}

.blog-hero .hero-content {
  max-width: 820px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 48px auto 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.blog-card {
  display: block;
  min-height: 330px;
  padding: 34px;
  background: var(--paper-strong);
}

.blog-card > span {
  color: #087f69;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 54px 0 16px;
  font-size: 25px;
  line-height: 1.35;
}

.blog-card p {
  color: var(--muted);
  line-height: 1.75;
}

.blog-card small {
  display: block;
  margin-top: 28px;
  color: var(--muted);
}

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

.blog-grid-expanded .blog-card {
  min-height: 300px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.blog-grid-expanded .blog-card:hover,
.blog-grid-expanded .blog-card:focus-visible {
  z-index: 1;
  transform: translateY(-4px);
  outline: none;
  box-shadow: 0 24px 70px rgba(16, 18, 17, 0.12);
}

.blog-post-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(24, 216, 178, 0.12), transparent 32%),
    linear-gradient(180deg, #f8faf5 0%, #eef3ed 100%);
}

.blog-post-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--header-height) + 92px) 40px 56px;
}

.blog-post-hero h1 {
  max-width: 980px;
  margin: 18px 0 22px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.blog-post-summary {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.85;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.blog-post-meta span {
  padding: 8px 12px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.blog-post-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 820px);
  gap: 56px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 40px 112px;
}

.blog-post-toc {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.blog-post-toc strong {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
}

.blog-post-toc a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  border-top: 1px solid rgba(16, 18, 17, 0.08);
}

.blog-post-toc a:hover,
.blog-post-toc a:focus-visible {
  color: #087f69;
}

.blog-post-content {
  padding: 48px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 28px 90px rgba(16, 18, 17, 0.08);
}

.blog-post-content .lead-paragraph {
  margin-top: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.85;
}

.blog-post-content section {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(16, 18, 17, 0.1);
}

.blog-post-content h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.blog-post-content p,
.blog-post-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.95;
}

.blog-checklist {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(24, 216, 178, 0.12), transparent 48%),
    rgba(247, 248, 243, 0.92);
}

.blog-checklist ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.blog-post-cta {
  margin-top: 38px;
  padding: 34px;
  color: var(--paper-strong);
  background:
    radial-gradient(circle at 10% 10%, rgba(24, 216, 178, 0.28), transparent 34%),
    linear-gradient(135deg, #0b0f0d, #12241f);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.blog-post-cta span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-post-cta h2 {
  max-width: 680px;
  margin: 14px 0 24px;
  color: var(--paper-strong);
}

@media (max-width: 900px) {
  .page-hero .hero-content,
  .home-page-hero .hero-content {
    max-width: 100%;
  }

  .sales-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 18px;
  }

  .sales-proof > div:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .sales-proof > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .fit-grid,
  .package-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-hero {
    padding: calc(var(--header-height) + 56px) 22px 38px;
  }

  .blog-post-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 12px 22px 72px;
  }

  .blog-post-toc {
    position: relative;
    top: auto;
  }

  .blog-post-content {
    padding: 28px 22px;
  }

  .blog-card {
    min-height: 0;
  }

  .package-card ul {
    min-height: 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-wide {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .page-hero .hero-content,
  .home-page-hero .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero .eyebrow {
    max-width: 100%;
    line-height: 1.5;
  }

  .nav-consult {
    min-height: 48px;
    margin: 8px 0 0;
    padding: 0 14px;
  }

  .sales-proof > div {
    min-height: 102px;
    padding: 22px 14px;
  }

  .sales-proof strong {
    font-size: 17px;
  }

  .fit-card,
  .package-card {
    padding: 26px 22px;
  }

  .contact-expectations {
    margin-top: 28px;
  }

  .lead-form {
    padding-top: 8px;
  }

  .faq-list {
    margin-top: 30px;
  }

  .evidence-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Refined home hero: stable editorial two-column layout */
.mobile-title-break {
  display: none;
}

@media (min-width: 1081px) {
  .home-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(460px, 0.88fr);
    align-items: center;
    gap: 68px;
    min-height: 760px;
    padding-top: 132px;
    padding-bottom: 72px;
  }

  .home-page-hero .hero-content {
    width: 100%;
    max-width: 660px;
  }

  .home-page-hero .hero-content::before {
    top: -30px;
    left: -18px;
    width: 92px;
    height: 92px;
    opacity: 0.7;
  }

  .home-page-hero .eyebrow {
    margin-bottom: 24px;
    letter-spacing: 0.08em;
  }

  .home-page-hero h1 {
    max-width: 660px;
    font-size: 58px;
    line-height: 1.1;
  }

  .home-page-hero h1 span + span {
    margin-top: 10px;
  }

  .home-page-hero .hero-copy {
    max-width: 620px;
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.85;
  }

  .home-page-hero .hero-tags {
    margin-top: 24px;
  }

  .home-page-hero .hero-actions {
    margin-top: 30px;
  }

  .home-page-hero .hero-assurance {
    margin-top: 16px;
  }

  .home-page-hero .home-hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: center;
    width: 100%;
    max-width: 560px;
    margin: 0;
    justify-self: end;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.3);
  }

  .home-page-hero .home-hero-visual img {
    aspect-ratio: 4 / 3;
  }

  .home-page-hero .home-hero-metrics {
    top: 16px;
    left: 16px;
    width: calc(100% - 32px);
  }

  .home-page-hero .home-hero-metrics span {
    min-height: 64px;
    padding: 12px 14px;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .home-page-hero {
    padding-top: 124px;
    padding-bottom: 64px;
  }

  .home-page-hero .hero-content {
    max-width: 780px;
  }

  .home-page-hero h1 {
    max-width: 760px;
    font-size: 56px;
    line-height: 1.1;
  }

  .home-page-hero .hero-copy {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.8;
  }

  .home-page-hero .home-hero-visual {
    max-width: 780px;
  }
}

@media (max-width: 760px) {
  .mobile-title-break {
    display: block;
  }

  .home-page-hero {
    padding-top: 100px;
  }

  .home-page-hero h1 {
    font-size: 40px;
    line-height: 1.12;
  }

  .home-page-hero h1 span + span {
    margin-top: 8px;
  }

  .home-page-hero .hero-copy {
    margin-top: 24px;
    line-height: 1.75;
  }

  .home-page-hero .home-hero-visual img {
    aspect-ratio: 4 / 3;
  }
}

/* Refined brand principles section */
.brand-overview {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #f3f6f1;
}

.brand-overview .section-kicker {
  margin-bottom: 34px;
  letter-spacing: 0.08em;
}

.brand-overview .section-heading {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
  gap: 84px;
  align-items: start;
  margin-bottom: 48px;
}

.brand-overview .section-heading h2 {
  max-width: 780px;
  font-size: 52px;
  line-height: 1.12;
}

.brand-overview .section-heading p {
  max-width: 420px;
  padding: 4px 0 4px 24px;
  color: #5c6661;
  font-size: 16px;
  line-height: 1.85;
  border-left: 2px solid rgba(24, 216, 178, 0.72);
}

.brand-overview .overview-grid {
  gap: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 18, 17, 0.14);
  border-radius: 8px;
}

.brand-overview .overview-card {
  position: relative;
  min-height: 272px;
  padding: 32px 34px 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
  border: 0;
  border-right: 1px solid rgba(16, 18, 17, 0.12);
  border-radius: 0;
  transition: background 180ms ease;
}

.brand-overview .overview-card:last-child {
  border-right: 0;
}

.brand-overview .overview-card::before {
  position: absolute;
  top: 0;
  left: 34px;
  width: 72px;
  height: 3px;
  content: "";
  background: var(--cyan);
}

.brand-overview .overview-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-repeat: no-repeat;
  background-position: right center;
  pointer-events: none;
  filter: grayscale(1) saturate(0.4);
  opacity: 0.075;
  -webkit-mask-image: linear-gradient(90deg, transparent 8%, rgba(0, 0, 0, 0.22) 44%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 8%, rgba(0, 0, 0, 0.22) 44%, #000 100%);
}

.brand-overview .overview-card:nth-child(1)::after {
  background-image: url("assets/logo-jianxu-mark.png");
  background-position: calc(100% + 24px) calc(100% + 44px);
  background-size: 230px;
  opacity: 0.055;
}

.brand-overview .overview-card:nth-child(2)::after {
  background-image: url("assets/home-ai-workflow.png");
  background-size: cover;
}

.brand-overview .overview-card:nth-child(3)::after {
  background-image: url("assets/home-ai-hero.png");
  background-position: 62% center;
  background-size: cover;
}

.brand-overview .overview-card > * {
  z-index: 1;
}

.brand-overview .overview-card .icon-badge,
.brand-overview .overview-card h3,
.brand-overview .overview-card p {
  position: relative;
}

.brand-overview .overview-card:hover {
  background: rgba(255, 255, 255, 0.94);
}

.brand-overview .overview-card .icon-badge {
  margin: 0;
  color: #087f69;
  background: rgba(24, 216, 178, 0.08);
  border-color: rgba(24, 216, 178, 0.28);
}

.brand-overview .overview-card > span:not(.icon-badge) {
  position: absolute;
  top: 22px;
  right: 28px;
  color: rgba(16, 18, 17, 0.08);
  font-size: 52px;
  font-weight: 850;
  line-height: 1;
  z-index: 1;
}

.brand-overview .overview-card h3 {
  margin: 44px 0 0;
  font-size: 25px;
}

.brand-overview .overview-card p {
  max-width: 330px;
  margin-top: 16px;
  color: #626c67;
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 1080px) {
  .brand-overview .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .brand-overview .section-heading p {
    max-width: 720px;
  }

  .brand-overview .overview-grid {
    grid-template-columns: 1fr;
  }

  .brand-overview .overview-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 18, 17, 0.12);
  }

  .brand-overview .overview-card:last-child {
    border-bottom: 0;
  }

  .brand-overview .overview-card p {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .brand-overview {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .brand-overview .section-heading h2 {
    font-size: 34px;
  }

  .brand-overview .section-heading p {
    padding-left: 18px;
  }

  .brand-overview .overview-card {
    padding: 28px 24px 30px;
  }

  .brand-overview .overview-card::before {
    left: 24px;
  }

  .brand-overview .overview-card h3 {
    margin-top: 34px;
  }
}

/* Refined project-fit section */
.sales-fit {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #f7f8f4;
}

.sales-fit .section-kicker {
  margin-bottom: 34px;
  letter-spacing: 0.08em;
}

.sales-fit .section-heading {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
  gap: 84px;
  align-items: start;
  margin-bottom: 48px;
}

.sales-fit .section-heading h2 {
  max-width: 790px;
  font-size: 48px;
  line-height: 1.14;
}

.sales-fit .section-heading p {
  max-width: 420px;
  padding: 4px 0 4px 24px;
  color: #5c6661;
  font-size: 16px;
  line-height: 1.85;
  border-left: 2px solid rgba(24, 216, 178, 0.72);
}

.sales-fit .fit-grid {
  gap: 0;
  margin-top: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(16, 18, 17, 0.14);
  border-radius: 8px;
}

.sales-fit .fit-card {
  position: relative;
  min-height: 264px;
  padding: 32px 34px 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.64);
  border-right: 1px solid rgba(16, 18, 17, 0.12);
}

.sales-fit .fit-card:last-child {
  border-right: 0;
}

.sales-fit .fit-card::before {
  position: absolute;
  top: 0;
  left: 34px;
  z-index: 2;
  width: 72px;
  height: 3px;
  content: "";
  background: var(--cyan);
}

.sales-fit .fit-card-caution::before {
  background: #b58a5b;
}

.sales-fit .fit-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  filter: grayscale(1) saturate(0.35);
  opacity: 0.06;
  -webkit-mask-image: linear-gradient(90deg, transparent 8%, rgba(0, 0, 0, 0.2) 48%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 8%, rgba(0, 0, 0, 0.2) 48%, #000 100%);
}

.sales-fit .fit-card:nth-child(1)::after {
  background-image: url("assets/home-ai-workflow.png");
  background-position: 72% center;
}

.sales-fit .fit-card:nth-child(2)::after {
  background-image: url("assets/home-ai-hero.png");
  background-position: 60% center;
}

.sales-fit .fit-card-caution::after {
  background-image:
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(157, 115, 82, 0.35) 22px 23px),
    radial-gradient(circle at 82% 76%, rgba(181, 138, 91, 0.55), transparent 42%);
  filter: none;
  opacity: 0.13;
}

.sales-fit .fit-card > * {
  position: relative;
  z-index: 1;
}

.sales-fit .fit-card > span {
  margin-bottom: 44px;
  color: #087f69;
  font-weight: 800;
}

.sales-fit .fit-card-caution > span {
  color: #8b684c;
}

.sales-fit .fit-index {
  position: absolute;
  top: 22px;
  right: 28px;
  color: rgba(16, 18, 17, 0.08);
  font-size: 52px;
  font-weight: 850;
  line-height: 1;
}

.sales-fit .fit-card h3 {
  margin-bottom: 16px;
  font-size: 24px;
}

.sales-fit .fit-card p {
  max-width: 330px;
  margin: 0;
  color: #626c67;
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 1080px) {
  .sales-fit .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sales-fit .section-heading p {
    max-width: 720px;
  }

  .sales-fit .fit-grid {
    grid-template-columns: 1fr;
  }

  .sales-fit .fit-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 18, 17, 0.12);
  }

  .sales-fit .fit-card:last-child {
    border-bottom: 0;
  }

  .sales-fit .fit-card p {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .sales-fit {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .sales-fit .section-heading h2 {
    font-size: 34px;
  }

  .sales-fit .section-heading p {
    padding-left: 18px;
  }

  .sales-fit .fit-card {
    padding: 28px 24px 30px;
  }

  .sales-fit .fit-card::before {
    left: 24px;
  }
}

/* Unified light-card textures and restrained motion */
:where(
  .home-service-snapshot .feature-card,
  .home-deliverables .deliverable-card,
  .products .product-card,
  .case-overview-section .case-snapshot-card,
  .case-ops-section .product-card,
  .case-ai-copy article,
  .case-note,
  .blog-index .blog-card,
  .package-preview:not(.page-section-dark) .package-card
) {
  --surface-accent-rgb: 24, 216, 178;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background-color 240ms ease;
}

:where(
  .home-service-snapshot .feature-card,
  .home-deliverables .deliverable-card,
  .products .product-card,
  .case-overview-section .case-snapshot-card,
  .case-ops-section .product-card,
  .case-ai-copy article,
  .case-note,
  .blog-index .blog-card,
  .package-preview:not(.page-section-dark) .package-card
):nth-child(3n + 2) {
  --surface-accent-rgb: 40, 104, 255;
}

:where(
  .home-service-snapshot .feature-card,
  .home-deliverables .deliverable-card,
  .products .product-card,
  .case-overview-section .case-snapshot-card,
  .case-ops-section .product-card,
  .case-ai-copy article,
  .case-note,
  .blog-index .blog-card,
  .package-preview:not(.page-section-dark) .package-card
):nth-child(3n) {
  --surface-accent-rgb: 184, 148, 115;
}

:where(
  .home-service-snapshot .feature-card,
  .home-deliverables .deliverable-card,
  .products .product-card,
  .case-overview-section .case-snapshot-card,
  .case-ops-section .product-card,
  .case-ai-copy article,
  .case-note,
  .blog-index .blog-card,
  .package-preview:not(.page-section-dark) .package-card
)::before {
  position: absolute;
  inset: -12%;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 84% 18%, rgba(var(--surface-accent-rgb), 0.15), transparent 28%),
    linear-gradient(132deg, transparent 0 54%, rgba(var(--surface-accent-rgb), 0.07) 54.2% 54.7%, transparent 54.9%),
    linear-gradient(rgba(16, 18, 17, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 17, 0.028) 1px, transparent 1px);
  background-size: auto, 190px 190px, 42px 42px, 42px 42px;
  opacity: 0.72;
  pointer-events: none;
  transform: translate3d(-6px, 4px, 0) scale(1.02);
  transition: transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 320ms ease;
}

:where(
  .home-service-snapshot .feature-card,
  .home-deliverables .deliverable-card,
  .products .product-card,
  .case-overview-section .case-snapshot-card,
  .case-ops-section .product-card,
  .case-ai-copy article,
  .case-note,
  .blog-index .blog-card,
  .package-preview:not(.page-section-dark) .package-card
) > * {
  position: relative;
  z-index: 1;
}

:where(
  .home-service-snapshot .feature-card,
  .home-deliverables .deliverable-card,
  .products .product-card,
  .case-overview-section .case-snapshot-card,
  .case-ops-section .product-card,
  .case-ai-copy article,
  .case-note,
  .blog-index .blog-card,
  .package-preview:not(.page-section-dark) .package-card
):hover {
  border-color: rgba(var(--surface-accent-rgb), 0.34);
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 48px rgba(16, 18, 17, 0.1);
}

body.reveal-ready :where(
  .home-service-snapshot .feature-card,
  .home-deliverables .deliverable-card,
  .products .product-card,
  .case-overview-section .case-snapshot-card,
  .case-ops-section .product-card,
  .case-ai-copy article,
  .case-note,
  .blog-index .blog-card,
  .package-preview:not(.page-section-dark) .package-card
).reveal.is-visible:hover {
  transform: translateY(-4px);
}

:where(
  .home-service-snapshot .feature-card,
  .home-deliverables .deliverable-card,
  .products .product-card,
  .case-overview-section .case-snapshot-card,
  .case-ops-section .product-card,
  .case-ai-copy article,
  .case-note,
  .blog-index .blog-card,
  .package-preview:not(.page-section-dark) .package-card
):hover::before {
  opacity: 0.92;
  transform: translate3d(10px, -6px, 0) scale(1.05);
}

:where(
  .home-service-snapshot .feature-card,
  .home-deliverables .deliverable-card,
  .products .product-card
):hover .icon-badge {
  color: #087f69;
  background: rgba(24, 216, 178, 0.14);
  border-color: rgba(24, 216, 178, 0.4);
  transform: translateY(-2px) rotate(-2deg);
}

:where(
  .home-service-snapshot .feature-card,
  .home-deliverables .deliverable-card,
  .products .product-card
) .icon-badge {
  transition: transform 240ms ease, color 240ms ease, background 240ms ease, border-color 240ms ease;
}

.pricing-row:not(.pricing-head) {
  transition: background-color 180ms ease, color 180ms ease;
}

.pricing-row:not(.pricing-head):hover {
  background: rgba(24, 216, 178, 0.065);
}

.faq-list details {
  transition: background-color 180ms ease, padding 180ms ease;
}

.faq-list details:hover {
  background: rgba(24, 216, 178, 0.045);
}

.faq-list details:hover summary {
  color: #087f69;
}

/* Expanded solutions hero */
@media (min-width: 1081px) {
  .solutions-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
    align-items: center;
    gap: 56px;
    min-height: 720px;
    padding-top: 124px;
    padding-bottom: 64px;
  }

  .solutions-page-hero .hero-content {
    width: 100%;
    max-width: 660px;
  }

  .solutions-page-hero h1 {
    max-width: 660px;
    font-size: 58px;
    line-height: 1.08;
  }

  .solutions-page-hero h1 span + span {
    margin-top: 10px;
  }

  .solutions-page-hero .hero-copy {
    max-width: 620px;
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.8;
  }

  .solutions-page-hero .hero-tags {
    margin-top: 24px;
  }

  .solutions-page-hero .hero-actions {
    margin-top: 30px;
  }

  .solutions-page-hero .solutions-hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: center;
    justify-self: end;
    width: 100%;
    max-width: 480px;
    margin: 0;
    padding: 14px;
    background:
      radial-gradient(circle at 82% 12%, rgba(40, 104, 255, 0.18), transparent 38%),
      rgba(8, 14, 12, 0.78);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
  }

  .solutions-page-hero .solutions-hero-panel span {
    min-height: 104px;
    padding: 18px;
    align-content: center;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  }

  .solutions-page-hero .solutions-hero-panel b {
    font-size: 24px;
  }

  .solutions-page-hero .solutions-hero-panel span:nth-child(3n + 2) b {
    color: #75a0ff;
  }

  .solutions-page-hero .solutions-hero-panel span:nth-child(3n) b {
    color: #d5ad7f;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .solutions-page-hero .hero-content {
    max-width: 780px;
  }

  .solutions-page-hero h1 {
    max-width: 760px;
    font-size: 56px;
    line-height: 1.1;
  }

  .solutions-page-hero .solutions-hero-panel {
    max-width: 780px;
  }
}

@media (max-width: 760px) {
  .solutions-page-hero .solutions-hero-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-page-hero .solutions-hero-panel span {
    min-height: 88px;
  }
}

/* Admin dashboard */
.admin-body {
  color: #f6faf7;
  background:
    radial-gradient(circle at 78% 6%, rgba(40, 104, 255, 0.18), transparent 30%),
    radial-gradient(circle at 16% 18%, rgba(24, 216, 178, 0.16), transparent 34%),
    linear-gradient(135deg, #07100d 0%, #0c1513 46%, #10130f 100%);
}

.admin-shell {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  gap: 24px;
  min-height: 100vh;
  padding: calc(var(--header-height) + 24px) 28px 28px;
}

.admin-sidebar,
.admin-panel,
.admin-metrics article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(8, 14, 12, 0.72);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.admin-sidebar::before,
.admin-panel::before,
.admin-metrics article::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(128deg, transparent 0 62%, rgba(24, 216, 178, 0.08) 62.2% 62.6%, transparent 62.8%);
  background-size: 34px 34px, 34px 34px, 170px 170px;
  opacity: 0.66;
  pointer-events: none;
}

.admin-sidebar > *,
.admin-panel > *,
.admin-metrics article > * {
  position: relative;
  z-index: 1;
}

.admin-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
  min-height: calc(100vh - var(--header-height) - 52px);
  padding: 20px;
  border-radius: 8px;
}

.admin-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-sidebar-brand > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #06110f;
  font-size: 15px;
  font-weight: 900;
  background: var(--cyan);
  border-radius: 8px;
}

.admin-sidebar-brand strong,
.admin-sidebar-brand small {
  display: block;
}

.admin-sidebar-brand strong {
  font-size: 16px;
}

.admin-sidebar-brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.admin-sidebar nav a {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a:focus-visible,
.admin-sidebar nav a.is-active {
  color: #fff;
  background: rgba(24, 216, 178, 0.12);
  border-color: rgba(24, 216, 178, 0.28);
  transform: translateX(3px);
}

.admin-workspace {
  min-width: 0;
}

.admin-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 24px;
}

.admin-kicker {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-topbar h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1.16;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.admin-actions .button {
  min-height: 46px;
}

.admin-actions .ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.admin-metrics article {
  min-height: 142px;
  padding: 20px;
  border-radius: 8px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.admin-metrics article:hover,
.admin-panel:hover {
  border-color: rgba(24, 216, 178, 0.26);
}

.admin-metrics article:hover {
  transform: translateY(-3px);
}

.admin-metrics span,
.admin-metrics small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.admin-metrics strong {
  display: block;
  margin: 14px 0 10px;
  color: #fff;
  font-size: 38px;
  line-height: 1;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: 16px;
  margin-bottom: 16px;
}

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

.admin-panel {
  padding: 22px;
  border-radius: 8px;
}

.admin-panel h2 {
  margin: 0;
  color: #fff;
  font-size: 22px;
}

.admin-panel p {
  color: rgba(255, 255, 255, 0.68);
}

.admin-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-filter {
  display: flex;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.admin-filter button {
  min-height: 32px;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.admin-filter button:hover,
.admin-filter button.is-active {
  color: #06110f;
  background: var(--cyan);
}

.admin-table {
  display: grid;
  gap: 8px;
}

.admin-table-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(100px, 0.6fr) minmax(92px, 0.5fr) minmax(86px, 0.45fr);
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.admin-table-row.is-hidden {
  display: none;
}

.admin-loading-row,
.admin-empty-row {
  grid-template-columns: 1fr;
  color: rgba(255, 255, 255, 0.58);
}

.admin-table-head {
  min-height: 40px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.06);
}

.admin-table-row:not(.admin-table-head):hover {
  transform: translateX(3px);
  background: rgba(24, 216, 178, 0.08);
}

.admin-table-row b,
.admin-table-row small {
  display: block;
}

.admin-table-row b {
  color: #fff;
  font-size: 15px;
}

.admin-table-row small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.admin-table-row em,
.admin-content-list em {
  display: inline-flex;
  justify-self: start;
  padding: 5px 8px;
  color: #bff8eb;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  background: rgba(24, 216, 178, 0.12);
  border: 1px solid rgba(24, 216, 178, 0.24);
  border-radius: 999px;
}

.admin-ai-card {
  background:
    radial-gradient(circle at 88% 12%, rgba(24, 216, 178, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(40, 104, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(8, 14, 12, 0.78);
}

.admin-ai-card p {
  margin: 16px 0;
  font-size: 15px;
  line-height: 1.7;
}

.admin-ai-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-ai-card li {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-pipeline {
  display: grid;
  gap: 18px;
}

.admin-pipeline div {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.admin-pipeline b {
  display: block;
  height: 9px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 999px;
}

.admin-pipeline b::before {
  display: block;
  width: var(--width);
  height: 100%;
  content: "";
  background: linear-gradient(90deg, var(--cyan), #75a0ff);
  border-radius: inherit;
}

.admin-todos,
.admin-content-list {
  display: grid;
  gap: 10px;
}

.admin-todos label,
.admin-content-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-todos input {
  accent-color: var(--cyan);
}

.admin-content-list a {
  justify-content: space-between;
}

.admin-content-list a:hover {
  color: #fff;
  border-color: rgba(24, 216, 178, 0.28);
  background: rgba(24, 216, 178, 0.08);
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: #9ff1df;
  font-size: 14px;
  font-weight: 700;
}

.form-status.is-error {
  color: #ffb7a8;
}

.form-submit:disabled {
  cursor: progress;
  opacity: 0.68;
}

@media (max-width: 1180px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    min-height: auto;
  }

  .admin-sidebar nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .admin-grid,
  .admin-grid-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .admin-shell {
    padding: calc(var(--header-height) + 18px) 16px 20px;
  }

  .admin-topbar {
    grid-template-columns: 1fr;
  }

  .admin-topbar h1 {
    font-size: 30px;
  }

  .admin-actions {
    justify-content: flex-start;
  }

  .admin-sidebar nav,
  .admin-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .admin-panel-head,
  .admin-filter {
    flex-wrap: wrap;
  }

  .admin-table {
    gap: 12px;
  }

  .admin-table-row,
  .admin-table-head {
    grid-template-columns: 1fr;
  }

  .admin-table-head {
    display: none;
  }
}
