/* PlenumOps industrial editorial system */
:root {
  color-scheme: light;

  --ink-950: #071d21;
  --ink-900: #102b31;
  --ink-850: #16363d;
  --ink-800: #1c4249;
  --ink-700: #2f5961;
  --ink-300: #9bb2b4;
  --ink-200: #c5d2d1;
  --mineral-50: #f7f4ec;
  --mineral-100: #f0ece1;
  --mineral-200: #ded9cc;
  --mineral-300: #cbc4b4;
  --mint-100: #d9f9e9;
  --mint-300: #89e8c2;
  --mint-500: #49c994;
  --blue-200: #b9dbf2;
  --blue-400: #62b4e5;
  --blue-600: #287eac;
  --amber-100: #fae5b5;
  --amber-300: #f2bf55;
  --amber-500: #d68c18;
  --error-500: #c5574e;

  --ink-alpha-06: rgb(7 29 33 / 0.06);
  --ink-alpha-10: rgb(7 29 33 / 0.1);
  --ink-alpha-16: rgb(7 29 33 / 0.16);
  --ink-alpha-55: rgb(7 29 33 / 0.55);
  --ink-alpha-82: rgb(7 29 33 / 0.82);
  --ink-alpha-96: rgb(7 29 33 / 0.96);
  --mineral-alpha-12: rgb(247 244 236 / 0.12);
  --mineral-alpha-18: rgb(247 244 236 / 0.18);
  --mineral-alpha-70: rgb(247 244 236 / 0.7);
  --mineral-alpha-90: rgb(247 244 236 / 0.9);
  --mint-alpha-16: rgb(137 232 194 / 0.16);
  --blue-alpha-18: rgb(185 219 242 / 0.18);

  --text: var(--ink-900);
  --text-soft: var(--ink-700);
  --surface: var(--mineral-50);
  --surface-raised: var(--mineral-100);
  --line: var(--mineral-200);
  --focus: var(--blue-400);

  --font-sans: "IBM Plex Sans", "Avenir Next", Avenir, sans-serif;
  --font-condensed: "IBM Plex Sans Condensed", "Arial Narrow", sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: clamp(1.25rem, 1.8vw, 1.5rem);
  --text-xl: clamp(1.75rem, 3vw, 2.75rem);
  --text-2xl: clamp(2.5rem, 5vw, 4.75rem);
  --text-display: clamp(3.25rem, 8vw, 7.75rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 2rem;
  --space-8: 2.5rem;
  --space-9: 3rem;
  --space-10: 4rem;
  --space-11: 5rem;
  --space-12: 6rem;
  --space-13: 8rem;
  --space-14: 10rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --shadow-sm: 0 var(--space-2) var(--space-7) var(--ink-alpha-10);
  --shadow-lg: 0 var(--space-6) var(--space-12) var(--ink-alpha-16);
  --line-width: 1px;
  --focus-width: 3px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 180ms var(--ease-out);
  --transition-slow: 600ms var(--ease-out);
  --page: min(84rem, calc(100% - var(--space-9)));
  --measure: 42rem;
  --header-height: 4.5rem;
  --tap-size: 2.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--space-4));
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.dialog-open {
  overflow: hidden;
}

button,
input,
summary {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

svg,
canvas {
  display: block;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
blockquote,
figure,
fieldset {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-condensed);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  max-width: 9ch;
  margin-bottom: var(--space-7);
  font-size: var(--text-display);
}

h2 {
  max-width: 13ch;
  margin-bottom: var(--space-6);
  font-size: var(--text-2xl);
}

h3 {
  margin-bottom: var(--space-4);
  font-size: var(--text-xl);
}

p,
li,
dd,
dt,
th,
td,
figcaption,
blockquote {
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

::selection {
  background: var(--mint-300);
  color: var(--ink-950);
}

:focus-visible {
  outline: var(--focus-width) solid var(--focus);
  outline-offset: var(--space-1);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: var(--space-3);
  left: var(--space-3);
  transform: translateY(-160%);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-sm);
  background: var(--mint-300);
  color: var(--ink-950);
  font-weight: 600;
  transition: transform var(--transition-fast);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: var(--line-width);
  height: var(--line-width);
  padding: 0;
  margin: calc(var(--line-width) * -1);
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.section-dark,
.section-ink {
  color: var(--mineral-50);
}

.section-dark {
  background: var(--ink-900);
}

.section-ink {
  background: var(--ink-950);
}

.section-light {
  background: var(--mineral-50);
}

.section-mint {
  background: var(--mint-100);
}

.section-blue {
  background: var(--blue-200);
}

.section-amber {
  background: var(--amber-100);
}

.button {
  display: inline-flex;
  min-height: var(--tap-size);
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  border: var(--line-width) solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.button:hover {
  transform: translateY(calc(var(--line-width) * -2));
}

.button-primary {
  background: var(--mint-300);
  color: var(--ink-950);
}

.button-primary:hover {
  background: var(--mint-500);
}

.button-dark {
  background: var(--ink-900);
  color: var(--mineral-50);
}

.button-dark:hover {
  background: var(--ink-800);
}

.button-small {
  min-height: var(--space-8);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.text-link {
  display: inline-flex;
  min-height: var(--tap-size);
  align-items: center;
  border-bottom: var(--line-width) solid currentColor;
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  color: var(--blue-600);
}

.text-link-light:hover {
  color: var(--mint-300);
}

/* Navigation */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: var(--line-width) solid transparent;
  color: var(--mineral-50);
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: var(--mineral-alpha-90);
  color: var(--ink-900);
}

.nav-shell {
  display: flex;
  width: var(--page);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-condensed);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  text-decoration: none;
}

.brand > span > span {
  color: var(--mint-500);
}

.brand-mark {
  width: var(--space-7);
  height: var(--space-7);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.4;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.primary-nav > a:not(.button) {
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
}

.primary-nav > a:not(.button):hover {
  color: var(--mint-500);
}

.nav-toggle {
  display: none;
  width: var(--tap-size);
  height: var(--tap-size);
  border: 0;
  background: transparent;
  color: inherit;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: var(--space-6);
  height: calc(var(--line-width) * 2);
  margin: var(--space-2) auto;
  background: currentColor;
  transition: transform var(--transition-fast);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(calc(var(--space-1) + var(--line-width))) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(calc((var(--space-1) + var(--line-width)) * -1)) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: min(54rem, 100svh);
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, var(--ink-950) 0%, var(--ink-alpha-96) 35%, var(--ink-alpha-55) 62%, var(--ink-alpha-06) 100%);
  content: "";
  pointer-events: none;
}

.hero-visual,
#plenum-canvas,
.plenum-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-visual {
  z-index: -2;
  overflow: hidden;
  background: var(--ink-900);
}

#plenum-canvas {
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.hero.webgl-ready #plenum-canvas {
  opacity: 1;
}

.plenum-fallback {
  display: block;
  min-width: 68rem;
  transform: translateX(7%);
}

.hero.webgl-ready .plenum-fallback {
  display: none;
}

.plenum-fallback .fallback-inlet,
.plenum-fallback .fallback-outlets {
  fill: url("#fallback-duct");
  stroke: var(--ink-300);
  stroke-width: calc(var(--line-width) * 2);
}

.plenum-fallback .fallback-chamber {
  fill: url("#fallback-metal");
  stroke: var(--mineral-300);
  stroke-width: calc(var(--line-width) * 2);
}

.plenum-fallback .metal-light,
.plenum-fallback .duct-light {
  stop-color: var(--mineral-200);
}

.plenum-fallback .metal-mid {
  stop-color: var(--ink-300);
}

.plenum-fallback .metal-dark,
.plenum-fallback .duct-dark {
  stop-color: var(--ink-800);
}

.plenum-fallback .metal-seam {
  fill: none;
  stroke: var(--mineral-alpha-18);
  stroke-width: calc(var(--line-width) * 3);
}

.plenum-fallback .metal-highlight {
  fill: none;
  stroke: var(--mineral-alpha-70);
  stroke-width: calc(var(--line-width) * 3);
}

.plenum-fallback .fallback-rivets {
  fill: var(--ink-700);
  stroke: var(--mineral-200);
  stroke-width: var(--line-width);
}

.hero-content {
  display: flex;
  flex: 1;
  align-items: center;
  padding-top: calc(var(--header-height) + var(--space-12));
  padding-bottom: var(--space-12);
}

.hero-copy {
  width: min(48rem, 64%);
}

.hero-lede {
  max-width: 40rem;
  margin-bottom: var(--space-6);
  color: var(--mineral-50);
  font-size: var(--text-lg);
  line-height: 1.55;
}

.hero-note {
  max-width: 38rem;
  margin-bottom: var(--space-8);
  color: var(--ink-200);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-6);
}

.hero-systems {
  border-top: var(--line-width) solid var(--mineral-alpha-18);
  background: var(--ink-alpha-82);
}

.systems-line {
  display: grid;
  grid-template-columns: minmax(13rem, 0.8fr) minmax(0, 2fr);
  align-items: center;
  gap: var(--space-8);
  padding-block: var(--space-5);
}

.systems-line p {
  margin-bottom: 0;
  color: var(--ink-200);
  font-size: var(--text-sm);
}

.systems-line .platform-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.platform-logos {
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-brand {
  display: flex;
  min-height: var(--tap-size);
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-5);
  background: var(--mineral-50);
}

.systems-line .platform-brand {
  border-left: var(--line-width) solid var(--mineral-alpha-18);
}

.platform-brand > img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 1.35rem;
  object-fit: contain;
}

.platform-brand:nth-child(3) > img {
  height: 1.15rem;
}

.platform-brand:nth-child(4) > img {
  height: 1.75rem;
}

.servicetitan-crop {
  position: relative;
  display: block;
  width: 7.4rem;
  height: 1.25rem;
  overflow: hidden;
}

.servicetitan-crop img {
  position: absolute;
  top: 0;
  left: -3.02rem;
  width: auto;
  max-width: none;
  height: 1.25rem;
}

/* Shared section framing */
.section-heading {
  padding-top: var(--space-12);
  padding-bottom: var(--space-9);
}

.section-heading > p {
  max-width: var(--measure);
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: var(--text-md);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  align-items: end;
  gap: var(--space-12);
}

.split-heading h2 {
  margin-bottom: 0;
}

/* Compact job flow */
.job-flow {
  padding-bottom: var(--space-12);
}

.handoff-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  border-top: var(--line-width) solid var(--ink-900);
  border-bottom: var(--line-width) solid var(--ink-900);
  list-style: none;
}

.handoff-flow li {
  position: relative;
  padding: var(--space-7) var(--space-5) var(--space-8);
  border-right: var(--line-width) solid var(--ink-alpha-16);
}

.handoff-flow li:last-child {
  border-right: 0;
}

.step-number {
  display: block;
  margin-bottom: var(--space-8);
  color: var(--ink-700);
  font-family: var(--font-condensed);
  font-size: var(--text-sm);
  font-weight: 600;
}

.handoff-flow h3 {
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

.handoff-flow p {
  margin-bottom: 0;
  color: var(--ink-700);
  font-size: var(--text-sm);
}

/* Capability stories */
.capabilities {
  padding-bottom: var(--space-13);
}

.capabilities-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: end;
  gap: var(--space-12);
  border-bottom: var(--line-width) solid var(--line);
}

.capabilities-heading h2 {
  margin-bottom: 0;
}

.capability-stories {
  display: grid;
}

.capability-story {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(26rem, 1.15fr);
  align-items: center;
  gap: clamp(var(--space-9), 8vw, var(--space-14));
  padding-block: var(--space-11);
  border-bottom: var(--line-width) solid var(--line);
}

.capability-story.story-reverse .story-copy {
  grid-column: 2;
  grid-row: 1;
}

.capability-story.story-reverse .interface-example {
  grid-column: 1;
  grid-row: 1;
}

.story-copy h3 {
  max-width: 14ch;
}

.story-copy > p {
  color: var(--text-soft);
  font-size: var(--text-md);
}

.plain-list {
  margin: var(--space-6) 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding: var(--space-3) 0 var(--space-3) var(--space-6);
  border-top: var(--line-width) solid var(--line);
}

.plain-list li::before {
  position: absolute;
  top: calc(var(--space-3) + var(--space-2));
  left: 0;
  width: var(--space-2);
  height: var(--space-2);
  background: var(--mint-500);
  content: "";
}

.interface-example {
  width: 100%;
  margin: 0;
}

.workspace-bar,
.review-browser-bar {
  display: grid;
  min-height: var(--space-8);
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-4);
  padding-inline: var(--space-4);
  font-size: var(--text-xs);
}

.workspace-bar {
  border-bottom: var(--line-width) solid var(--ink-300);
  background: var(--blue-200);
  color: var(--ink-900);
}

.window-controls {
  display: flex;
  gap: var(--space-1);
}

.window-controls i {
  display: block;
  width: var(--space-2);
  height: var(--space-2);
  border-radius: 50%;
  background: var(--ink-300);
}

.window-controls i:nth-child(2) {
  background: var(--blue-600);
}

.window-controls i:nth-child(3) {
  background: var(--mint-500);
}

.workspace-address {
  min-width: 0;
  overflow: hidden;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workspace-mode {
  color: var(--ink-700);
  font-weight: 500;
}

.ui-kicker {
  margin-bottom: var(--space-2);
  color: var(--ink-700);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.intake-example {
  overflow: hidden;
  border: var(--line-width) solid var(--ink-300);
  border-radius: var(--radius-sm);
  background: var(--mineral-50);
  box-shadow: var(--shadow-sm);
}

.intake-workspace {
  display: grid;
  grid-template-columns: minmax(calc(var(--space-13) + var(--space-4)), 0.34fr) minmax(0, 0.66fr);
}

.intake-caller {
  padding: var(--space-6) var(--space-5);
  border-right: var(--line-width) solid var(--ink-300);
  background: var(--blue-alpha-18);
}

.intake-caller h4 {
  margin-bottom: var(--space-1);
  font-family: var(--font-condensed);
  font-size: var(--text-lg);
}

.intake-caller > p:not(.ui-kicker) {
  margin-bottom: var(--space-6);
  color: var(--ink-700);
  font-size: var(--text-sm);
}

.intake-caller dl,
.call-details {
  margin: 0;
}

.intake-caller dl > div {
  padding-block: var(--space-3);
  border-top: var(--line-width) solid var(--ink-200);
}

.intake-caller dt,
.call-details dt {
  color: var(--ink-700);
  font-size: var(--text-xs);
}

.intake-caller dd,
.call-details dd {
  margin: var(--space-1) 0 0;
  font-size: var(--text-sm);
  font-weight: 600;
}

.intake-main {
  min-width: 0;
  padding: var(--space-6);
}

.intake-heading,
.review-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
}

.interface-title {
  margin: 0;
  color: var(--ink-900);
  font-family: var(--font-condensed);
  font-size: var(--text-md);
  font-weight: 600;
  line-height: 1.2;
}

.intake-heading {
  margin-bottom: var(--space-5);
}

.intake-heading > div > p,
.intake-owner {
  margin: var(--space-1) 0 0;
  color: var(--ink-700);
  font-size: var(--text-xs);
}

.intake-owner {
  flex: 0 0 auto;
  text-align: right;
}

.intake-owner strong {
  display: block;
  color: var(--ink-900);
}

.call-transcript {
  margin-bottom: var(--space-5);
  padding: var(--space-4);
  border-left: calc(var(--line-width) * 3) solid var(--blue-600);
  background: var(--mineral-100);
}

.call-transcript p,
.call-transcript blockquote {
  margin: 0;
  font-size: var(--text-sm);
}

.call-transcript p {
  margin-bottom: var(--space-4);
  color: var(--ink-700);
}

.call-transcript strong {
  display: block;
  margin-bottom: var(--space-1);
  color: var(--ink-900);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.call-transcript blockquote {
  font-family: var(--font-condensed);
  font-size: var(--text-base);
  font-weight: 500;
  line-height: 1.4;
}

.call-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: var(--space-5);
  border-top: var(--line-width) solid var(--line);
  border-bottom: var(--line-width) solid var(--line);
}

.call-details > div {
  min-width: 0;
  padding: var(--space-3);
  border-right: var(--line-width) solid var(--line);
}

.call-details > div:last-child {
  border-right: 0;
}

.example-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border-left: calc(var(--line-width) * 3) solid var(--mint-500);
  background: var(--mint-100);
}

.example-action p,
.example-warning {
  margin-bottom: 0;
}

.example-action strong,
.example-warning strong {
  display: block;
  font-size: var(--text-sm);
}

.example-action span {
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  background: var(--ink-900);
  color: var(--mineral-50);
  font-size: var(--text-xs);
  font-weight: 600;
  text-align: center;
}

.field-example {
  display: grid;
  place-items: center;
  padding-block: var(--space-5);
}

.phone-device {
  width: min(100%, calc(var(--space-14) * 2));
  overflow: hidden;
  padding: var(--space-2);
  border: var(--line-width) solid var(--ink-700);
  border-radius: calc(var(--radius-lg) + var(--space-4));
  background: var(--ink-950);
  box-shadow: var(--shadow-lg);
}

.phone-device::after {
  display: block;
  width: var(--space-9);
  height: var(--space-1);
  margin: var(--space-2) auto 0;
  border-radius: var(--radius-sm);
  background: var(--ink-300);
  content: "";
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) var(--space-4) var(--space-3);
  color: var(--mineral-50);
  font-size: var(--text-xs);
  font-weight: 600;
}

.field-app-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--ink-850);
  color: var(--mineral-50);
}

.field-app-header strong {
  font-family: var(--font-condensed);
}

.field-app-header span {
  max-width: 14ch;
  color: var(--mint-300);
  font-size: var(--text-xs);
  font-weight: 600;
  text-align: right;
}

.field-screen {
  padding: var(--space-5);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: var(--mineral-50);
}

.field-job {
  margin-bottom: var(--space-5);
}

.field-job > p:last-child {
  margin: var(--space-2) 0 0;
  color: var(--ink-700);
  font-size: var(--text-sm);
}

.field-note {
  margin-bottom: var(--space-5);
  padding: var(--space-4);
  border-left: calc(var(--line-width) * 3) solid var(--blue-600);
  background: var(--blue-alpha-18);
}

.field-note > div {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  color: var(--ink-700);
  font-size: var(--text-xs);
}

.field-note > div strong {
  color: var(--ink-900);
  text-transform: uppercase;
}

.field-note p {
  margin-bottom: 0;
  font-size: var(--text-sm);
  font-weight: 500;
}

.field-example fieldset {
  display: grid;
  gap: var(--space-3);
  margin: 0 0 var(--space-5);
  padding: var(--space-4);
  border: var(--line-width) solid var(--line);
}

.field-example legend {
  width: 100%;
  padding-inline: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
}

.field-example legend span {
  float: right;
  color: var(--ink-700);
  font-size: var(--text-xs);
  font-weight: 500;
}

.field-example label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
}

.field-example input {
  width: var(--space-5);
  height: var(--space-5);
  margin: 0;
  accent-color: var(--blue-600);
}

.example-warning {
  padding: var(--space-3) var(--space-4);
  border-left: calc(var(--line-width) * 3) solid var(--amber-500);
  background: var(--amber-100);
  font-size: var(--text-sm);
}

.review-example {
  overflow: hidden;
  border: var(--line-width) solid var(--ink-800);
  background: var(--mineral-50);
  box-shadow: var(--shadow-sm);
}

.review-browser-bar {
  border-bottom: var(--line-width) solid var(--ink-800);
  background: var(--ink-900);
  color: var(--mineral-50);
}

.review-browser-bar .workspace-mode {
  color: var(--ink-200);
}

.review-workspace {
  display: grid;
  grid-template-columns: minmax(var(--space-13), 0.24fr) minmax(0, 0.76fr);
}

.review-rail {
  padding: var(--space-5) var(--space-4);
  background: var(--ink-850);
  color: var(--mineral-50);
}

.review-rail > strong {
  display: block;
  margin-bottom: var(--space-5);
  font-family: var(--font-condensed);
  font-size: var(--text-md);
}

.review-rail ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-rail li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  border-top: var(--line-width) solid var(--ink-700);
  color: var(--ink-200);
  font-size: var(--text-xs);
}

.review-rail li.is-current {
  color: var(--mint-300);
}

.review-main {
  min-width: 0;
  padding: var(--space-5);
}

.review-heading {
  margin-bottom: var(--space-5);
}

.review-heading .ui-kicker {
  margin-bottom: var(--space-1);
}

.review-heading > p {
  margin: 0;
  color: var(--amber-500);
  font-size: var(--text-xs);
  text-align: right;
}

.review-heading > p strong {
  display: block;
  color: var(--ink-900);
}

.review-example table {
  width: 100%;
  margin-bottom: var(--space-5);
  border-collapse: collapse;
  table-layout: fixed;
}

.review-example th,
.review-example td {
  padding: var(--space-3);
  border-top: var(--line-width) solid var(--line);
  font-size: var(--text-sm);
  text-align: left;
  vertical-align: top;
}

.review-example thead th {
  color: var(--ink-700);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-example th:first-child {
  width: 24%;
}

.review-example th:last-child,
.review-example td:last-child {
  width: 16%;
}

.review-example tbody th {
  font-weight: 600;
}

.review-example tbody td:last-child {
  color: var(--ink-700);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
}

.review-example tbody tr:nth-child(2) td:last-child {
  color: var(--amber-500);
}

.review-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: var(--line-width) solid var(--ink-300);
}

.review-action p {
  margin: 0;
  color: var(--ink-700);
  font-size: var(--text-xs);
}

.review-action p strong {
  display: block;
  color: var(--ink-900);
  font-size: var(--text-sm);
}

.review-button {
  min-height: var(--tap-size);
  padding: var(--space-3) var(--space-4);
  border: var(--line-width) solid var(--mineral-300);
  border-radius: var(--radius-sm);
  background: var(--mineral-200);
  color: var(--ink-700);
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: center;
}

/* Integration boundary */
.integration {
  padding-bottom: var(--space-12);
}

.integration .section-heading > p {
  color: var(--ink-800);
}

.integration-frame {
  background: transparent;
}

.integration-composition {
  display: grid;
  grid-template-columns: minmax(13rem, 1fr) minmax(4.5rem, 0.28fr) minmax(15rem, 1.1fr) minmax(4.5rem, 0.28fr) minmax(13rem, 1fr);
  align-items: stretch;
}

.integration-node {
  position: relative;
  padding: var(--space-7);
  border: var(--line-width) solid var(--ink-800);
  background: var(--mineral-50);
  box-shadow: var(--shadow-sm);
}

.integration-node-label {
  margin-bottom: var(--space-3);
  color: var(--blue-600);
  font-family: var(--font-condensed);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.integration-composition h3 {
  margin-bottom: var(--space-4);
  font-size: var(--text-lg);
}

.integration-node > p:not(.integration-node-label) {
  margin-bottom: var(--space-6);
  color: var(--text-soft);
}

.integration-composition ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.integration-teams li {
  padding-block: var(--space-2);
  border-top: var(--line-width) solid var(--line);
  font-size: var(--text-sm);
  font-weight: 500;
}

.platform-logos-integration {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--line-width);
  overflow: hidden;
  border: var(--line-width) solid var(--line);
  background: var(--line);
}

.platform-logos-integration .platform-brand {
  min-height: var(--space-11);
  padding: var(--space-3);
}

.integration-plenum {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-block: calc(-1 * var(--space-3));
  padding-block: calc(var(--space-7) + var(--space-3));
  border-color: var(--ink-900);
  background: var(--ink-900);
  color: var(--mineral-50);
  box-shadow: var(--shadow-lg);
}

.integration-plenum .integration-node-label {
  color: var(--mint-300);
}

.integration-plenum > p:not(.integration-node-label) {
  color: var(--ink-200);
}

.integration-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-5);
  padding-inline: var(--space-3);
  color: var(--ink-700);
}

.integration-link p {
  display: grid;
  gap: var(--space-2);
  margin: 0;
  color: inherit;
  font-family: var(--font-condensed);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.integration-link svg {
  display: block;
  width: 100%;
  height: var(--space-3);
  overflow: visible;
}

.integration-link path {
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.integration-link-return {
  color: var(--blue-600) !important;
  text-align: right;
}

.integration-note {
  margin: var(--space-7) 0 0;
  padding: var(--space-5) var(--space-7);
  border: var(--line-width) solid var(--ink-800);
  background: var(--mint-100);
  font-weight: 500;
}

/* ROI */
.roi {
  padding-block: var(--space-12);
}

.roi-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  gap: var(--space-12);
  align-items: start;
}

.roi-copy > p {
  max-width: var(--measure);
  margin-bottom: var(--space-8);
  color: var(--ink-200);
  font-size: var(--text-md);
}

.roi-inputs {
  margin-bottom: var(--space-7);
}

.roi-inputs > label {
  display: block;
  margin-bottom: var(--space-3);
  font-weight: 600;
}

.fleet-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-5);
}

#fleet-size {
  width: 100%;
  height: var(--tap-size);
  accent-color: var(--mint-300);
  cursor: pointer;
}

.number-wrap {
  display: flex;
  min-height: var(--tap-size);
  align-items: center;
  overflow: hidden;
  border: var(--line-width) solid var(--ink-300);
  border-radius: var(--radius-sm);
  background: var(--mineral-50);
  color: var(--ink-900);
}

.number-wrap input {
  width: var(--space-10);
  min-height: var(--tap-size);
  padding: var(--space-2);
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 600;
  text-align: right;
}

.number-wrap span {
  padding-right: var(--space-3);
  color: var(--ink-700);
  font-size: var(--text-sm);
}

.roi-total {
  padding: var(--space-6);
  border-top: var(--line-width) solid var(--mint-300);
  border-bottom: var(--line-width) solid var(--mint-300);
}

.roi-total p,
.roi-total span {
  display: block;
  margin-bottom: 0;
  color: var(--ink-200);
}

.roi-total output {
  display: block;
  margin-block: var(--space-2);
  color: var(--mint-300);
  font-family: var(--font-condensed);
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: 1;
}

.roi-detail {
  border-top: var(--line-width) solid var(--mineral-alpha-18);
}

.roi-breakdown {
  margin: 0;
}

.roi-breakdown > div {
  display: flex;
  justify-content: space-between;
  gap: var(--space-5);
  padding-block: var(--space-4);
  border-bottom: var(--line-width) solid var(--mineral-alpha-18);
}

.roi-breakdown dt {
  color: var(--ink-200);
}

.roi-breakdown dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

.roi-method {
  padding-top: var(--space-5);
}

.roi-method summary {
  min-height: var(--tap-size);
  cursor: pointer;
  color: var(--mint-300);
  font-weight: 600;
}

.roi-method summary:hover {
  color: var(--mint-500);
}

.roi-method div {
  padding-top: var(--space-3);
  color: var(--ink-200);
  font-size: var(--text-sm);
}

.roi-method div p:last-child {
  margin-bottom: 0;
}

/* Closing and footer */
.demo {
  padding-block: var(--space-11);
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.45fr);
  align-items: end;
  gap: var(--space-12);
}

.demo-layout h2 {
  max-width: 20ch;
  margin-bottom: var(--space-4);
}

.demo-copy > p {
  max-width: var(--measure);
  margin-bottom: 0;
  color: var(--ink-800);
  font-size: var(--text-md);
}

.demo-agenda {
  margin: var(--space-6) 0 0;
  padding: 0;
  list-style: none;
}

.demo-agenda li {
  position: relative;
  padding: var(--space-3) 0 var(--space-3) var(--space-6);
  border-top: var(--line-width) solid var(--ink-alpha-16);
}

.demo-agenda li::before {
  position: absolute;
  top: calc(var(--space-3) + var(--space-2));
  left: 0;
  width: var(--space-2);
  height: var(--space-2);
  background: var(--ink-900);
  content: "";
}

.demo-action {
  padding-left: var(--space-8);
  border-left: var(--line-width) solid var(--ink-alpha-16);
}

.demo-action p {
  margin-bottom: var(--space-4);
  color: var(--ink-800);
  font-size: var(--text-sm);
  font-weight: 600;
}

.site-footer {
  padding-block: var(--space-7);
  background: var(--ink-900);
  color: var(--mineral-50);
}

.footer-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-8);
}

.footer-layout p {
  margin-bottom: 0;
  color: var(--ink-200);
  font-size: var(--text-sm);
}

.footer-layout p:nth-child(2) {
  text-align: center;
}

/* Scheduling dialog */
.demo-dialog {
  width: min(66rem, calc(100% - var(--space-7)));
  max-width: none;
  height: min(48rem, calc(100dvh - var(--space-7)));
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--mineral-50);
  color: var(--ink-900);
  box-shadow: var(--shadow-lg);
}

.demo-dialog::backdrop {
  background: var(--ink-alpha-82);
}

.dialog-panel {
  display: grid;
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.dialog-header,
.dialog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-5) var(--space-6);
}

.dialog-header {
  border-bottom: var(--line-width) solid var(--line);
}

.dialog-header h2 {
  margin-bottom: var(--space-1);
  font-size: var(--text-xl);
}

.dialog-header p,
.dialog-footer p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.dialog-close {
  flex: 0 0 auto;
  width: var(--tap-size);
  height: var(--tap-size);
  border: var(--line-width) solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-raised);
  color: var(--ink-900);
  cursor: pointer;
  font-size: var(--text-xl);
  line-height: 1;
}

.dialog-close:hover {
  background: var(--mineral-200);
}

.calendar-shell {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  background: var(--mineral-100);
}

.calendar-shell iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--mineral-50);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.calendar-shell.is-loaded iframe {
  opacity: 1;
}

.calendar-loading {
  position: absolute;
  inset: 50% auto auto 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  color: var(--text-soft);
}

.calendar-shell.is-loaded .calendar-loading {
  display: none;
}

.dialog-footer {
  border-top: var(--line-width) solid var(--line);
}

/* Responsive */
@media (max-width: 64rem) {
  .primary-nav {
    gap: var(--space-4);
  }

  .primary-nav > a:not(.button) {
    display: none;
  }

  .hero-copy {
    width: min(42rem, 72%);
  }

  .plenum-fallback {
    transform: translateX(14%);
  }

  .handoff-flow {
    grid-template-columns: repeat(5, minmax(10rem, 1fr));
    overflow-x: auto;
  }

  .capability-story {
    grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
    gap: var(--space-9);
  }

  .integration-node {
    padding: var(--space-6);
  }
}

@media (max-width: 48rem) {
  :root {
    --page: calc(100% - var(--space-7));
    --header-height: 4rem;
  }

  .site-header {
    background: var(--ink-900);
    color: var(--mineral-50);
  }

  .site-header.is-scrolled {
    border-color: var(--ink-700);
    background: var(--ink-900);
    color: var(--mineral-50);
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100dvh - var(--header-height));
    align-items: stretch;
    overflow-y: auto;
    padding: var(--space-6) var(--space-5) var(--space-8);
    border-top: var(--line-width) solid var(--ink-700);
    background: var(--ink-900);
    color: var(--mineral-50);
    box-shadow: var(--shadow-lg);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav > a:not(.button) {
    display: flex;
    min-height: var(--tap-size);
    align-items: center;
    border-bottom: var(--line-width) solid var(--ink-700);
    font-size: var(--text-base);
  }

  .primary-nav .button {
    margin-top: var(--space-3);
    background: var(--mint-300);
    color: var(--ink-950);
  }

  .hero {
    min-height: 48rem;
  }

  .hero::after {
    background: linear-gradient(180deg, var(--ink-950) 0%, var(--ink-alpha-96) 58%, var(--ink-alpha-55) 100%);
  }

  .hero-content {
    align-items: flex-start;
    padding-top: calc(var(--header-height) + var(--space-11));
    padding-bottom: var(--space-9);
  }

  .hero-copy {
    width: 100%;
  }

  .hero-lede {
    font-size: var(--text-md);
  }

  .hero-note {
    max-width: 32rem;
  }

  .plenum-fallback {
    top: 22%;
    width: auto;
    height: 78%;
    min-width: 52rem;
    transform: translateX(-16%);
    opacity: 0.45;
  }

  .systems-line,
  .split-heading,
  .capabilities-heading,
  .capability-story,
  .roi-layout,
  .demo-layout,
  .footer-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .systems-line {
    gap: var(--space-4);
  }

  .systems-line .platform-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .systems-line .platform-brand {
    min-height: var(--space-11);
    padding: var(--space-3) var(--space-4);
    border-top: var(--line-width) solid var(--mineral-alpha-18);
    border-left: 0;
  }

  .systems-line .platform-brand:nth-child(even) {
    border-left: var(--line-width) solid var(--mineral-alpha-18);
  }

  .section-heading {
    padding-top: var(--space-10);
    padding-bottom: var(--space-7);
  }

  .split-heading,
  .capabilities-heading {
    gap: var(--space-5);
    align-items: start;
  }

  .job-flow {
    padding-bottom: var(--space-10);
  }

  .handoff-flow {
    grid-template-columns: minmax(0, 1fr);
    overflow: visible;
  }

  .handoff-flow li {
    display: grid;
    grid-template-columns: var(--space-8) minmax(0, 1fr);
    gap: 0 var(--space-4);
    padding: var(--space-5) 0;
    border-right: 0;
    border-bottom: var(--line-width) solid var(--ink-alpha-16);
  }

  .handoff-flow li:last-child {
    border-bottom: 0;
  }

  .step-number {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .handoff-flow h3,
  .handoff-flow p {
    grid-column: 2;
  }

  .capabilities {
    padding-bottom: var(--space-10);
  }

  .capability-story {
    gap: var(--space-7);
    padding-block: var(--space-9);
  }

  .capability-story.story-reverse .story-copy,
  .capability-story.story-reverse .interface-example {
    grid-column: 1;
    grid-row: auto;
  }


  .integration {
    padding-bottom: var(--space-10);
  }

  .integration-composition {
    grid-template-columns: minmax(0, 1fr);
  }

  .integration-node {
    padding: var(--space-6);
  }

  .integration-plenum {
    margin-block: 0;
    padding-block: var(--space-6);
  }

  .integration-link {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: var(--space-12);
    padding: var(--space-4) var(--space-10);
  }

  .integration-link p {
    justify-items: center;
    text-align: center;
  }

  .integration-link svg {
    width: var(--space-10);
    transform: rotate(90deg);
  }

  .integration-link-return span {
    grid-row: 1;
  }

  .integration-link-return svg {
    grid-row: 2;
  }

  .integration-note {
    padding: var(--space-5) var(--space-6);
  }

  .roi {
    padding-block: var(--space-10);
  }

  .roi-layout {
    gap: var(--space-9);
  }

  .demo-layout {
    justify-items: start;
    gap: var(--space-7);
  }

  .demo-action {
    width: 100%;
    padding: var(--space-6) 0 0;
    border-top: var(--line-width) solid var(--ink-alpha-16);
    border-left: 0;
  }

  .footer-layout {
    justify-items: start;
    gap: var(--space-4);
  }

  .footer-layout p:nth-child(2) {
    text-align: left;
  }

  .demo-dialog {
    width: calc(100% - var(--space-4));
    height: calc(100dvh - var(--space-4));
  }

  .dialog-header,
  .dialog-footer {
    padding: var(--space-4);
  }

  .dialog-footer {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 30rem) {
  h1 {
    font-size: clamp(3rem, 15vw, 4.25rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .systems-line .platform-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .integration-link {
    padding-inline: var(--space-5);
  }

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

  .fleet-control {
    grid-template-columns: minmax(0, 1fr);
  }

  .number-wrap {
    justify-self: start;
  }

  .workspace-bar,
  .review-browser-bar {
    gap: var(--space-2);
    padding-inline: var(--space-3);
  }

  .workspace-mode {
    display: none;
  }

  .intake-workspace,
  .review-workspace {
    grid-template-columns: minmax(0, 1fr);
  }

  .intake-caller {
    padding: var(--space-4);
    border-right: 0;
    border-bottom: var(--line-width) solid var(--ink-300);
  }

  .intake-caller > p:not(.ui-kicker) {
    margin-bottom: var(--space-4);
  }

  .intake-caller dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-2);
  }

  .intake-main,
  .review-main,
  .field-screen {
    padding: var(--space-4);
  }

  .intake-heading,
  .review-heading {
    display: grid;
  }

  .intake-owner,
  .review-heading > p {
    text-align: left;
  }

  .call-details {
    grid-template-columns: minmax(0, 1fr);
  }

  .call-details > div {
    display: grid;
    grid-template-columns: var(--space-13) minmax(0, 1fr);
    gap: var(--space-3);
    border-right: 0;
    border-bottom: var(--line-width) solid var(--line);
  }

  .call-details > div:last-child {
    border-bottom: 0;
  }

  .call-details dd {
    margin-top: 0;
  }

  .example-action,
  .review-action {
    grid-template-columns: minmax(0, 1fr);
  }

  .example-action span {
    width: 100%;
  }

  .review-rail {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-3) var(--space-4);
  }

  .review-rail > strong {
    margin-bottom: 0;
  }

  .review-rail ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-rail li {
    padding: var(--space-2);
    border-top: 0;
    border-left: var(--line-width) solid var(--ink-700);
  }

  .review-example table,
  .review-example thead,
  .review-example tbody,
  .review-example tr,
  .review-example th,
  .review-example td {
    display: block;
    width: 100%;
  }

  .review-example thead {
    position: absolute;
    width: var(--line-width);
    height: var(--line-width);
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .review-example tbody tr {
    padding-bottom: var(--space-4);
    border-top: var(--line-width) solid var(--line);
  }

  .review-example tbody th:first-child {
    width: 100%;
    padding: var(--space-3) 0 var(--space-1);
    border-top: 0;
  }

  .review-example tbody td,
  .review-example tbody td:last-child {
    display: grid;
    width: 100%;
    grid-template-columns: var(--space-13) minmax(0, 1fr);
    gap: var(--space-3);
    padding: var(--space-1) 0;
    border-top: 0;
  }

  .review-example tbody td::before {
    color: var(--ink-700);
    content: attr(data-label);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
  }

  .review-button {
    width: 100%;
  }
}

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

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

}
