@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600;700;900&display=swap');

:root {
  --devstate-blue: #005387;
  --devstate-blue-dark: #00101f;
  --devstate-blue-deep: #001e36;
  --devstate-cyan: #54c5d0;
  --devstate-cyan-strong: #45bfcc;
  --devstate-ink: #142838;
  --devstate-muted: #4f5d68;
  --devstate-soft: #f4f7f9;
  --devstate-surface: #ffffff;
  --devstate-surface-2: #eef4f7;
  --devstate-border: #c9d7df;
  --devstate-focus: #007c99;
  --devstate-error: #b42318;
  --devstate-success: #067647;
  --devstate-shadow: 0 18px 50px rgba(0, 30, 54, 0.12);
  --devstate-radius: 8px;
  --devstate-shell: min(1180px, calc(100vw - 32px));
  --devstate-header-height: 76px;
  color-scheme: light;
}

.devstate-theme-dark {
  --devstate-ink: #e8f0f4;
  --devstate-muted: #c2ced7;
  --devstate-soft: #07131f;
  --devstate-surface: #0d1d2d;
  --devstate-surface-2: #10253a;
  --devstate-border: rgba(255, 255, 255, 0.18);
  --devstate-focus: #72d7df;
  --devstate-shadow: 0 22px 64px rgba(0, 0, 0, 0.32);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--devstate-soft);
  color: var(--devstate-ink);
  font-family: "Titillium Web", Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: "Titillium Web", Arial, sans-serif;
}

p,
li,
input,
textarea,
select {
  font-family: "Titillium Web", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--devstate-focus);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(84, 197, 208, 0.18);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  font-family: "Titillium Web", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
}

p {
  margin: 0;
}

.site.grid-container,
.container.grid-container,
.site-content,
.inside-article,
.entry-content {
  max-width: none;
}

.site-content {
  display: block;
  padding: 0;
}

.inside-article {
  padding: 0;
}

.entry-content > * {
  margin-top: 0;
}

.devstate-page .entry-content {
  overflow: hidden;
}

.devstate-page .site-main {
  margin: 0;
}

.devstate-page .entry-header {
  display: none;
}

.devstate-page .page {
  margin-bottom: 0;
}

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

/* Header and navigation */

#masthead.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(0, 16, 31, 0.58), rgba(0, 16, 31, 0));
  color: #fff;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body.admin-bar #masthead.site-header {
  top: 32px;
}

.devstate-scrolled #masthead.site-header,
body:not(.devstate-home) #masthead.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 227, 234, 0.9);
  box-shadow: 0 12px 34px rgba(0, 30, 54, 0.08);
  backdrop-filter: blur(14px);
  color: var(--devstate-ink);
}

.devstate-theme-dark.devstate-scrolled #masthead.site-header,
.devstate-theme-dark body:not(.devstate-home) #masthead.site-header {
  background: rgba(0, 16, 31, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

#masthead .inside-header {
  width: var(--devstate-shell);
  min-height: var(--devstate-header-height);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo.devstate-logo {
  line-height: 0;
}

.site-branding {
  display: none;
}

.devstate-logo a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 168px;
  height: 42px;
}

.devstate-logo__image {
  position: absolute;
  inset: 0 auto auto 0;
  max-width: 168px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.devstate-logo__image--positive {
  opacity: 0;
}

.devstate-logo__image--inverted {
  opacity: 1;
}

.devstate-scrolled .devstate-logo__image--positive,
body:not(.devstate-home) .devstate-logo__image--positive {
  opacity: 1;
}

.devstate-scrolled .devstate-logo__image--inverted,
body:not(.devstate-home) .devstate-logo__image--inverted {
  opacity: 0;
}

.devstate-theme-dark .devstate-logo__image--positive {
  opacity: 0;
}

.devstate-theme-dark .devstate-logo__image--inverted {
  opacity: 1;
}

#site-navigation.main-navigation {
  background: transparent;
  color: inherit;
}

#site-navigation .inside-navigation {
  display: flex;
  align-items: center;
  min-height: var(--devstate-header-height);
  gap: 10px;
}

#site-navigation .main-nav ul {
  align-items: center;
}

#site-navigation .main-nav ul li a {
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 9px;
  transition: background 160ms ease, color 160ms ease;
}

#site-navigation .main-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.devstate-scrolled #site-navigation .main-nav ul li a,
body:not(.devstate-home) #site-navigation .main-nav ul li a {
  color: rgba(20, 40, 56, 0.74);
}

.devstate-theme-dark #site-navigation .main-nav ul li a {
  color: rgba(255, 255, 255, 0.76);
}

.devstate-theme-dark.devstate-scrolled #site-navigation .main-nav ul li a,
.devstate-theme-dark body:not(.devstate-home) #site-navigation .main-nav ul li a {
  color: rgba(255, 255, 255, 0.82);
}

#site-navigation .main-nav ul li:hover > a,
#site-navigation .main-nav ul li.sfHover > a,
#site-navigation .main-nav ul li.current-menu-item > a {
  background: rgba(84, 197, 208, 0.12);
  color: #fff;
}

.devstate-scrolled #site-navigation .main-nav ul li:hover > a,
.devstate-scrolled #site-navigation .main-nav ul li.sfHover > a,
.devstate-scrolled #site-navigation .main-nav ul li.current-menu-item > a,
body:not(.devstate-home) #site-navigation .main-nav ul li:hover > a,
body:not(.devstate-home) #site-navigation .main-nav ul li.sfHover > a,
body:not(.devstate-home) #site-navigation .main-nav ul li.current-menu-item > a {
  color: var(--devstate-blue);
}

.devstate-theme-dark #site-navigation .main-nav ul li:hover > a,
.devstate-theme-dark #site-navigation .main-nav ul li.sfHover > a,
.devstate-theme-dark #site-navigation .main-nav ul li.current-menu-item > a {
  background: rgba(84, 197, 208, 0.14);
  color: #fff;
}

.devstate-theme-dark.devstate-scrolled #site-navigation .main-nav ul li:hover > a,
.devstate-theme-dark.devstate-scrolled #site-navigation .main-nav ul li.sfHover > a,
.devstate-theme-dark.devstate-scrolled #site-navigation .main-nav ul li.current-menu-item > a,
.devstate-theme-dark body:not(.devstate-home) #site-navigation .main-nav ul li:hover > a,
.devstate-theme-dark body:not(.devstate-home) #site-navigation .main-nav ul li.sfHover > a,
.devstate-theme-dark body:not(.devstate-home) #site-navigation .main-nav ul li.current-menu-item > a {
  color: #fff;
}

#site-navigation .main-nav ul ul {
  width: 270px;
  padding: 8px;
  border: 1px solid var(--devstate-border);
  border-radius: 8px;
  background: var(--devstate-surface);
  box-shadow: var(--devstate-shadow);
}

#site-navigation .main-nav ul ul li a {
  display: block;
  min-height: 0;
  color: var(--devstate-muted);
  line-height: 1.25;
  padding: 12px;
}

#site-navigation .main-nav ul ul li:hover > a {
  color: var(--devstate-blue);
  background: rgba(0, 83, 135, 0.07);
}

.devstate-theme-dark #site-navigation .main-nav ul ul {
  background: #071522;
  border-color: rgba(84, 197, 208, 0.18);
}

.devstate-theme-dark #site-navigation .main-nav ul ul li a,
.devstate-theme-dark.devstate-scrolled #site-navigation .main-nav ul ul li a,
.devstate-theme-dark body:not(.devstate-home) #site-navigation .main-nav ul ul li a {
  color: rgba(232, 240, 244, 0.78);
}

.devstate-theme-dark #site-navigation .main-nav ul ul li:hover > a,
.devstate-theme-dark #site-navigation .main-nav ul ul li.current-menu-item > a {
  background: rgba(84, 197, 208, 0.13);
  color: #fff;
}

.menu-bar-items {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 10px;
  margin-left: 8px;
}

.devstate-theme-toggle,
.devstate-nav-cta {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

#masthead .menu-bar-items .devstate-nav-cta {
  border-radius: 8px;
  min-height: 40px;
}

.devstate-theme-toggle {
  position: relative;
  width: 42px;
  min-height: 42px;
  flex: 0 0 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.devstate-theme-toggle:hover {
  background: rgba(84, 197, 208, 0.16);
}

.devstate-scrolled .devstate-theme-toggle,
body:not(.devstate-home) .devstate-theme-toggle {
  background: rgba(0, 83, 135, 0.08);
  color: var(--devstate-blue);
}

.devstate-theme-dark .devstate-theme-toggle {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.devstate-theme-toggle__icon {
  position: absolute;
  width: 22px;
  height: 22px;
  transition: opacity 160ms ease, transform 160ms ease;
}

.devstate-theme-toggle__icon--sun {
  opacity: 0;
  transform: scale(0.72);
}

.devstate-theme-dark .devstate-theme-toggle__icon--moon {
  opacity: 0;
  transform: scale(0.72);
}

.devstate-theme-dark .devstate-theme-toggle__icon--sun {
  opacity: 1;
  transform: scale(1);
}

#masthead .menu-bar-items .devstate-nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--devstate-cyan);
  color: #001428;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  height: 40px;
  padding: 0 18px;
  margin: 0;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(84, 197, 208, 0.2);
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
}

#masthead .menu-bar-items .devstate-nav-cta__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1;
  text-align: center;
  transform: none;
}

.devstate-nav-cta:hover {
  background: var(--devstate-cyan-strong);
  color: #001428;
  transform: translateY(-1px);
}

.menu-toggle {
  color: #fff;
}

.devstate-scrolled .menu-toggle,
body:not(.devstate-home) .menu-toggle {
  color: var(--devstate-blue);
}

.devstate-theme-dark .menu-toggle {
  color: #fff;
}

.devstate-theme-light body.devstate-home:not(.devstate-fire-pump-landing) #site-navigation .main-nav > ul > li > a {
  color: rgba(255, 255, 255, 0.9);
}

.devstate-theme-light.devstate-scrolled body.devstate-home #site-navigation .main-nav > ul > li > a,
.devstate-theme-light body:not(.devstate-home) #site-navigation .main-nav > ul > li > a {
  color: rgba(20, 40, 56, 0.82);
}

.devstate-theme-light body.devstate-home:not(.devstate-fire-pump-landing) #site-navigation .main-nav > ul > li:hover > a,
.devstate-theme-light body.devstate-home:not(.devstate-fire-pump-landing) #site-navigation .main-nav > ul > li.sfHover > a,
.devstate-theme-light body.devstate-home:not(.devstate-fire-pump-landing) #site-navigation .main-nav > ul > li.current-menu-item > a {
  color: #fff;
}

.devstate-theme-light.devstate-scrolled body.devstate-home #site-navigation .main-nav > ul > li:hover > a,
.devstate-theme-light.devstate-scrolled body.devstate-home #site-navigation .main-nav > ul > li.sfHover > a,
.devstate-theme-light.devstate-scrolled body.devstate-home #site-navigation .main-nav > ul > li.current-menu-item > a,
.devstate-theme-light body:not(.devstate-home) #site-navigation .main-nav > ul > li:hover > a,
.devstate-theme-light body:not(.devstate-home) #site-navigation .main-nav > ul > li.sfHover > a,
.devstate-theme-light body:not(.devstate-home) #site-navigation .main-nav > ul > li.current-menu-item > a {
  color: var(--devstate-blue);
}

/* Shared components */

.devstate-section {
  position: relative;
  padding: clamp(72px, 8vw, 112px) 0;
}

.devstate-section--tight {
  padding: clamp(48px, 6vw, 76px) 0;
}

.devstate-section--light {
  background: var(--devstate-surface);
}

.devstate-section--surface {
  background: var(--devstate-surface-2);
}

.devstate-section__head {
  max-width: 680px;
  margin-bottom: 42px;
}

.devstate-section__head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  align-items: end;
  gap: 32px;
}

.devstate-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--devstate-cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.devstate-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(84, 197, 208, 0.12);
}

.devstate-section-titleline {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.devstate-section-titleline .devstate-kicker {
  margin-bottom: 0;
}

.devstate-section-titleline .devstate-kicker::before {
  display: none;
}

.devstate-section-titleline__icon {
  align-items: center;
  background: var(--sector-bg, rgba(0, 83, 135, 0.08));
  border-radius: 8px;
  color: var(--sector-color, var(--devstate-blue));
  display: flex;
  flex: 0 0 46px;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.devstate-section-titleline__icon .devstate-icon {
  font-size: 22px;
}

.devstate-section__head h2,
.devstate-fire h2,
.devstate-feature__content h2,
.devstate-contact__content h2 {
  color: var(--devstate-ink);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  max-width: 760px;
  overflow-wrap: break-word;
}

.devstate-section__head p,
.devstate-lead,
.devstate-contact__content > p {
  color: var(--devstate-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-top: 14px;
  max-width: 640px;
}

.devstate-highlight {
  color: var(--devstate-blue);
}

.devstate-theme-dark .devstate-highlight {
  color: var(--devstate-cyan);
}

.devstate-icon {
  display: block;
  fill: none;
  height: 1em;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 1em;
}

.devstate-actions,
.devstate-hero__actions,
.devstate-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.devstate-button {
  align-items: center;
  background: var(--devstate-blue);
  border: 1px solid transparent;
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.devstate-button::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.devstate-button:hover {
  background: #003f68;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0, 83, 135, 0.18);
}

.devstate-button--light {
  background: var(--devstate-cyan);
  color: #001428;
  box-shadow: 0 10px 28px rgba(84, 197, 208, 0.26);
}

.devstate-button--light:hover {
  background: var(--devstate-cyan-strong);
  color: #001428;
}

.devstate-button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
}

.devstate-button--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: none;
}

.devstate-section--light .devstate-button--ghost,
.devstate-section--surface .devstate-button--ghost,
.devstate-contact .devstate-button--ghost {
  border-color: rgba(0, 83, 135, 0.22);
  color: var(--devstate-blue);
}

.devstate-section--light .devstate-button--ghost:hover,
.devstate-section--surface .devstate-button--ghost:hover,
.devstate-contact .devstate-button--ghost:hover {
  background: rgba(0, 83, 135, 0.06);
}

.devstate-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.devstate-card {
  background: var(--devstate-surface);
  border: 1px solid var(--devstate-border);
  border-radius: var(--devstate-radius);
  min-height: 210px;
  padding: 24px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.devstate-card:hover {
  border-color: rgba(84, 197, 208, 0.46);
  box-shadow: var(--devstate-shadow);
  transform: translateY(-2px);
}

.devstate-card--dark {
  background: linear-gradient(135deg, #001e36, #00365a);
  color: #fff;
}

.devstate-card__tag {
  color: var(--devstate-cyan);
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.devstate-card h3 {
  color: inherit;
  font-size: 20px;
  line-height: 1.2;
}

.devstate-card p {
  color: var(--devstate-muted);
  font-size: 14px;
  line-height: 1.68;
  margin-top: 10px;
}

.devstate-card--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.devstate-card a {
  color: var(--devstate-blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  margin-top: 18px;
  text-decoration: none;
}

.devstate-theme-dark .devstate-card a {
  color: var(--devstate-cyan);
}

.devstate-card a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  margin-top: 6px;
  transform: rotate(45deg);
}

/* Hero */

.devstate-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: calc(var(--devstate-header-height) + 70px) 0 84px;
  background-image:
    linear-gradient(90deg, rgba(0, 16, 31, 0.9), rgba(0, 16, 31, 0.54) 54%, rgba(0, 16, 31, 0.18)),
    linear-gradient(180deg, rgba(0, 16, 31, 0.48), rgba(0, 16, 31, 0.2)),
    var(--devstate-hero-image);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.devstate-hero--compact {
  min-height: 520px;
  padding: calc(var(--devstate-header-height) + 72px) 0 78px;
}

.devstate-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(280px, 360px);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
}

.devstate-hero__content {
  max-width: 700px;
}

.devstate-home-hero .devstate-hero__inner {
  grid-template-columns: minmax(0, 1fr);
  justify-content: stretch;
}

.devstate-home-hero .devstate-hero__content {
  max-width: 1040px;
  width: min(100%, 1040px);
}

.devstate-hero.devstate-home-hero h1 {
  font-size: clamp(2.45rem, 5vw, 3.7rem);
  line-height: 1.08;
  max-width: 1010px;
}

.devstate-hero.devstate-home-hero h1 span {
  display: inline;
}

.devstate-home-hero .devstate-hero__text {
  max-width: 690px;
}

.devstate-home-hero .devstate-hero__actions {
  margin-top: 30px;
}

.devstate-hero .devstate-kicker {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 34px;
  padding: 10px 15px;
}

.devstate-hero .devstate-kicker::before {
  background: var(--devstate-cyan);
  box-shadow: 0 0 0 5px rgba(84, 197, 208, 0.14), 0 0 12px rgba(84, 197, 208, 0.45);
}

.devstate-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  max-width: 680px;
}

.devstate-hero h1 span {
  color: var(--devstate-cyan);
  display: inline-block;
}

.devstate-hero__divider {
  background: rgba(84, 197, 208, 0.6);
  height: 1px;
  margin: 28px 0 0;
  width: 56px;
}

.devstate-hero__text {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.78;
  margin-top: 24px;
  max-width: 560px;
}

.devstate-hero__panel {
  align-self: end;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--devstate-radius);
  color: #fff;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.devstate-hero__panel strong {
  color: var(--devstate-cyan);
  display: block;
  font-size: 13px;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.devstate-hero__panel p,
.devstate-hero__panel li {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.devstate-hero__panel ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.devstate-microcards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 46px;
}

.devstate-home-hero .devstate-microcards {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  max-width: 960px;
  width: 100%;
}

.devstate-microcard {
  align-items: center;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  display: flex;
  gap: 12px;
  min-height: 64px;
  min-width: 190px;
  padding: 13px 15px;
}

.devstate-home-hero .devstate-microcard {
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  align-items: center;
  flex: none;
  height: 100%;
  min-height: 72px;
  min-width: 0;
  max-width: none;
  width: 100%;
}

.devstate-microcard__icon {
  align-items: center;
  background: var(--sector-bg, rgba(84, 197, 208, 0.13));
  border-radius: 8px;
  color: var(--sector-color, var(--devstate-cyan));
  display: inline-flex;
  flex: 0 0 46px;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.devstate-microcard__icon .devstate-icon {
  font-size: 22px;
}

.devstate-microcard strong {
  color: rgba(255, 255, 255, 0.88);
  display: block;
  font-size: 13px;
  line-height: 1;
}

.devstate-microcard > div > span {
  color: rgba(255, 255, 255, 0.44);
  display: block;
  font-family: "Titillium Web", Arial, sans-serif;
  font-size: 11px;
  margin-top: 5px;
}

/* Home sections */

.devstate-about__grid,
.devstate-fire__grid,
.devstate-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.devstate-fire__grid > * {
  min-width: 0;
}

.devstate-about__copy {
  max-width: 600px;
}

.devstate-about__text {
  color: var(--devstate-muted);
  display: grid;
  gap: 14px;
  font-size: 15px;
  line-height: 1.75;
  margin-top: 22px;
}

.devstate-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.devstate-value-card {
  background: var(--devstate-surface);
  border: 1px solid var(--devstate-border);
  border-radius: var(--devstate-radius);
  min-height: 146px;
  padding: 18px;
}

.devstate-value-card__icon {
  align-items: center;
  background: var(--sector-bg, rgba(0, 83, 135, 0.08));
  border-radius: 8px;
  color: var(--sector-color, var(--devstate-blue));
  display: inline-flex;
  height: 46px;
  justify-content: center;
  margin-bottom: 12px;
  width: 46px;
}

.devstate-theme-dark .devstate-value-card__icon {
  background: var(--sector-bg, rgba(84, 197, 208, 0.12));
  color: var(--sector-color, var(--devstate-cyan));
}

.devstate-value-card__icon .devstate-icon {
  font-size: 22px;
}

.devstate-value-card h3 {
  font-size: 17px;
}

.devstate-value-card p {
  color: var(--devstate-muted);
  font-size: 13px;
  line-height: 1.55;
  margin-top: 6px;
}

.devstate-theme-dark #about h2,
.devstate-theme-dark .devstate-value-card,
.devstate-theme-dark .devstate-value-card h3 {
  color: var(--devstate-ink);
}

.devstate-theme-dark .devstate-value-card {
  background: linear-gradient(180deg, rgba(16, 37, 58, 0.96), rgba(13, 29, 45, 0.98));
}

.devstate-theme-dark .devstate-about__text,
.devstate-theme-dark .devstate-value-card p {
  color: rgba(232, 240, 244, 0.8);
}

.devstate-about__media {
  position: relative;
}

.devstate-about__image {
  aspect-ratio: 4 / 5;
  background-image: linear-gradient(180deg, rgba(0, 83, 135, 0), rgba(0, 30, 54, 0.5)), var(--devstate-about-image);
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  box-shadow: var(--devstate-shadow);
  min-height: 420px;
}

.devstate-about__stats {
  align-items: center;
  background: var(--devstate-surface);
  border: 1px solid var(--devstate-border);
  border-radius: 8px;
  bottom: -22px;
  box-shadow: var(--devstate-shadow);
  display: flex;
  gap: 20px;
  left: -22px;
  padding: 18px 20px;
  position: absolute;
}

.devstate-about__stats div + div {
  border-left: 1px solid var(--devstate-border);
  padding-left: 20px;
}

.devstate-about__stats strong {
  color: var(--devstate-blue);
  display: block;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.devstate-about__stats span {
  color: var(--devstate-muted);
  display: block;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.devstate-services-grid {
  background: var(--devstate-border);
  border: 1px solid var(--devstate-border);
  border-radius: 10px;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.devstate-service-card {
  background: var(--devstate-surface);
  min-height: 250px;
  padding: 28px;
  position: relative;
  transition: background 180ms ease, color 180ms ease;
}

.devstate-service-card:hover {
  background: var(--devstate-blue);
  color: #fff;
}

.devstate-service-card__number {
  color: rgba(0, 83, 135, 0.16);
  font-family: "Titillium Web", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  position: absolute;
  right: 24px;
  top: 22px;
}

.devstate-service-card:hover .devstate-service-card__number {
  color: rgba(255, 255, 255, 0.22);
}

.devstate-service-card__icon {
  align-items: center;
  background: var(--sector-bg, rgba(0, 83, 135, 0.09));
  border-radius: 8px;
  color: var(--sector-color, var(--devstate-blue));
  display: inline-flex;
  height: 46px;
  justify-content: center;
  margin-bottom: 18px;
  width: 46px;
}

.devstate-service-card__icon .devstate-icon {
  font-size: 22px;
}

.devstate-service-card:hover .devstate-service-card__icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.devstate-service-card h3 {
  font-size: 20px;
}

.devstate-service-card p {
  color: var(--devstate-muted);
  font-size: 14px;
  line-height: 1.65;
  margin-top: 10px;
}

.devstate-theme-dark #services .devstate-section__head h2,
.devstate-theme-dark .devstate-service-card,
.devstate-theme-dark .devstate-service-card h3 {
  color: var(--devstate-ink);
}

.devstate-theme-dark .devstate-service-card {
  background: linear-gradient(180deg, rgba(16, 37, 58, 0.96), rgba(13, 29, 45, 0.98));
}

.devstate-theme-dark .devstate-service-card p {
  color: rgba(232, 240, 244, 0.8);
}

.devstate-theme-dark .devstate-service-card__number {
  color: rgba(232, 240, 244, 0.28);
}

.devstate-service-card:hover p {
  color: rgba(255, 255, 255, 0.76);
}

.devstate-fire {
  overflow: hidden;
}

.devstate-fire::before {
  background: linear-gradient(180deg, transparent, rgba(0, 83, 135, 0.56), transparent);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 4px;
}

.devstate-feature-list,
.devstate-list,
.devstate-benefit-list,
.devstate-contact-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.devstate-feature-list {
  display: grid;
  gap: 12px;
}

.devstate-feature-list li,
.devstate-list li,
.devstate-benefit-list li,
.devstate-contact-list li {
  color: var(--devstate-ink);
  font-family: "Titillium Web", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  padding-left: 32px;
  position: relative;
}

.devstate-feature-list li::before,
.devstate-list li::before,
.devstate-benefit-list li::before,
.devstate-contact-list li::before {
  background: rgba(84, 197, 208, 0.12);
  border-radius: 4px;
  color: var(--devstate-cyan);
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 20px;
}

.devstate-feature-list li::after,
.devstate-list li::after,
.devstate-benefit-list li::after,
.devstate-contact-list li::after {
  border-bottom: 2px solid var(--devstate-cyan);
  border-right: 2px solid var(--devstate-cyan);
  content: "";
  height: 8px;
  left: 7px;
  position: absolute;
  top: 6px;
  transform: rotate(38deg);
  width: 4px;
}

.devstate-feature-list--icons,
.devstate-benefit-list--icons {
  gap: 12px;
}

.devstate-feature-list--icons li,
.devstate-benefit-list--icons li {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: 46px minmax(0, 1fr);
  min-height: 46px;
  padding-left: 0;
}

.devstate-feature-list--icons li > span,
.devstate-benefit-list--icons li > span {
  min-width: 0;
  overflow-wrap: break-word;
}

.devstate-feature-list--icons li::before,
.devstate-feature-list--icons li::after,
.devstate-benefit-list--icons li::before,
.devstate-benefit-list--icons li::after {
  display: none;
}

.devstate-feature-list__icon,
.devstate-benefit-list__icon {
  align-items: center;
  background: var(--sector-bg, rgba(0, 83, 135, 0.08));
  border-radius: 8px;
  color: var(--sector-color, var(--devstate-blue));
  display: flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.devstate-feature-list__icon .devstate-icon,
.devstate-benefit-list__icon .devstate-icon {
  font-size: 22px;
}

.devstate-fire__media {
  display: grid;
  gap: 18px;
}

.devstate-fire__image {
  aspect-ratio: 16 / 9;
  background-image: linear-gradient(180deg, rgba(0, 83, 135, 0), rgba(0, 30, 54, 0.45)), var(--devstate-fire-image);
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  box-shadow: var(--devstate-shadow);
  min-height: 250px;
}

.devstate-benefits {
  background: var(--devstate-surface);
  border: 1px solid var(--devstate-border);
  border-radius: 8px;
  padding: 24px;
}

.devstate-benefits h3 {
  color: var(--devstate-ink);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.devstate-benefit-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

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

.devstate-product-card {
  background: var(--devstate-surface);
  border: 1px solid var(--devstate-border);
  border-radius: 10px;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.devstate-product-card:hover {
  border-color: rgba(84, 197, 208, 0.5);
  box-shadow: var(--devstate-shadow);
  transform: translateY(-3px);
}

.devstate-product-card__image {
  aspect-ratio: 16 / 10;
  background-color: #0d2e4e;
  background-image: linear-gradient(180deg, rgba(0, 30, 54, 0), rgba(0, 30, 54, 0.44)), var(--devstate-card-image, url("../images/hero-industrial.webp"));
  background-position: center;
  background-size: cover;
  display: block;
}

.devstate-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.devstate-product-card h3 {
  color: var(--devstate-ink);
  font-size: 20px;
}

.devstate-product-card p {
  color: var(--devstate-muted);
  flex: 1;
  font-size: 14px;
  line-height: 1.65;
  margin-top: 10px;
}

.devstate-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.devstate-tags span {
  background: rgba(0, 83, 135, 0.07);
  border: 1px solid rgba(0, 83, 135, 0.12);
  border-radius: 4px;
  color: var(--devstate-blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 6px 8px;
}

.devstate-theme-dark .devstate-tags span {
  background: rgba(84, 197, 208, 0.1);
  border-color: rgba(84, 197, 208, 0.16);
  color: var(--devstate-cyan);
}

.devstate-product-card__link {
  align-items: center;
  color: var(--devstate-blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  margin-top: 18px;
}

.devstate-product-card__link::after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
  height: 6px;
  transform: rotate(45deg);
  width: 6px;
}

.devstate-product-band {
  background: #0a2a47;
  padding: clamp(92px, 12vw, 132px) 0 54px;
}

.devstate-product-band h1 {
  color: #fff;
  font-size: clamp(32px, 4.8vw, 46px);
  line-height: 1.08;
}

.devstate-product-band p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 760px;
}

.devstate-product-breadcrumbs {
  align-items: center;
  color: rgba(255, 255, 255, 0.46);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 8px;
  margin-bottom: 16px;
}

.devstate-product-breadcrumbs a,
.devstate-product-breadcrumbs span {
  color: inherit;
  text-decoration: none;
}

.devstate-product-breadcrumbs a:hover {
  color: rgba(255, 255, 255, 0.78);
}

.devstate-product-breadcrumbs .is-current {
  color: rgba(84, 197, 208, 0.88);
}

.devstate-product-index,
.devstate-product-page {
  padding: 68px 0 84px;
}

.devstate-theme-dark body.devstate-page .site,
.devstate-theme-dark body.devstate-page .site-content,
.devstate-theme-dark body.devstate-page .content-area,
.devstate-theme-dark body.devstate-page .site-main,
.devstate-theme-dark body.devstate-page .site-main > article.page,
.devstate-theme-dark body.devstate-page .inside-article,
.devstate-theme-dark body.devstate-page .entry-content {
  background: transparent !important;
}

.devstate-theme-dark body.devstate-page .site-main > article.page,
.devstate-theme-dark body.devstate-page .inside-article {
  border: 0;
  box-shadow: none !important;
}

.devstate-theme-dark .devstate-product-index,
.devstate-theme-dark .devstate-product-page {
  background:
    radial-gradient(circle at top left, rgba(84, 197, 208, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(4, 15, 24, 0.96) 0%, rgba(5, 17, 28, 0.98) 100%);
}

.devstate-conversion {
  background: var(--devstate-surface);
}

.devstate-conversion .devstate-feature__grid {
  align-items: start;
}

.devstate-conversion .devstate-section__head h2 {
  font-weight: 800;
}

.devstate-conversion .devstate-section__head p,
.devstate-conversion .devstate-card p,
.devstate-conversion .devstate-form__description,
.devstate-conversion .devstate-form__help {
  color: var(--devstate-muted);
}

.devstate-conversion .devstate-card {
  color: var(--devstate-ink);
  min-height: 180px;
}

.devstate-conversion .devstate-card h3 {
  font-size: 18px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.devstate-conversion .devstate-card a {
  color: var(--devstate-blue);
}

.devstate-theme-dark .devstate-conversion {
  background:
    radial-gradient(circle at top left, rgba(84, 197, 208, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(4, 15, 24, 0.96) 0%, rgba(5, 17, 28, 0.98) 100%);
}

.devstate-theme-dark .devstate-conversion .devstate-form,
.devstate-theme-dark .devstate-conversion .devstate-card {
  background: linear-gradient(180deg, rgba(9, 24, 38, 0.96), rgba(11, 29, 45, 0.92));
  border-color: rgba(84, 197, 208, 0.14);
  color: var(--devstate-ink);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
}

.devstate-theme-dark .devstate-conversion .devstate-card a {
  color: var(--devstate-cyan);
}

.devstate-theme-dark .devstate-conversion .devstate-form input:not([type="checkbox"]),
.devstate-theme-dark .devstate-conversion .devstate-form textarea {
  background: rgba(3, 12, 21, 0.72);
  border-color: rgba(255, 255, 255, 0.14);
}

.devstate-theme-dark .devstate-conversion .devstate-form input::placeholder,
.devstate-theme-dark .devstate-conversion .devstate-form textarea::placeholder {
  color: rgba(232, 240, 244, 0.48);
}

.devstate-product-index-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.devstate-product-index-main .devstate-product-index-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.devstate-product-index-card {
  background: var(--devstate-surface);
  border: 1px solid var(--devstate-border);
  border-radius: 16px;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.devstate-theme-dark .devstate-product-index-card,
.devstate-theme-dark .devstate-product-tile,
.devstate-theme-dark .devstate-product-panel,
.devstate-theme-dark .devstate-product-callout,
.devstate-theme-dark .devstate-product-action-card,
.devstate-theme-dark .devstate-product-feature-card {
  background: linear-gradient(180deg, rgba(9, 24, 38, 0.96), rgba(11, 29, 45, 0.92));
  border-color: rgba(84, 197, 208, 0.14);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
}

.devstate-product-index-card:hover {
  border-color: rgba(84, 197, 208, 0.45);
  box-shadow: var(--devstate-shadow);
  transform: translateY(-3px);
}

.devstate-product-index-card__icon {
  display: inline-flex;
  margin-bottom: 18px;
}

.devstate-product-index-card__icon-badge,
.devstate-product-sidebar__icon,
.devstate-product-panel__icon,
.devstate-product-callout__icon,
.devstate-product-feature-card__icon {
  align-items: center;
  background: rgba(0, 83, 135, 0.08);
  border-radius: 12px;
  color: var(--devstate-blue);
  display: inline-flex;
  font-size: 20px;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.devstate-theme-dark .devstate-product-index-card__icon-badge,
.devstate-theme-dark .devstate-product-sidebar__icon,
.devstate-theme-dark .devstate-product-panel__icon,
.devstate-theme-dark .devstate-product-callout__icon,
.devstate-theme-dark .devstate-product-feature-card__icon {
  background: rgba(84, 197, 208, 0.12);
  color: var(--devstate-cyan);
}

.devstate-product-index-card h2 {
  color: var(--devstate-ink);
  font-size: 22px;
  line-height: 1.2;
}

.devstate-product-index-card p {
  color: var(--devstate-muted);
  flex: 1;
  font-size: 14px;
  line-height: 1.75;
  margin-top: 12px;
}

.devstate-product-index-card__link {
  align-items: center;
  color: var(--devstate-blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  margin-top: 22px;
}

.devstate-theme-dark .devstate-product-index-card__link {
  color: var(--devstate-cyan);
}

.devstate-product-index-card__link::after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
  height: 6px;
  transform: rotate(45deg);
  width: 6px;
}

.devstate-product-layout {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr;
}

.devstate-product-sidebar {
  align-self: start;
  background: color-mix(in srgb, var(--devstate-surface) 92%, transparent);
  border: 1px solid var(--devstate-border);
  border-radius: 16px;
  box-shadow: var(--devstate-shadow);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 16px;
  position: sticky;
  top: calc(var(--devstate-header-height) + 24px);
  scrollbar-gutter: stable;
  scrollbar-width: thin;
}

.devstate-theme-dark .devstate-product-sidebar {
  background: linear-gradient(180deg, rgba(8, 22, 35, 0.98), rgba(10, 26, 41, 0.94));
  border-color: rgba(84, 197, 208, 0.16);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
}

.devstate-product-sidebar__label {
  color: var(--devstate-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.devstate-theme-dark .devstate-product-sidebar__label,
.devstate-theme-dark .devstate-product-topnav__label {
  color: rgba(232, 240, 244, 0.58);
}

.devstate-product-sidebar__nav {
  display: grid;
  gap: 6px;
}

.devstate-product-sidebar__link {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--devstate-muted);
  display: flex;
  gap: 10px;
  min-height: 56px;
  padding: 9px 12px 9px 16px;
  position: relative;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.devstate-theme-dark .devstate-product-sidebar__link {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
  color: rgba(232, 240, 244, 0.78);
}

.devstate-product-sidebar__link::before {
  background: var(--devstate-cyan);
  border-radius: 999px;
  content: "";
  inset: 9px auto 9px 0;
  opacity: 0;
  position: absolute;
  transform: scaleY(0.65);
  transition: opacity 180ms ease, transform 180ms ease;
  width: 3px;
}

.devstate-product-sidebar__icon {
  border-radius: 10px;
  flex: 0 0 36px;
  font-size: 16px;
  height: 36px;
  width: 36px;
}

.devstate-product-sidebar__text {
  display: -webkit-box;
  flex: 1 1 auto;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.devstate-product-sidebar__link:hover,
.devstate-product-sidebar__link.is-active {
  background: rgba(0, 83, 135, 0.035);
  border-color: rgba(0, 83, 135, 0.08);
  color: var(--devstate-blue);
}

.devstate-product-sidebar__link:hover::before,
.devstate-product-sidebar__link.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.devstate-theme-dark .devstate-product-sidebar__link:hover,
.devstate-theme-dark .devstate-product-sidebar__link.is-active {
  background: rgba(84, 197, 208, 0.11);
  border-color: rgba(84, 197, 208, 0.24);
  box-shadow: inset 0 0 0 1px rgba(84, 197, 208, 0.08);
  color: #f2fbff;
}

.devstate-product-main {
  grid-column: 1 / -1;
  margin: 0 auto;
  max-width: 920px;
  min-width: 0;
  width: 100%;
}

.devstate-product-main > * + * {
  margin-top: 32px;
}

.devstate-product-topnav {
  display: none;
}

.devstate-product-topnav__head {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.devstate-product-topnav__label {
  color: var(--devstate-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.devstate-product-topnav__overview {
  color: var(--devstate-blue);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.devstate-theme-dark .devstate-product-topnav__overview {
  color: var(--devstate-cyan);
}

.devstate-product-topnav__rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.devstate-product-topnav__rail::-webkit-scrollbar {
  display: none;
}

.devstate-product-topnav__link {
  align-items: center;
  background: var(--devstate-surface);
  border: 1px solid var(--devstate-border);
  border-radius: 999px;
  color: var(--devstate-muted);
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.devstate-theme-dark .devstate-product-topnav__link {
  background: rgba(9, 25, 39, 0.9);
  border-color: rgba(84, 197, 208, 0.12);
  color: rgba(232, 240, 244, 0.76);
}

.devstate-product-topnav__link:hover,
.devstate-product-topnav__link.is-active {
  background: rgba(0, 83, 135, 0.05);
  border-color: rgba(0, 83, 135, 0.12);
  color: var(--devstate-blue);
}

.devstate-theme-dark .devstate-product-topnav__link:hover,
.devstate-theme-dark .devstate-product-topnav__link.is-active {
  background: rgba(84, 197, 208, 0.11);
  border-color: rgba(84, 197, 208, 0.24);
  color: #f2fbff;
}

.devstate-product-chipbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.devstate-product-chip {
  background: var(--devstate-surface);
  border: 1px solid var(--devstate-border);
  border-radius: 10px;
  color: var(--devstate-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 14px;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.devstate-theme-dark .devstate-product-chip {
  background: rgba(9, 25, 39, 0.88);
  border-color: rgba(84, 197, 208, 0.14);
  color: rgba(232, 240, 244, 0.72);
}

.devstate-product-chip:hover {
  border-color: rgba(84, 197, 208, 0.45);
  color: var(--devstate-ink);
}

.devstate-theme-dark .devstate-product-chip:hover {
  background: rgba(84, 197, 208, 0.08);
  border-color: rgba(84, 197, 208, 0.28);
  color: #f2fbff;
}

.devstate-product-group {
  scroll-margin-top: calc(var(--devstate-header-height) + 28px);
}

.devstate-product-group__head {
  margin-bottom: 18px;
}

.devstate-product-group__head h2 {
  color: var(--devstate-ink);
  font-size: 21px;
  line-height: 1.2;
}

.devstate-product-group__head p {
  color: var(--devstate-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 8px;
}

.devstate-product-tiles {
  display: grid;
  gap: 20px;
}

.devstate-product-tiles--1 {
  grid-template-columns: 1fr;
}

.devstate-product-tiles--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.devstate-product-tile {
  background: var(--devstate-surface);
  border: 1px solid var(--devstate-border);
  border-radius: 16px;
  min-height: 100%;
  padding: 24px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.devstate-product-tile:hover {
  border-color: rgba(84, 197, 208, 0.38);
  box-shadow: var(--devstate-shadow);
  transform: translateY(-2px);
}

.devstate-product-tile__eyebrow {
  color: var(--devstate-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.devstate-theme-dark .devstate-product-tile__eyebrow {
  color: var(--devstate-cyan);
}

.devstate-product-tile h3 {
  color: var(--devstate-ink);
  font-size: 20px;
  line-height: 1.25;
}

.devstate-product-tile__text {
  color: var(--devstate-muted);
  font-size: 14px;
  line-height: 1.75;
  margin-top: 12px;
}

.devstate-product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.devstate-product-pills span {
  background: rgba(0, 83, 135, 0.07);
  border: 1px solid rgba(0, 83, 135, 0.12);
  border-radius: 999px;
  color: var(--devstate-blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 8px 10px;
}

.devstate-theme-dark .devstate-product-pills span {
  background: rgba(84, 197, 208, 0.1);
  border-color: rgba(84, 197, 208, 0.16);
  color: var(--devstate-cyan);
}

.devstate-product-panel,
.devstate-product-callout,
.devstate-product-action-card {
  background: var(--devstate-surface);
  border: 1px solid var(--devstate-border);
  border-radius: 16px;
  box-shadow: var(--devstate-shadow);
  padding: 28px;
}

.devstate-product-panel__head,
.devstate-product-callout,
.devstate-product-feature-card {
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-columns: 48px minmax(0, 1fr);
}

.devstate-product-panel__head {
  grid-template-columns: minmax(0, 1fr);
}

.devstate-product-panel__head:has(.devstate-product-panel__media) {
  grid-template-columns: 48px minmax(0, 1fr);
}

.devstate-product-panel__media,
.devstate-product-callout__media,
.devstate-product-feature-card__media {
  display: flex;
}

.devstate-product-panel__copy,
.devstate-product-callout__copy,
.devstate-product-feature-card__copy {
  min-width: 0;
  width: 100%;
}

.devstate-product-panel__head h2,
.devstate-product-action-card h2,
.devstate-product-callout__title,
.devstate-product-feature-card h3 {
  color: var(--devstate-ink);
  max-width: none;
  overflow-wrap: normal;
  width: 100%;
  word-break: normal;
}

.devstate-product-panel__head h2,
.devstate-product-action-card h2 {
  font-size: 22px;
  line-height: 1.15;
}

.devstate-product-panel__head p,
.devstate-product-callout__text,
.devstate-product-feature-card p,
.devstate-product-action-card p {
  color: var(--devstate-muted);
  font-size: 14px;
  line-height: 1.75;
}

.devstate-product-callout__title {
  font-size: 15px;
  font-weight: 800;
}

.devstate-product-panel__list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.devstate-product-panel__list li {
  color: var(--devstate-muted);
  display: flex;
  gap: 10px;
  line-height: 1.7;
  padding-left: 0;
}

.devstate-product-panel__list li::before,
.devstate-product-panel__list li::after {
  display: none;
}

.devstate-product-panel__bullet {
  background: var(--devstate-blue);
  border-radius: 999px;
  flex: 0 0 7px;
  height: 7px;
  margin-top: 8px;
}

.devstate-theme-dark .devstate-product-panel__bullet {
  background: var(--devstate-cyan);
}

.devstate-product-feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.devstate-product-feature-card {
  background: var(--devstate-surface);
  border: 1px solid var(--devstate-border);
  border-radius: 16px;
  min-height: 100%;
  padding: 22px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.devstate-product-feature-card:hover {
  border-color: rgba(84, 197, 208, 0.38);
  box-shadow: var(--devstate-shadow);
  transform: translateY(-2px);
}

.devstate-product-action-card {
  text-align: center;
}

.devstate-product-action-card__actions {
  justify-content: center;
  margin-top: 22px;
}

.devstate-legacy-product-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.devstate-legacy-product-nav__link {
  background: var(--devstate-surface);
  border: 1px solid var(--devstate-border);
  border-radius: 999px;
  color: var(--devstate-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  padding: 11px 14px;
  text-decoration: none;
}

.devstate-legacy-product-nav__link:hover,
.devstate-legacy-product-nav__link.is-active {
  background: rgba(0, 83, 135, 0.07);
  border-color: rgba(0, 83, 135, 0.2);
  color: var(--devstate-blue);
}

.devstate-theme-dark .devstate-legacy-product-nav__link {
  background: rgba(9, 25, 39, 0.9);
  border-color: rgba(84, 197, 208, 0.14);
}

.devstate-theme-dark .devstate-legacy-product-nav__link:hover,
.devstate-theme-dark .devstate-legacy-product-nav__link.is-active {
  background: rgba(84, 197, 208, 0.11);
  border-color: rgba(84, 197, 208, 0.28);
  color: var(--devstate-cyan);
}

.devstate-legacy-product-main {
  margin: 0 auto;
  max-width: 1120px;
}

.devstate-legacy-product-main > * + * {
  margin-top: 34px;
}

.devstate-legacy-product-grid {
  display: grid;
  gap: 20px;
}

.devstate-legacy-product-grid--1 {
  grid-template-columns: 1fr;
}

.devstate-legacy-product-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.devstate-legacy-product-card {
  background: var(--devstate-surface);
  border: 1px solid var(--devstate-border);
  border-radius: 16px;
  box-shadow: var(--devstate-shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease;
}

.devstate-legacy-product-card:hover {
  border-color: rgba(84, 197, 208, 0.38);
  transform: translateY(-2px);
}

.devstate-legacy-product-card__media {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, rgba(0, 83, 135, 0.04), rgba(84, 197, 208, 0.08));
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 18px;
}

.devstate-theme-dark .devstate-legacy-product-card__media {
  background: linear-gradient(180deg, rgba(84, 197, 208, 0.08), rgba(0, 83, 135, 0.16));
}

.devstate-legacy-product-card__media img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.devstate-legacy-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.devstate-legacy-product-card h3 {
  color: var(--devstate-ink);
  font-size: 20px;
  line-height: 1.25;
}

.devstate-legacy-specs {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.devstate-legacy-specs li {
  color: var(--devstate-muted);
  display: flex;
  font-size: 13px;
  gap: 9px;
  line-height: 1.5;
}

.devstate-legacy-specs li::before {
  background: var(--devstate-cyan);
  border-radius: 999px;
  content: "";
  flex: 0 0 6px;
  height: 6px;
  margin-top: 7px;
}

.devstate-legacy-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.devstate-legacy-downloads a {
  background: rgba(0, 83, 135, 0.08);
  border: 1px solid rgba(0, 83, 135, 0.16);
  border-radius: 999px;
  color: var(--devstate-blue);
  font-size: 12px;
  font-weight: 800;
  padding: 9px 11px;
  text-decoration: none;
}

.devstate-theme-dark .devstate-legacy-downloads a {
  background: rgba(84, 197, 208, 0.1);
  border-color: rgba(84, 197, 208, 0.18);
  color: var(--devstate-cyan);
}

.devstate-legacy-downloads a:hover {
  border-color: rgba(84, 197, 208, 0.48);
}

@media (max-width: 1180px) {
  .devstate-product-index-grid,
  .devstate-product-tiles--3,
  .devstate-product-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 979px) {
  .devstate-product-page {
    padding-top: 44px;
  }

  .devstate-product-topnav {
    display: block !important;
    margin-bottom: 28px;
  }

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

  .devstate-product-sidebar {
    display: none !important;
  }

  .devstate-product-main {
    grid-column: 1;
  }
}

@media (min-width: 980px) {
  .devstate-product-topnav {
    display: none !important;
  }

  .devstate-product-layout--has-sidebar {
    grid-template-columns: 272px minmax(0, 1fr);
  }

  .devstate-product-layout--has-sidebar .devstate-product-sidebar {
    display: block;
  }

  .devstate-product-layout--has-sidebar .devstate-product-main {
    grid-column: 2;
    margin: 0;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .devstate-product-band {
    padding-bottom: 44px;
    padding-top: 92px;
  }

  .devstate-product-index,
  .devstate-product-page {
    padding: 52px 0 68px;
  }

  .devstate-product-index-grid,
  .devstate-product-index-main .devstate-product-index-grid,
  .devstate-product-tiles--2,
  .devstate-product-tiles--3,
  .devstate-product-feature-grid {
    grid-template-columns: 1fr;
  }

  .devstate-product-panel,
  .devstate-product-callout,
  .devstate-product-action-card {
    padding: 22px;
  }

  .devstate-product-panel__head,
  .devstate-product-callout,
  .devstate-product-feature-card {
    grid-template-columns: 1fr;
  }

  .devstate-product-action-card__actions {
    justify-content: stretch;
  }

  .devstate-product-action-card__actions .devstate-button {
    width: 100%;
  }
}

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

.devstate-sector-card {
  background: var(--devstate-surface);
  border: 1px solid var(--devstate-border);
  border-radius: 10px;
  display: grid;
  gap: 16px;
  grid-template-columns: 46px minmax(0, 1fr);
  min-height: 170px;
  padding: 22px;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.devstate-sector-card:hover {
  border-color: rgba(84, 197, 208, 0.46);
  box-shadow: var(--devstate-shadow);
  transform: translateY(-2px);
}

.devstate-sector-card__icon {
  align-items: center;
  background: var(--sector-bg, rgba(0, 83, 135, 0.08));
  border-radius: 8px;
  color: var(--sector-color, var(--devstate-blue));
  display: flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.devstate-sector-card__icon .devstate-icon {
  font-size: 22px;
}

.devstate-sector-card h3 {
  color: var(--devstate-ink);
  font-size: 18px;
}

.devstate-sector-card p {
  color: var(--devstate-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 7px;
}

.devstate-contact__grid {
  align-items: start;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
}

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

.devstate-contact-list li {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 46px minmax(0, 1fr);
  padding-left: 0;
}

.devstate-contact-list li::before,
.devstate-contact-list li::after {
  display: none;
}

.devstate-contact-list__icon {
  align-items: center;
  background: rgba(0, 83, 135, 0.08);
  border-radius: 8px;
  color: var(--devstate-blue);
  display: flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.devstate-theme-dark .devstate-contact-list__icon {
  background: rgba(84, 197, 208, 0.12);
  color: var(--devstate-cyan);
}

.devstate-contact-list__icon .devstate-icon {
  font-size: 22px;
}

.devstate-contact-list a {
  color: var(--devstate-ink);
  font-weight: 700;
  text-decoration: none;
}

.devstate-response-note {
  background: rgba(0, 83, 135, 0.06);
  border: 1px solid rgba(0, 83, 135, 0.16);
  border-radius: 8px;
  color: var(--devstate-muted);
  font-family: "Titillium Web", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  margin-top: 28px;
  padding: 16px;
}

.devstate-response-note strong {
  color: var(--devstate-ink);
  display: block;
  font-family: "Titillium Web", Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 4px;
}

.devstate-contact__form {
  min-width: 0;
}

/* Existing reusable sections */

.devstate-feature {
  background: var(--devstate-blue-deep);
  color: #fff;
}

.devstate-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
}

.devstate-feature__visual {
  aspect-ratio: 4 / 3;
  background-image: linear-gradient(180deg, rgba(0, 30, 54, 0), rgba(0, 30, 54, 0.45)), var(--devstate-feature-image);
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  min-height: 330px;
}

.devstate-feature .devstate-feature__content h2,
.devstate-feature .devstate-lead,
.devstate-feature .devstate-list li {
  color: #fff;
}

.devstate-feature .devstate-lead,
.devstate-feature .devstate-list li {
  color: rgba(255, 255, 255, 0.72);
}

.devstate-metrics {
  background: var(--devstate-blue-deep);
  color: #fff;
  padding: 30px 0;
}

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

.devstate-metric {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  min-height: 116px;
  padding: 20px;
}

.devstate-metric strong {
  color: var(--devstate-cyan);
  display: block;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.devstate-metric span {
  color: rgba(255, 255, 255, 0.66);
  display: block;
  font-family: "Titillium Web", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  margin-top: 8px;
}

.devstate-media-card {
  align-items: end;
  aspect-ratio: 4 / 5;
  background-image: linear-gradient(180deg, rgba(0, 30, 54, 0.08), rgba(0, 16, 31, 0.82)), var(--devstate-card-image);
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  color: #fff;
  display: flex;
  min-height: 340px;
  overflow: hidden;
}

.devstate-media-card__content {
  padding: 24px;
}

.devstate-media-card h3 {
  color: #fff;
  font-size: 22px;
}

.devstate-media-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
}

.devstate-process .devstate-card {
  min-height: 170px;
}

.devstate-cta-band {
  background: linear-gradient(135deg, var(--devstate-blue), #001e36);
  color: #fff;
}

.devstate-cta-band__inner {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.devstate-cta-band h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 2.45rem);
}

.devstate-cta-band p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 10px;
  max-width: 660px;
}

.devstate-placeholder-note {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.34);
  border-radius: 8px;
  color: var(--devstate-ink);
  font-family: "Titillium Web", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
  padding: 18px;
}

.devstate-legal {
  background: var(--devstate-surface);
}

.devstate-theme-dark .devstate-legal {
  background:
    radial-gradient(circle at top left, rgba(84, 197, 208, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(4, 15, 24, 0.96) 0%, rgba(5, 17, 28, 0.98) 100%);
}

.devstate-legal__layout {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
}

.devstate-legal__summary,
.devstate-legal__content {
  background: var(--devstate-surface);
  border: 1px solid var(--devstate-border);
  border-radius: 10px;
  box-shadow: var(--devstate-shadow);
}

.devstate-theme-dark .devstate-legal__summary,
.devstate-theme-dark .devstate-legal__content {
  background: linear-gradient(180deg, rgba(9, 24, 38, 0.96), rgba(11, 29, 45, 0.92));
  border-color: rgba(84, 197, 208, 0.14);
  color: var(--devstate-ink);
}

.devstate-legal__summary {
  padding: 22px;
  position: sticky;
  top: calc(var(--devstate-header-height) + 22px);
}

.devstate-legal__eyebrow {
  color: var(--devstate-cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 14px;
  text-transform: uppercase;
}

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

.devstate-legal__summary li {
  color: var(--devstate-muted);
  font-size: 14px;
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}

.devstate-legal__summary li::before {
  background: var(--devstate-cyan);
  border-radius: 999px;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 0.62em;
  width: 6px;
}

.devstate-legal__content {
  padding: clamp(24px, 4vw, 44px);
}

.devstate-legal__notice {
  background: rgba(84, 197, 208, 0.09);
  border: 1px solid rgba(84, 197, 208, 0.24);
  border-radius: 8px;
  padding: 16px 18px;
}

.devstate-legal__content h2 {
  color: var(--devstate-ink);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  line-height: 1.16;
  margin-top: 36px;
}

.devstate-legal__content h2:first-child {
  margin-top: 0;
}

.devstate-legal__content p {
  color: var(--devstate-muted);
  font-size: 16px;
  line-height: 1.78;
  margin-top: 14px;
}

.devstate-legal__content strong {
  color: var(--devstate-ink);
  font-weight: 800;
}

.devstate-legal__content a {
  color: var(--devstate-blue);
  font-weight: 800;
}

.devstate-theme-dark .devstate-legal__content a {
  color: var(--devstate-cyan);
}

.cky-btn-revisit-wrapper {
  width: 48px !important;
  height: 48px !important;
  left: 16px !important;
  bottom: 16px !important;
  border: 2px solid var(--devstate-cyan) !important;
  background: linear-gradient(145deg, var(--devstate-blue), var(--devstate-blue-deep)) !important;
  box-shadow: 0 12px 28px rgba(0, 30, 54, 0.34), 0 0 0 4px rgba(84, 197, 208, 0.14) !important;
}

.cky-btn-revisit-wrapper .cky-btn-revisit img {
  width: 30px !important;
  height: 30px !important;
  filter: brightness(0) invert(1);
}

.cky-consent-container.cky-box-bottom-left {
  bottom: 72px !important;
  left: clamp(12px, 2vw, 20px) !important;
  max-width: 420px !important;
  width: min(420px, calc(100vw - 24px)) !important;
}

.cky-consent-container .cky-consent-bar,
.cky-modal .cky-preference-center {
  border-radius: 8px !important;
  box-shadow: 0 20px 50px rgba(5, 21, 35, 0.28) !important;
  font-family: var(--devstate-font, inherit) !important;
}

.cky-consent-container .cky-consent-bar {
  max-height: min(72vh, 460px) !important;
  overflow: auto !important;
  padding: 16px !important;
}

.cky-notice .cky-title,
.cky-preference-header .cky-preference-title,
.cky-accordion-header .cky-accordion-btn {
  font-weight: 650 !important;
  letter-spacing: 0 !important;
}

.cky-notice .cky-title {
  font-size: 16px !important;
  line-height: 1.25 !important;
  margin-bottom: 6px !important;
}

.cky-notice-des {
  font-size: 13px !important;
  line-height: 1.45 !important;
  margin-bottom: 0 !important;
  max-height: 110px !important;
  overflow: auto !important;
}

.cky-notice-btn-wrapper {
  display: grid !important;
  gap: 8px !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  margin-top: 12px !important;
}

.cky-btn {
  border-radius: 6px !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
  min-height: 38px !important;
  padding: 8px 10px !important;
  white-space: normal !important;
}

.cky-accordion-header .cky-always-active {
  color: var(--devstate-cyan) !important;
}

.devstate-theme-dark .cky-consent-container .cky-consent-bar,
.devstate-theme-dark .cky-modal .cky-preference-center {
  background: #071522 !important;
  border-color: rgba(143, 174, 194, 0.28) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.devstate-theme-dark .cky-notice .cky-title,
.devstate-theme-dark .cky-notice-des,
.devstate-theme-dark .cky-notice-des *,
.devstate-theme-dark .cky-preference-header .cky-preference-title,
.devstate-theme-dark .cky-preference-content-wrapper,
.devstate-theme-dark .cky-preference-content-wrapper *,
.devstate-theme-dark .cky-accordion-header .cky-accordion-btn,
.devstate-theme-dark .cky-accordion-header-des,
.devstate-theme-dark .cky-accordion-header-des * {
  color: rgba(255, 255, 255, 0.88) !important;
}

.devstate-theme-dark .cky-audit-table {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(143, 174, 194, 0.22) !important;
}

.devstate-theme-dark .cky-footer-shadow {
  background: linear-gradient(180deg, rgba(7, 21, 34, 0), #071522 100%) !important;
}


.devstate-whatsapp-float {
  background: linear-gradient(145deg, var(--devstate-blue), var(--devstate-blue-deep));
  border: 2px solid var(--devstate-cyan);
  border-radius: 999px;
  bottom: 16px;
  box-shadow: 0 12px 28px rgba(0, 30, 54, 0.34), 0 0 0 4px rgba(84, 197, 208, 0.14);
  color: #fff;
  display: grid;
  place-items: center;
  height: 52px;
  position: fixed;
  right: 16px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, filter 180ms ease;
  width: 52px;
  z-index: 999998;
}

.devstate-whatsapp-float:hover,
.devstate-whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 30, 54, 0.42), 0 0 0 6px rgba(84, 197, 208, 0.22);
  filter: brightness(1.1);
}

.devstate-whatsapp-float:focus-visible {
  outline: 2px solid var(--devstate-cyan);
  outline-offset: 4px;
}


.devstate-whatsapp-float__icon {
  fill: currentColor;
  height: 28px;
  width: 28px;
}

@media (max-width: 576px) {
  .cky-consent-container.cky-box-bottom-left {
    left: 0 !important;
    bottom: 0 !important;
  }

  .cky-btn-revisit-wrapper {
    left: 12px !important;
    bottom: 12px !important;
  }

  .devstate-whatsapp-float {
    bottom: 12px;
    height: 50px;
    right: 12px;
    width: 50px;
  }
}

/* Forms */

.devstate-form {
  background: var(--devstate-surface);
  border: 1px solid var(--devstate-border);
  border-radius: 10px;
  box-shadow: var(--devstate-shadow);
  overflow: hidden;
  padding: 0;
}

.devstate-form h2 {
  background: var(--devstate-surface-2);
  border-bottom: 1px solid var(--devstate-border);
  color: var(--devstate-ink);
  font-size: 18px;
  padding: 18px 22px;
}

.devstate-contact .devstate-form h2 {
  font-weight: 800;
}

.devstate-form__grid,
.devstate-form > .devstate-form__field,
.devstate-form > button,
.devstate-form__message {
  margin-left: 22px;
  margin-right: 22px;
}

.devstate-form__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.devstate-form__field {
  margin-bottom: 0;
}

.devstate-form__field:has(textarea) {
  grid-column: 1 / -1;
}

.devstate-form label {
  color: var(--devstate-ink);
  display: block;
  font-family: "Titillium Web", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.devstate-contact .devstate-form__grid label {
  font-weight: 700;
}

.devstate-conversion .devstate-form label,
.devstate-conversion .devstate-form__consent label {
  font-weight: 500;
}

.devstate-form input:not([type="checkbox"]),
.devstate-form textarea {
  background: var(--devstate-soft);
  border: 1px solid var(--devstate-border);
  border-radius: 6px;
  color: var(--devstate-ink);
  display: block;
  font-size: 15px;
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

.devstate-form input:not([type="checkbox"])::placeholder,
.devstate-form textarea::placeholder {
  color: #667480;
  opacity: 1;
}

.devstate-theme-dark .devstate-form input:not([type="checkbox"])::placeholder,
.devstate-theme-dark .devstate-form textarea::placeholder {
  color: rgba(232, 240, 244, 0.68);
  opacity: 1;
}

.devstate-form input:not([type="checkbox"]):focus,
.devstate-form textarea:focus {
  border-color: var(--devstate-focus);
  box-shadow: 0 0 0 4px rgba(84, 197, 208, 0.18);
  outline: 0;
}

.devstate-form [aria-invalid="true"]:not([type="checkbox"]) {
  border-color: var(--devstate-error);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.12);
}

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

.devstate-form__help {
  color: var(--devstate-muted);
  display: block;
  font-size: 13px;
  line-height: 1.45;
  margin-top: 8px;
}

.devstate-form__honeypot {
  height: 1px !important;
  left: -10000px !important;
  margin: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  position: absolute !important;
  top: auto !important;
  width: 1px !important;
}

.devstate-form__captcha {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.devstate-form__captcha iframe {
  max-width: 100%;
}

.devstate-form__consent {
  align-items: flex-start;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px minmax(0, 1fr);
  margin-top: 18px;
}

.devstate-form__consent label {
  display: block;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  min-height: 22px;
  margin: 0;
  padding-left: 0;
  text-transform: none;
}

.devstate-form__consent input {
  accent-color: var(--devstate-blue);
  grid-column: 1;
  height: 18px;
  margin: 0;
  position: static;
  transform: translateY(2px);
  width: 18px;
}

.devstate-form__consent input:focus {
  box-shadow: 0 0 0 4px rgba(84, 197, 208, 0.18);
  outline: 0;
}

.devstate-form__consent label {
  grid-column: 2;
}

.devstate-form__field-error {
  color: var(--devstate-error);
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 6px;
}

.devstate-theme-dark .devstate-form__field-error {
  color: #ffb4ab;
}

.devstate-form__message {
  border-radius: 6px;
  font-family: "Titillium Web", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 20px;
  padding: 12px 14px;
}

.devstate-form__message--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(6, 118, 71, 0.35);
  color: var(--devstate-success);
}

.devstate-form__message--error {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(180, 35, 24, 0.36);
  color: var(--devstate-error);
}

.devstate-theme-dark .devstate-form__message--success {
  background: rgba(6, 118, 71, 0.18);
  border-color: rgba(88, 211, 146, 0.38);
  color: #a7f3d0;
}

.devstate-theme-dark .devstate-form__message--error {
  background: rgba(180, 35, 24, 0.2);
  border-color: rgba(255, 180, 171, 0.42);
  color: #ffdad6;
}

.devstate-form button[type="submit"] {
  background: var(--devstate-blue);
  border: 0;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 22px;
  margin-top: 22px;
  min-height: 48px;
  padding: 0 22px;
  width: calc(100% - 44px);
}

.devstate-form button[type="submit"]:hover {
  background: #003f68;
}

.devstate-button--no-arrow::after {
  display: none;
}

.devstate-form__head {
  background: var(--devstate-surface-2);
  border-bottom: 1px solid var(--devstate-border);
  padding: 18px 22px 16px;
}

.devstate-form h2 {
  background: none;
  border-bottom: 0;
  padding: 0;
}

.devstate-form__description {
  color: var(--devstate-muted);
  font-size: 12px;
  line-height: 1.45;
  margin-top: 4px;
}

.devstate-form button[type="submit"] {
  align-items: center;
  display: flex;
  gap: 10px;
  font-weight: 700;
  justify-content: center;
}

.devstate-form__submit-icon {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 16px;
  justify-content: center;
}

.devstate-form__submit-icon svg {
  display: block;
  fill: none;
  height: 1em;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 1em;
}

/* Home refresh aligned to reference */

body.devstate-home .devstate-kicker::before {
  display: none;
}

body.devstate-home .devstate-about__grid,
body.devstate-home .devstate-fire__grid,
body.devstate-home .devstate-contact__grid {
  align-items: start;
  gap: clamp(36px, 5vw, 74px);
}

body.devstate-home .devstate-about__grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.98fr);
}

body.devstate-home .devstate-contact__grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.08fr);
}

body.devstate-home .devstate-about__copy,
body.devstate-home .devstate-fire__content,
body.devstate-home .devstate-contact__content {
  max-width: 560px;
}

body.devstate-home .devstate-about__text,
body.devstate-home .devstate-contact__content > p,
body.devstate-home .devstate-fire .devstate-lead {
  color: var(--devstate-muted);
  font-size: 15px;
  line-height: 1.72;
}

body.devstate-home .devstate-about__text {
  gap: 16px;
  margin-top: 24px;
}

body.devstate-home .devstate-contact__content > p,
body.devstate-home .devstate-fire .devstate-lead {
  margin-top: 18px;
}

body.devstate-home .devstate-value-grid {
  gap: 12px;
  margin-top: 34px;
}

body.devstate-home .devstate-value-card {
  min-height: 144px;
  padding: 16px 16px 18px;
}

body.devstate-home .devstate-value-card__icon,
body.devstate-home .devstate-service-card__icon,
body.devstate-home .devstate-sector-card__icon,
body.devstate-home .devstate-contact-list__icon {
  border-radius: 8px;
  font-size: 18px;
}

body.devstate-home .devstate-value-card__icon {
  height: 36px;
  margin-bottom: 14px;
  width: 36px;
}

body.devstate-home .devstate-value-card h3 {
  font-size: 15px;
  line-height: 1.15;
}

body.devstate-home .devstate-value-card p {
  font-size: 13px;
  line-height: 1.6;
}

body.devstate-home .devstate-about__media {
  padding-left: 18px;
  position: relative;
}

body.devstate-home .devstate-about__accent {
  background: var(--devstate-blue);
  border-radius: 0 999px 999px 0;
  display: block;
  height: 82px;
  left: 0;
  position: absolute;
  top: 0;
  width: 4px;
}

body.devstate-home .devstate-about__image {
  aspect-ratio: 1.22;
  min-height: 480px;
}

body.devstate-home .devstate-about__stats {
  background: color-mix(in srgb, var(--devstate-surface) 96%, transparent);
  border-radius: 10px;
  bottom: -18px;
  left: -18px;
  padding: 16px 18px;
}

body.devstate-home .devstate-about__stats strong {
  font-size: 30px;
}

body.devstate-home .devstate-about__stats span {
  font-size: 12px;
}

body.devstate-home #services .devstate-section__head {
  margin-bottom: 46px;
  max-width: 640px;
}

body.devstate-home .devstate-services-grid {
  border-radius: 14px;
}

body.devstate-home .devstate-service-card {
  min-height: 206px;
  padding: 24px 24px 22px;
}

body.devstate-home .devstate-service-card__number {
  font-size: 13px;
  opacity: 0.24;
  right: 18px;
  top: 16px;
}

body.devstate-home .devstate-service-card__icon {
  height: 46px;
  margin-bottom: 16px;
  width: 46px;
}

body.devstate-home .devstate-service-card h3 {
  font-size: 18px;
  line-height: 1.2;
  max-width: 280px;
}

body.devstate-home .devstate-service-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
  max-width: 320px;
}

body.devstate-home .devstate-fire {
  overflow: hidden;
}

body.devstate-home .devstate-fire::before {
  background: linear-gradient(180deg, transparent, rgba(0, 83, 135, 0.6), transparent);
  width: 4px;
}

body.devstate-home .devstate-fire__eyebrow {
  align-items: center;
  background: rgba(0, 83, 135, 0.05);
  border: 1px solid rgba(0, 83, 135, 0.16);
  border-radius: 4px;
  color: var(--devstate-blue);
  display: inline-flex;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 12px;
  text-transform: uppercase;
}

body.devstate-home .devstate-fire__eyebrow > span:last-child {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

body.devstate-home .devstate-fire__eyebrow-dot {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 6px;
  width: 6px;
}

body.devstate-home .devstate-fire h2 {
  max-width: 620px;
}

body.devstate-home .devstate-feature-list {
  gap: 12px;
  margin-top: 28px;
}

body.devstate-home .devstate-feature-list--icons li {
  align-items: center;
  gap: 12px;
  grid-template-columns: 34px minmax(0, 1fr);
  min-height: 34px;
}

body.devstate-home .devstate-feature-list__icon {
  border-radius: 8px;
  font-size: 15px;
  height: 34px;
  width: 34px;
}

body.devstate-home .devstate-feature-list li {
  font-size: 14px;
  line-height: 1.45;
}

body.devstate-home .devstate-fire .devstate-actions {
  margin-top: 34px;
}

body.devstate-home .devstate-button--home-primary {
  background: var(--devstate-blue);
  border-color: transparent;
  box-shadow: 0 16px 28px rgba(0, 83, 135, 0.18);
  min-height: 46px;
  padding: 0 28px;
}

body.devstate-home .devstate-fire__media {
  gap: 20px;
}

body.devstate-home .devstate-fire__image {
  border-radius: 14px;
  min-height: 292px;
}

body.devstate-home .devstate-benefits {
  border-radius: 14px;
  padding: 20px 22px 22px;
}

body.devstate-home .devstate-benefits__head {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

body.devstate-home .devstate-benefits__title-icon {
  color: var(--devstate-blue);
  display: inline-flex;
  font-size: 16px;
}

body.devstate-home .devstate-benefits__title-icon .devstate-icon {
  display: block;
}

body.devstate-home .devstate-benefits h3 {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
  margin-top: 5px;
}

body.devstate-home .devstate-benefit-list {
  gap: 10px;
  margin-top: 0;
}

body.devstate-home .devstate-benefit-list--icons li {
  align-items: start;
  gap: 10px;
  grid-template-columns: 18px minmax(0, 1fr);
  min-height: auto;
}

body.devstate-home .devstate-benefit-list__icon {
  background: transparent;
  border-radius: 0;
  color: var(--devstate-cyan);
  font-size: 16px;
  height: 18px;
  margin-top: 1px;
  width: 18px;
}

body.devstate-home .devstate-benefit-list li {
  color: var(--devstate-muted);
  font-size: 14px;
  line-height: 1.45;
}

body.devstate-home #sectors .devstate-section__head {
  margin-bottom: 36px;
}

body.devstate-home #sectors .devstate-section__head--split {
  align-items: end;
  gap: 28px;
}

body.devstate-home #sectors .devstate-section__head--split > p {
  color: var(--devstate-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  max-width: 420px;
  text-align: right;
}

body.devstate-home .devstate-sector-grid {
  gap: 16px;
}

body.devstate-home .devstate-sector-card {
  align-items: start;
  gap: 14px;
  min-height: 134px;
  padding: 18px 18px 20px;
}

body.devstate-home .devstate-sector-card__icon {
  flex: 0 0 42px;
  height: 42px;
  width: 42px;
}

body.devstate-home .devstate-sector-card h3 {
  font-size: 16px;
  line-height: 1.15;
}

body.devstate-home .devstate-sector-card p {
  font-size: 14px;
  line-height: 1.65;
  margin-top: 8px;
}

body.devstate-home .devstate-contact-list {
  gap: 16px;
  margin-top: 30px;
}

body.devstate-home .devstate-contact-list li {
  align-items: center;
  gap: 14px;
  grid-template-columns: 40px minmax(0, 1fr);
}

body.devstate-home .devstate-contact-list__icon {
  height: 40px;
  width: 40px;
}

body.devstate-home .devstate-contact-list__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

body.devstate-home .devstate-contact-list__label {
  color: var(--devstate-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.devstate-home .devstate-contact-list a,
body.devstate-home .devstate-contact-list__value {
  color: var(--devstate-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

body.devstate-home .devstate-response-note {
  border-radius: 10px;
  display: grid;
  gap: 6px;
  margin-top: 30px;
  padding: 16px 18px;
}

body.devstate-home .devstate-response-note strong {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  margin-bottom: 0;
}

body.devstate-home .devstate-response-note strong::before {
  background: #22c55e;
  border-radius: 999px;
  content: "";
  display: inline-block;
  flex: 0 0 8px;
  height: 8px;
  width: 8px;
}

body.devstate-home .devstate-response-note span {
  color: var(--devstate-muted);
  font-size: 13px;
  line-height: 1.55;
}

body.devstate-home .devstate-contact__actions {
  margin-top: 18px;
}

body.devstate-home .devstate-contact__form {
  min-width: 0;
}

/* Fire pump monitoring landing page */

body.devstate-fire-pump-landing #masthead.site-header {
  background: rgba(0, 16, 31, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  color: #fff;
}

body.devstate-fire-pump-landing #site-navigation .main-nav,
body.devstate-fire-pump-landing .menu-toggle {
  display: none !important;
}

body.devstate-fire-pump-landing .devstate-logo__image--positive {
  opacity: 0;
}

body.devstate-fire-pump-landing .devstate-logo__image--inverted {
  opacity: 1;
}

body.devstate-fire-pump-landing .menu-bar-items {
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.devstate-landing-nav {
  align-items: center;
  display: flex;
  gap: 6px;
  min-width: 0;
}

.devstate-landing-nav a {
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  padding: 12px 10px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
  white-space: nowrap;
}

.devstate-landing-nav a:hover,
.devstate-landing-nav a:focus-visible {
  background: rgba(84, 197, 208, 0.12);
  color: #fff;
}

#masthead .menu-bar-items .devstate-nav-cta--landing {
  background: var(--devstate-cyan);
  color: #001428;
  margin-left: 8px;
  max-width: 230px;
}

.devstate-fire-landing-page {
  background: var(--devstate-surface);
  color: var(--devstate-ink);
}

.devstate-theme-dark .devstate-fire-landing-page {
  background:
    linear-gradient(180deg, rgba(4, 15, 24, 0.98) 0%, rgba(7, 19, 31, 1) 100%);
}

.devstate-fire-landing-page section[id] {
  scroll-margin-top: calc(var(--devstate-header-height) + 22px);
}

.devstate-fire-landing-hero {
  background-image:
    linear-gradient(90deg, rgba(0, 16, 31, 0.94) 0%, rgba(0, 16, 31, 0.78) 42%, rgba(0, 16, 31, 0.38) 100%),
    linear-gradient(180deg, rgba(0, 16, 31, 0.38), rgba(0, 16, 31, 0.78)),
    var(--devstate-fire-hero-image);
  background-position: center;
  background-size: cover;
  color: #fff;
  min-height: 88vh;
  overflow: hidden;
  padding: calc(var(--devstate-header-height) + 76px) 0 42px;
  position: relative;
}

.devstate-fire-landing-hero__inner {
  display: grid;
  gap: clamp(36px, 8vw, 86px);
  min-height: calc(88vh - var(--devstate-header-height) - 118px);
}

.devstate-fire-landing-hero__content {
  align-self: center;
  max-width: 760px;
  padding: 44px 0 28px;
}

.devstate-fire-landing-hero .devstate-kicker {
  background: rgba(84, 197, 208, 0.12);
  border: 1px solid rgba(84, 197, 208, 0.22);
  border-radius: 999px;
  color: rgba(242, 251, 255, 0.88);
  padding: 10px 14px;
}

.devstate-fire-landing-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5.2vw, 4.35rem);
  font-weight: 800;
  line-height: 1.04;
  max-width: 860px;
  overflow-wrap: break-word;
}

.devstate-fire-landing-hero__lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  margin-top: 24px;
  max-width: 720px;
}

.devstate-fire-landing-hero__sublead,
.devstate-fire-landing-hero__microcopy {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.7;
  max-width: 680px;
}

.devstate-fire-landing-hero__sublead {
  border-left: 3px solid var(--devstate-cyan);
  margin-top: 18px;
  padding-left: 16px;
}

.devstate-fire-landing-hero__actions {
  margin-top: 30px;
}

.devstate-fire-landing-hero__microcopy {
  margin-top: 18px;
}

.devstate-fire-landing-status-grid {
  align-self: end;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 8px;
}

.devstate-fire-landing-status {
  background: rgba(3, 17, 28, 0.74);
  border: 1px solid rgba(84, 197, 208, 0.22);
  border-radius: 8px;
  min-height: 86px;
  padding: 15px;
}

.devstate-fire-landing-status span {
  color: rgba(255, 255, 255, 0.56);
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.devstate-fire-landing-status strong {
  color: #fff;
  display: block;
  font-size: 16px;
  line-height: 1.2;
  margin-top: 8px;
}

.devstate-fire-benefits-bar {
  background: var(--devstate-blue-deep);
  color: #fff;
  padding: 24px 0;
}

.devstate-fire-benefits-bar__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.devstate-fire-benefit {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 34px minmax(0, 1fr);
  min-width: 0;
}

.devstate-fire-benefit__icon {
  align-items: center;
  background: rgba(84, 197, 208, 0.12);
  border-radius: 8px;
  color: var(--devstate-cyan);
  display: inline-flex;
  font-size: 17px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.devstate-fire-benefit h2 {
  color: #fff;
  font-size: 15px;
  line-height: 1.18;
}

.devstate-fire-benefit p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.45;
  margin-top: 4px;
}

.devstate-fire-landing-split,
.devstate-fire-dashboard,
.devstate-fire-form-grid,
.devstate-fire-validation__grid,
.devstate-fire-final-cta__inner {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 60px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
}

.devstate-fire-landing-stack {
  display: grid;
  gap: 16px;
}

.devstate-fire-landing-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.devstate-fire-landing-card {
  background: var(--devstate-surface);
  border: 1px solid var(--devstate-border);
  border-radius: 8px;
  min-height: 100%;
  padding: 24px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.devstate-fire-landing-card:hover {
  border-color: rgba(84, 197, 208, 0.42);
  box-shadow: var(--devstate-shadow);
  transform: translateY(-2px);
}

.devstate-theme-dark .devstate-fire-landing-card,
.devstate-theme-dark .devstate-fire-note,
.devstate-theme-dark .devstate-fire-validation__panel,
.devstate-theme-dark .devstate-fire-pilot article,
.devstate-theme-dark .devstate-fire-faq {
  background: linear-gradient(180deg, rgba(9, 24, 38, 0.96), rgba(11, 29, 45, 0.92));
  border-color: rgba(84, 197, 208, 0.14);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.32);
}

.devstate-fire-landing-card__icon {
  align-items: center;
  background: rgba(0, 83, 135, 0.08);
  border-radius: 8px;
  color: var(--devstate-blue);
  display: inline-flex;
  font-size: 20px;
  height: 46px;
  justify-content: center;
  margin-bottom: 16px;
  width: 46px;
}

.devstate-theme-dark .devstate-fire-landing-card__icon {
  background: rgba(84, 197, 208, 0.12);
  color: var(--devstate-cyan);
}

.devstate-fire-landing-card h3,
.devstate-fire-step h3,
.devstate-fire-pilot h3,
.devstate-fire-note h3,
.devstate-fire-faq summary {
  color: var(--devstate-ink);
  font-size: 20px;
  line-height: 1.22;
}

.devstate-fire-landing-card p,
.devstate-fire-step p,
.devstate-fire-pilot p,
.devstate-fire-note p,
.devstate-fire-faq p {
  color: var(--devstate-muted);
  font-size: 14px;
  line-height: 1.72;
  margin-top: 10px;
}

.devstate-fire-landing-question {
  border-left: 4px solid #dc2626;
  color: var(--devstate-ink);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.24;
  margin: 34px 0 0;
  padding: 6px 0 6px 22px;
}

.devstate-fire-steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.devstate-fire-step {
  border-left: 1px solid var(--devstate-border);
  padding: 0 22px 4px;
}

.devstate-fire-step span {
  color: #dc2626;
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.devstate-fire-validation,
.devstate-fire-final-cta {
  background: var(--devstate-blue-deep);
  color: #fff;
  padding: clamp(64px, 8vw, 96px) 0;
}

.devstate-fire-validation h2,
.devstate-fire-final-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
}

.devstate-fire-validation p,
.devstate-fire-final-cta p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.75;
  margin-top: 18px;
}

.devstate-fire-validation__panel,
.devstate-fire-note,
.devstate-fire-pilot article,
.devstate-fire-faq {
  background: var(--devstate-surface);
  border: 1px solid var(--devstate-border);
  border-radius: 8px;
  padding: 24px;
}

.devstate-fire-validation__panel {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.devstate-fire-validation__panel .devstate-fire-landing-list li {
  color: rgba(255, 255, 255, 0.74);
}

.devstate-fire-landing-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.devstate-fire-landing-list li {
  align-items: start;
  color: var(--devstate-muted);
  display: grid;
  font-size: 14px;
  gap: 10px;
  grid-template-columns: 20px minmax(0, 1fr);
  line-height: 1.65;
  padding: 0;
}

.devstate-fire-landing-list li::before,
.devstate-fire-landing-list li::after {
  display: none;
}

.devstate-fire-landing-list li > span {
  color: var(--devstate-cyan);
  display: inline-flex;
  font-size: 18px;
  margin-top: 2px;
}

.devstate-fire-landing-list--panel {
  background: var(--devstate-surface);
  border: 1px solid var(--devstate-border);
  border-radius: 8px;
  margin-top: 0;
  padding: 24px;
}

.devstate-fire-note {
  border-left: 4px solid #dc2626;
}

.devstate-fire-dashboard {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.devstate-fire-dashboard__media {
  aspect-ratio: 4 / 3;
  background-image:
    linear-gradient(180deg, rgba(0, 30, 54, 0), rgba(0, 30, 54, 0.46)),
    var(--devstate-dashboard-image);
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  box-shadow: var(--devstate-shadow);
  min-height: 360px;
}

.devstate-fire-pilot {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.devstate-fire-form-section {
  background: var(--devstate-surface-2);
}

.devstate-fire-form-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
}

.devstate-fire-contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.devstate-fire-form-section .devstate-form {
  box-shadow: var(--devstate-shadow);
}

.devstate-fire-faq-wrap .devstate-section__head {
  margin-inline: auto;
  text-align: center;
}

.devstate-fire-faq-wrap .devstate-section__head p {
  margin-inline: auto;
}

.devstate-fire-faq-list {
  display: grid;
  gap: 12px;
  margin: 0 auto;
  max-width: 920px;
}

.devstate-fire-faq {
  padding: 0;
}

.devstate-fire-faq summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding: 20px 24px;
  position: relative;
}

.devstate-fire-faq summary::-webkit-details-marker {
  display: none;
}

.devstate-fire-faq summary::after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
  height: 8px;
  position: absolute;
  right: 24px;
  top: 25px;
  transform: rotate(135deg);
  transition: transform 160ms ease;
  width: 8px;
}

.devstate-fire-faq[open] summary::after {
  transform: rotate(-45deg);
}

.devstate-fire-faq p {
  border-top: 1px solid var(--devstate-border);
  margin-top: 0;
  padding: 0 24px 22px;
}

.devstate-fire-final-cta__inner {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
}

.devstate-fire-final-cta__actions {
  margin-top: 0;
}

/* Fire pump landing rewrite based on the Incendio React reference */

.devstate-incendio-page {
  background: #f5f7f9;
  color: #142838;
}

.devstate-incendio-page section[id] {
  scroll-margin-top: calc(var(--devstate-header-height) + 18px);
}

.devstate-incendio-hero {
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(0, 16, 31, 0.88) 0%, rgba(0, 16, 31, 0.5) 58%, rgba(0, 16, 31, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 16, 31, 0.4), rgba(0, 16, 31, 0.25)),
    var(--devstate-fire-hero-image);
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  padding: calc(var(--devstate-header-height) + 42px) 0 64px;
  position: relative;
}

.devstate-incendio-hero::before {
  background: rgba(0, 16, 31, 0.68);
  content: "";
  inset: 0;
  position: absolute;
}

.devstate-incendio-hero__inner {
  display: grid;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.devstate-incendio-hero__content {
  max-width: 720px;
  padding-top: 24px;
}

.devstate-incendio-hero h1 {
  color: #fff;
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  max-width: 760px;
}

.devstate-incendio-hero h1 span,
.devstate-incendio-section-head h2 strong,
.devstate-incendio-compare h3 span,
.devstate-incendio-final-cta h2 strong {
  color: #54c5d0;
}

.devstate-incendio-hero__divider {
  background: rgba(84, 197, 208, 0.5);
  height: 1px;
  margin-top: 24px;
  width: 48px;
}

.devstate-incendio-hero__lead {
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(1.05rem, 2vw, 1.16rem);
  line-height: 1.78;
  margin-top: 20px;
  max-width: 580px;
}

.devstate-incendio-hero__lead strong {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.devstate-incendio-hero__actions,
.devstate-incendio-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.devstate-incendio-hero__microcopy {
  color: rgba(255, 255, 255, 0.38);
  font-size: 13px;
  line-height: 1.55;
  margin-top: 16px;
  max-width: 640px;
}

.devstate-incendio-button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  gap: 9px;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.devstate-incendio-button::after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
  height: 7px;
  transform: rotate(45deg);
  width: 7px;
}

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

.devstate-incendio-button--primary {
  background: #54c5d0;
  box-shadow: 0 4px 22px rgba(84, 197, 208, 0.3);
  color: #001428;
}

.devstate-incendio-button--primary:hover,
.devstate-incendio-button--primary:focus-visible {
  background: #45bfcc;
  box-shadow: 0 4px 30px rgba(84, 197, 208, 0.42);
  color: #001428;
}

.devstate-incendio-button--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.devstate-incendio-button--ghost:hover,
.devstate-incendio-button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.devstate-incendio-button--outline {
  background: transparent;
  border: 1px solid #d8e3ea;
  color: #142838;
  font-weight: 800;
}

.devstate-incendio-button--outline:hover,
.devstate-incendio-button--outline:focus-visible {
  background: rgba(84, 197, 208, 0.06);
  border-color: rgba(84, 197, 208, 0.45);
  color: #142838;
}

.devstate-incendio-status-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 980px;
}

.devstate-incendio-status {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  min-width: 0;
  padding: 14px;
  transition: background 160ms ease, border-color 160ms ease;
}

.devstate-incendio-status:hover {
  background: rgba(255, 255, 255, 0.08);
}

.devstate-incendio-status__icon {
  color: #54c5d0;
  display: inline-flex;
  height: 16px;
  margin-bottom: 10px;
  width: 16px;
}

.devstate-incendio-status--green .devstate-incendio-status__icon,
.devstate-incendio-status--green strong {
  color: #4ade80;
}

.devstate-incendio-status p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  line-height: 1.2;
}

.devstate-incendio-status strong {
  color: #54c5d0;
  display: block;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  margin-top: 4px;
}

.devstate-incendio-benefits {
  background: #001e36;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px 0;
}

.devstate-incendio-benefits__grid {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
}

.devstate-incendio-benefit {
  background: #001e36;
  min-width: 0;
  padding: 20px 16px;
}

.devstate-incendio-benefit__icon {
  color: #54c5d0;
  display: inline-flex;
  height: 18px;
  margin-bottom: 10px;
  width: 18px;
}

.devstate-incendio-benefit h2 {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.devstate-incendio-benefit p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: 1.35;
  margin-top: 5px;
}

.devstate-incendio-section {
  padding: clamp(76px, 8vw, 112px) 0;
}

.devstate-incendio-section--light {
  background: #f5f7f9;
  color: #142838;
}

.devstate-incendio-section--dark {
  background: #020d18;
  color: #fff;
}

.devstate-incendio-split {
  align-items: start;
  display: grid;
  gap: clamp(36px, 6vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
}

.devstate-incendio-kicker,
.devstate-incendio-section-head > span,
.devstate-incendio-final-cta > .devstate-shell > span {
  color: #54c5d0;
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.devstate-incendio-kicker--danger {
  color: #ef4444;
}

.devstate-incendio-copy h2,
.devstate-incendio-section-head h2,
.devstate-incendio-final-cta h2 {
  color: inherit;
  font-size: clamp(1.55rem, 3.4vw, 2.45rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.18;
}

.devstate-incendio-copy p,
.devstate-incendio-section-head p,
.devstate-incendio-final-cta p {
  color: #5f6b76;
  font-size: 16px;
  line-height: 1.72;
  margin-top: 18px;
}

.devstate-incendio-section-head--dark p,
.devstate-incendio-dark-center p {
  color: rgba(255, 255, 255, 0.78);
}

.devstate-incendio-section-head--center {
  margin: 0 auto 56px;
  max-width: 720px;
  text-align: center;
}

.devstate-incendio-section-head--center p {
  margin-inline: auto;
}

.devstate-incendio-danger {
  color: #ef4444;
}

.devstate-incendio-impact {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  display: grid;
  gap: 12px;
  grid-template-columns: 10px minmax(0, 1fr);
  margin: 30px 0;
  padding: 20px;
}

.devstate-incendio-impact > span {
  background: #ef4444;
  border-radius: 999px;
  height: 9px;
  margin-top: 7px;
  width: 9px;
}

.devstate-incendio-impact p {
  color: #142838;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  margin: 0;
}

.devstate-incendio-problem-grid,
.devstate-incendio-card-grid,
.devstate-incendio-use-case-grid,
.devstate-incendio-validation-grid,
.devstate-incendio-form-grid {
  display: grid;
  gap: 20px;
}

.devstate-incendio-problem-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.devstate-incendio-card-grid--three,
.devstate-incendio-use-case-grid,
.devstate-incendio-validation-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.devstate-incendio-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.devstate-incendio-card,
.devstate-incendio-step,
.devstate-incendio-use-case,
.devstate-incendio-deploy-card {
  background: #fff;
  border: 1px solid #d8e3ea;
  border-radius: 12px;
  min-width: 0;
  padding: 20px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.devstate-incendio-card:hover,
.devstate-incendio-step:hover,
.devstate-incendio-use-case:hover,
.devstate-incendio-deploy-card:hover {
  border-color: rgba(84, 197, 208, 0.35);
  box-shadow: 0 12px 32px rgba(0, 30, 54, 0.08);
  transform: translateY(-2px);
}

.devstate-incendio-card--problem:hover {
  border-color: rgba(239, 68, 68, 0.26);
}

.devstate-incendio-card__icon {
  align-items: center;
  background: rgba(84, 197, 208, 0.1);
  border-radius: 10px;
  color: #54c5d0;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  margin-bottom: 14px;
  width: 38px;
}

.devstate-incendio-card--problem .devstate-incendio-card__icon {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
}

.devstate-incendio-card h3,
.devstate-incendio-step h3,
.devstate-incendio-use-case h3,
.devstate-incendio-deploy-card h3,
.devstate-incendio-validation-card h3 {
  color: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.devstate-incendio-card p,
.devstate-incendio-step p,
.devstate-incendio-use-case p,
.devstate-incendio-deploy-card p {
  color: #5f6b76;
  font-size: 14px;
  line-height: 1.72;
  margin-top: 8px;
}

.devstate-incendio-quote {
  border: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 900;
  line-height: 1.35;
  margin: -12px auto 48px;
  max-width: 760px;
  padding: 0;
  text-align: center;
}

.devstate-incendio-quote strong {
  color: #54c5d0;
}

.devstate-incendio-check-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-inline: auto;
  max-width: 980px;
}

.devstate-incendio-check-card {
  align-items: start;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px minmax(0, 1fr);
  padding: 16px;
}

.devstate-incendio-check-card .devstate-icon {
  color: #54c5d0;
  height: 16px;
  margin-top: 2px;
  width: 16px;
}

.devstate-incendio-check-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.35;
}

.devstate-incendio-timeline {
  position: relative;
}

.devstate-incendio-timeline::before {
  background: linear-gradient(90deg, transparent, #d8e3ea, transparent);
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 36px;
}

.devstate-incendio-steps {
  display: grid;
  gap: 20px;
  position: relative;
}

.devstate-incendio-steps--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.devstate-incendio-steps--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.devstate-incendio-step {
  height: 100%;
}

.devstate-incendio-step > div,
.devstate-incendio-deploy-card > div {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.devstate-incendio-step > div span,
.devstate-incendio-deploy-card > div span {
  align-items: center;
  background: rgba(84, 197, 208, 0.15);
  border: 1px solid rgba(84, 197, 208, 0.25);
  border-radius: 999px;
  color: #54c5d0;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.devstate-incendio-step > div strong {
  color: rgba(84, 197, 208, 0.28);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.devstate-incendio-center,
.devstate-incendio-dark-center {
  margin-top: 40px;
  text-align: center;
}

.devstate-incendio-dark-center {
  margin-inline: auto;
  max-width: 760px;
}

.devstate-incendio-dark-center p {
  font-size: 19px;
  font-weight: 900;
  line-height: 1.45;
}

.devstate-incendio-dark-center p strong {
  color: #54c5d0;
}

.devstate-incendio-dark-center small {
  color: rgba(255, 255, 255, 0.65);
  display: block;
  font-size: 12px;
  margin-top: 12px;
}

.devstate-incendio-validation-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-inline: auto;
  max-width: 900px;
}

.devstate-incendio-validation-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 24px;
}

.devstate-incendio-validation-card--primary {
  background: rgba(84, 197, 208, 0.06);
  border-color: rgba(84, 197, 208, 0.2);
}

.devstate-incendio-validation-card header {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.devstate-incendio-validation-card header > div {
  min-width: 0;
}

.devstate-incendio-validation-card__icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  flex: 0 0 52px;
  height: 52px;
  justify-content: center;
  line-height: 1;
  width: 52px;
}

.devstate-incendio-validation-card__icon .devstate-icon {
  height: 24px;
  width: 24px;
}

.devstate-incendio-validation-card--primary .devstate-incendio-validation-card__icon {
  background: rgba(84, 197, 208, 0.15);
  color: #54c5d0;
}

.devstate-incendio-validation-card header > div > span {
  color: rgba(255, 255, 255, 0.65);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.devstate-incendio-validation-card--primary header > div > span {
  color: rgba(84, 197, 208, 0.75);
}

.devstate-incendio-validation-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.devstate-incendio-validation-card li {
  align-items: start;
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  font-size: 14px;
  gap: 10px;
  grid-template-columns: 16px minmax(0, 1fr);
  line-height: 1.45;
}

.devstate-incendio-validation-card li::before,
.devstate-incendio-validation-card li::after {
  display: none;
}

.devstate-incendio-validation-card li .devstate-icon {
  color: rgba(255, 255, 255, 0.6);
  height: 14px;
  margin-top: 2px;
  width: 14px;
}

.devstate-incendio-validation-card--primary li .devstate-icon {
  color: #54c5d0;
}

.devstate-incendio-note {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 10px;
  color: #b45309;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 18px;
  padding: 14px;
}

.devstate-incendio-sector-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 64px;
}

.devstate-incendio-sector,
.devstate-incendio-use-case {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  min-width: 0;
  padding: 16px;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.devstate-incendio-sector:hover,
.devstate-incendio-use-case:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(84, 197, 208, 0.4);
  transform: translateY(-2px);
}

.devstate-incendio-sector__icon {
  color: #54c5d0;
  display: inline-flex;
  height: 22px;
  margin-bottom: 10px;
  width: 22px;
}

.devstate-incendio-sector p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.35;
}

.devstate-incendio-use-case {
  padding: 20px;
  text-align: left;
}

.devstate-incendio-use-case h3 {
  color: #fff;
  font-size: 16px;
}

.devstate-incendio-use-case p {
  color: rgba(255, 255, 255, 0.75);
}

.devstate-incendio-compare {
  margin-top: 72px;
}

.devstate-incendio-compare h3 {
  color: #142838;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  margin-bottom: 28px;
  text-align: center;
}

.devstate-incendio-table-wrap {
  border: 1px solid #d8e3ea;
  border-radius: 12px;
  overflow-x: auto;
}

.devstate-incendio-table-wrap table {
  border-collapse: collapse;
  font-size: 14px;
  margin: 0;
  min-width: 720px;
  width: 100%;
}

.devstate-incendio-table-wrap th,
.devstate-incendio-table-wrap td {
  border: 0;
  padding: 14px 20px;
}

.devstate-incendio-table-wrap thead {
  background: rgba(216, 227, 234, 0.38);
}

.devstate-incendio-table-wrap th {
  color: #5f6b76;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}

.devstate-incendio-table-wrap th:nth-child(2),
.devstate-incendio-table-wrap td:nth-child(2) {
  color: rgba(239, 68, 68, 0.82);
  text-align: center;
}

.devstate-incendio-table-wrap th:nth-child(3),
.devstate-incendio-table-wrap td:nth-child(3) {
  color: #54c5d0;
  font-weight: 900;
  text-align: center;
}

.devstate-incendio-table-wrap tr {
  border-top: 1px solid #d8e3ea;
}

.devstate-incendio-table-wrap tbody tr:nth-child(odd) {
  background: #fff;
}

.devstate-incendio-table-wrap tbody tr:nth-child(even) {
  background: #f5f7f9;
}

.devstate-incendio-table-wrap td:first-child {
  color: #142838;
  font-size: 13px;
  font-weight: 900;
}

.devstate-incendio-deploy-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  position: relative;
}

.devstate-incendio-deploy-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.devstate-incendio-deploy-card h3 {
  color: #fff;
}

.devstate-incendio-deploy-card p {
  color: rgba(255, 255, 255, 0.75);
  flex: 1;
}

.devstate-incendio-deploy-card strong {
  align-self: flex-start;
  background: rgba(84, 197, 208, 0.1);
  border: 1px solid rgba(84, 197, 208, 0.2);
  border-radius: 999px;
  color: #54c5d0;
  font-size: 11px;
  line-height: 1.2;
  margin-top: 18px;
  padding: 6px 10px;
}

.devstate-incendio-form-section {
  background: #f5f7f9;
}

.devstate-incendio-form-grid {
  align-items: start;
  gap: clamp(36px, 6vw, 64px);
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.devstate-incendio-form-sidebar {
  display: grid;
  gap: 22px;
}

.devstate-incendio-after-submit,
.devstate-incendio-form-card .devstate-form {
  background: #fff;
  border: 1px solid #d8e3ea;
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(0, 30, 54, 0.06);
}

.devstate-incendio-after-submit {
  padding: 20px;
}

.devstate-incendio-after-submit > p {
  color: #142838;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.devstate-incendio-after-submit ol {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.devstate-incendio-after-submit li {
  align-items: start;
  color: #5f6b76;
  display: grid;
  font-size: 14px;
  gap: 10px;
  grid-template-columns: 22px minmax(0, 1fr);
  line-height: 1.45;
}

.devstate-incendio-after-submit li::before,
.devstate-incendio-after-submit li::after {
  display: none;
}

.devstate-incendio-after-submit li span {
  align-items: center;
  background: rgba(84, 197, 208, 0.15);
  border: 1px solid rgba(84, 197, 208, 0.25);
  border-radius: 999px;
  color: #54c5d0;
  display: inline-flex;
  font-size: 10px;
  font-weight: 900;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.devstate-incendio-contact-list {
  display: grid;
  gap: 12px;
}

.devstate-incendio-contact-list a {
  align-items: center;
  color: #5f6b76;
  display: grid;
  font-size: 14px;
  gap: 12px;
  grid-template-columns: 38px minmax(0, 1fr);
  text-decoration: none;
}

.devstate-incendio-contact-list a:hover {
  color: #005387;
}

.devstate-incendio-contact-list__icon {
  align-items: center;
  background: rgba(0, 83, 135, 0.1);
  border-radius: 10px;
  color: #005387;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.devstate-incendio-response-note {
  align-items: flex-start;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 10px;
  display: grid;
  gap: 12px;
  grid-template-columns: 8px minmax(0, 1fr);
  padding: 16px;
}

.devstate-incendio-response-note > span {
  background: #22c55e;
  border-radius: 999px;
  height: 8px;
  width: 8px;
  margin-top: 6px;
}

.devstate-incendio-response-note p {
  color: #5f6b76;
  font-size: 13px;
  line-height: 1.45;
}

.devstate-incendio-response-note strong {
  color: #142838;
}

.devstate-incendio-form-card .devstate-form {
  overflow: hidden;
}

.devstate-incendio-form-card .devstate-form__head {
  background: rgba(216, 227, 234, 0.28);
  border-bottom: 1px solid #d8e3ea;
  padding: 18px 24px;
}

.devstate-incendio-form-card .devstate-form__head h2 {
  color: #001428 !important;
  font-size: 15px;
  font-weight: 900 !important;
}

.devstate-incendio-form-card .devstate-form__description,
.devstate-incendio-form-card .devstate-form__head p {
  color: rgba(0, 20, 40, 0.7);
  font-size: 13px;
}

.devstate-incendio-form-card .devstate-form__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.devstate-incendio-form-card .devstate-form {
  padding-bottom: 0;
}

.devstate-incendio-form-card .devstate-form__grid,
.devstate-incendio-form-card .devstate-form > .devstate-form__field,
.devstate-incendio-form-card .devstate-form button {
  margin-left: 24px;
  margin-right: 24px;
}

.devstate-incendio-form-card .devstate-form__grid {
  margin-top: 24px;
}

.devstate-incendio-form-card .devstate-form__field:has(textarea) {
  grid-column: 1 / -1;
}

.devstate-incendio-form-card .devstate-form input,
.devstate-incendio-form-card .devstate-form textarea {
  background: #f5f7f9;
  border-color: #d8e3ea;
  border-radius: 8px;
  color: #142838;
  font-size: 14px;
}

.devstate-incendio-form-card .devstate-form label {
  color: rgba(20, 40, 56, 0.76);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.devstate-incendio-form-card .devstate-form button {
  background: #001428;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 24px;
  min-height: 48px;
  transition: background 160ms ease;
}

.devstate-incendio-form-card .devstate-form button:hover {
  background: #00284d;
}

.devstate-incendio-faq-list {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  margin: 0 auto;
  max-width: 780px;
  overflow: hidden;
}

.devstate-incendio-faq {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.devstate-incendio-faq:last-child {
  border-bottom: 0;
}

.devstate-incendio-faq summary {
  cursor: pointer;
  display: block;
  list-style: none;
  padding: 20px 54px 20px 24px;
  position: relative;
}

.devstate-incendio-faq summary::-webkit-details-marker {
  display: none;
}

.devstate-incendio-faq summary::after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  color: rgba(255, 255, 255, 0.6);
  content: "";
  height: 8px;
  position: absolute;
  right: 24px;
  top: 25px;
  transform: rotate(135deg);
  transition: color 160ms ease, transform 160ms ease;
  width: 8px;
}

.devstate-incendio-faq[open] summary::after {
  color: #54c5d0;
  transform: rotate(-45deg);
}

.devstate-incendio-faq summary span {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.devstate-incendio-faq p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  padding: 0 48px 20px 24px;
}

.devstate-incendio-final-cta {
  background: #f5f7f9;
  color: #142838;
  overflow: hidden;
  padding: clamp(72px, 8vw, 96px) 0;
  position: relative;
  text-align: center;
}

.devstate-incendio-final-cta__glow {
  display: none;
}

.devstate-incendio-final-cta__inner {
  margin-inline: auto;
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.devstate-incendio-final-cta p {
  margin-inline: auto;
  max-width: 600px;
}

.devstate-incendio-final-cta__actions {
  justify-content: center;
}

.devstate-incendio-final-cta small {
  color: #5f6b76;
  display: block;
  font-size: 13px;
  margin-top: 24px;
}

body.devstate-fire-pump-landing .devstate-footer {
  background-image:
    linear-gradient(90deg, rgba(0, 16, 31, 0.96) 0%, rgba(0, 16, 31, 0.9) 48%, rgba(0, 16, 31, 0.78) 100%),
    url("../images/fire-pump-house-final-hero.jpg");
  background-position: center;
  background-size: cover;
}

body.devstate-fire-pump-landing .devstate-footer--landing .devstate-footer__grid {
  grid-template-columns: 1.15fr 0.85fr 0.9fr 0.95fr;
}

body.devstate-fire-pump-landing .devstate-footer--landing .devstate-footer__brand p {
  max-width: 340px;
}

body.devstate-fire-pump-landing .devstate-incendio-hero__content {
  padding-top: 0;
}

@media (min-width: 981px) and (max-height: 920px) {
  body.devstate-fire-pump-landing .devstate-incendio-hero {
    align-items: flex-start;
    min-height: 100svh;
    padding: calc(var(--devstate-header-height) + 24px) 0 32px;
  }

  body.devstate-fire-pump-landing .devstate-incendio-hero__inner {
    gap: 28px;
  }

  body.devstate-fire-pump-landing .devstate-incendio-hero__content {
    max-width: 800px;
    padding-top: 0;
  }

  body.devstate-fire-pump-landing .devstate-incendio-hero h1 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.08;
    max-width: 820px;
  }

  body.devstate-fire-pump-landing .devstate-incendio-hero__divider {
    margin-top: 18px;
  }

  body.devstate-fire-pump-landing .devstate-incendio-hero__lead {
    font-size: clamp(1rem, 1.4vw, 1.08rem);
    line-height: 1.62;
    margin-top: 16px;
    max-width: 640px;
  }

  body.devstate-fire-pump-landing .devstate-incendio-hero__actions {
    margin-top: 26px;
  }

  body.devstate-fire-pump-landing .devstate-incendio-hero__microcopy {
    margin-top: 12px;
    max-width: 680px;
  }

  body.devstate-fire-pump-landing .devstate-incendio-status {
    padding: 12px;
  }
}

@media (max-width: 1100px) {
  body.devstate-fire-pump-landing .devstate-footer--landing .devstate-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 38px;
  }
}

@media (max-width: 640px) {
  body.devstate-fire-pump-landing .devstate-footer--landing {
    padding-bottom: 30px;
  }

  body.devstate-fire-pump-landing .devstate-footer--landing .devstate-footer__grid {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  body.devstate-fire-pump-landing .devstate-footer--landing .devstate-footer__brand p {
    max-width: none;
  }
}

/* Footer */

.site-info,
footer.site-info {
  background: var(--devstate-blue-deep);
  color: #fff;
  padding: 0;
}

.site-info .inside-site-info {
  max-width: none;
  padding: 0;
}

.site-info .copyright-bar {
  width: 100%;
}

.devstate-footer {
  color: #fff;
  padding: 58px 0 26px;
}

.devstate-footer::before {
  background: linear-gradient(90deg, transparent, rgba(84, 197, 208, 0.45), transparent);
  content: "";
  display: block;
  height: 1px;
  margin: -58px 0 56px;
  width: 100%;
}

.devstate-footer__grid,
.devstate-footer__bottom {
  width: var(--devstate-shell);
  margin-inline: auto;
}

.devstate-footer__grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.35fr 0.8fr 0.95fr 0.95fr;
}

.devstate-footer__brand img {
  height: auto;
  max-width: 174px;
}

.devstate-footer__brand p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 18px;
  max-width: 280px;
}

.devstate-footer__column h2 {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.devstate-footer__column a,
.devstate-footer__column span {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-family: "Titillium Web", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  margin-top: 11px;
  text-decoration: none;
}

.devstate-footer__column a:hover {
  color: var(--devstate-cyan);
}

.devstate-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 46px;
  padding-top: 22px;
}

.devstate-footer__bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
}

.devstate-footer__bottom p:last-child {
  letter-spacing: 0;
  text-transform: uppercase;
}

/* Motion and interaction */

@keyframes devstateFadeUp {
  from {
    opacity: 1;
    transform: translateY(22px);
  }

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

@keyframes devstateScaleIn {
  from {
    opacity: 1;
    transform: scale(0.97) translateY(18px);
  }

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

.devstate-js .devstate-hero .devstate-kicker,
.devstate-js .devstate-hero h1,
.devstate-js .devstate-hero__divider,
.devstate-js .devstate-hero__text,
.devstate-js .devstate-hero__actions,
.devstate-js .devstate-hero__panel {
  animation: devstateFadeUp 640ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.devstate-js .devstate-hero h1 {
  animation-delay: 90ms;
}

.devstate-js .devstate-hero__divider,
.devstate-js .devstate-hero__text {
  animation-delay: 170ms;
}

.devstate-js .devstate-hero__actions {
  animation-delay: 260ms;
}

.devstate-js .devstate-hero__panel {
  animation-delay: 340ms;
}

.devstate-js .devstate-microcard {
  animation: devstateScaleIn 520ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.devstate-js .devstate-microcard:nth-child(1) {
  animation-delay: 380ms;
}

.devstate-js .devstate-microcard:nth-child(2) {
  animation-delay: 450ms;
}

.devstate-js .devstate-microcard:nth-child(3) {
  animation-delay: 520ms;
}

.devstate-js .devstate-reveal {
  opacity: 1;
  transform: translateY(14px);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--devstate-reveal-delay, 0ms);
}

.devstate-js .devstate-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.devstate-about__image,
.devstate-fire__image,
.devstate-feature__visual,
.devstate-media-card,
.devstate-product-card__image {
  transition: filter 420ms ease, transform 560ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.devstate-about__media:hover .devstate-about__image,
.devstate-fire__media:hover .devstate-fire__image,
.devstate-feature__visual:hover,
.devstate-media-card:hover,
.devstate-product-card:hover .devstate-product-card__image {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.018);
}

/* Responsive */

@media (max-width: 1100px) {
  :root {
    --devstate-header-height: 70px;
  }

  #masthead .inside-header {
    width: min(1180px, calc(100vw - 24px));
  }

  #site-navigation .main-nav ul li a {
    font-size: 12px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .devstate-nav-cta {
    min-height: 38px;
    padding: 0 12px;
  }

  .devstate-grid--4,
  .devstate-product-grid,
  .devstate-sector-grid,
  .devstate-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  body.admin-bar #masthead.site-header {
    top: 46px;
  }

  #masthead.site-header {
    background: rgba(0, 16, 31, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
  }

  #masthead .inside-header {
    min-height: 64px;
  }

  .devstate-logo a {
    width: 148px;
  }

  .devstate-logo__image {
    max-width: 148px;
  }

  #site-navigation .main-nav ul {
    background: var(--devstate-surface);
    border: 1px solid var(--devstate-border);
    border-radius: 8px;
    box-shadow: var(--devstate-shadow);
    margin-top: 10px;
    padding: 8px;
  }

  #site-navigation .main-nav ul li a,
  .devstate-scrolled #site-navigation .main-nav ul li a,
  body:not(.devstate-home) #site-navigation .main-nav ul li a {
    color: var(--devstate-ink);
    font-size: 15px;
    padding: 13px;
  }

  .devstate-theme-dark #site-navigation .main-nav ul li a,
  .devstate-theme-dark.devstate-scrolled #site-navigation .main-nav ul li a,
  .devstate-theme-dark body:not(.devstate-home) #site-navigation .main-nav ul li a {
    color: rgba(232, 240, 244, 0.86);
  }

  #site-navigation .main-nav ul ul {
    box-shadow: none;
    width: auto;
  }

  .menu-bar-items {
    margin-left: auto;
  }

  #masthead .devstate-nav-cta {
    display: none !important;
  }

  .devstate-hero__inner,
  .devstate-about__grid,
  .devstate-fire__grid,
  .devstate-feature__grid,
  .devstate-contact__grid,
  .devstate-section__head--split {
    grid-template-columns: 1fr;
  }

  .devstate-home-hero .devstate-hero__inner {
    grid-template-columns: 1fr;
  }

  .devstate-home-hero .devstate-hero__content {
    display: block;
    max-width: 720px;
  }

  .devstate-home-hero h1 {
    max-width: 680px;
  }

  .devstate-home-hero .devstate-hero__text {
    max-width: 560px;
  }

  .devstate-home-hero .devstate-microcards {
    flex-direction: row;
    margin-top: 42px;
    max-width: 720px;
  }

  .devstate-hero {
    align-items: flex-start;
    min-height: auto;
    padding: 118px 0 76px;
  }

  .devstate-hero__panel {
    max-width: 520px;
  }

  .devstate-about__stats {
    bottom: 16px;
    left: 16px;
  }

  body.devstate-home .devstate-about__media {
    padding-left: 0;
  }

  body.devstate-home .devstate-about__accent {
    display: none;
  }

  body.devstate-home #sectors .devstate-section__head--split > p {
    max-width: 100%;
    text-align: left;
  }

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

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

@media (max-width: 640px) {
  :root {
    --devstate-shell: min(1180px, calc(100vw - 48px));
  }

  .devstate-section {
    padding: 62px 0;
  }

  .devstate-hero {
    padding-top: 104px;
  }

  .devstate-hero h1 {
    font-size: clamp(1.9rem, 8.6vw, 2.05rem);
    line-height: 1.18;
    max-width: min(100%, 340px);
  }

  .devstate-hero.devstate-home-hero h1 {
    font-size: clamp(1.9rem, 8.6vw, 2.05rem);
    line-height: 1.18;
    max-width: min(100%, 340px);
  }

  .devstate-hero__text {
    max-width: min(100%, 310px);
  }

  .devstate-hero__panel p,
  .devstate-hero__panel ul {
    max-width: min(100%, 300px);
  }

  .devstate-hero .devstate-kicker {
    margin-bottom: 24px;
  }

  .devstate-fire h2 {
    font-size: clamp(1.9rem, 8.2vw, 2.18rem);
    line-height: 1.16;
    max-width: 100%;
  }

  .devstate-fire .devstate-lead {
    max-width: 100%;
  }

  .devstate-hero__actions,
  .devstate-actions,
  .devstate-contact__actions {
    flex-direction: column;
  }

  .devstate-button {
    width: 100%;
  }

  .devstate-microcard {
    width: 100%;
  }

  .devstate-home-hero .devstate-microcards {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .devstate-home-hero .devstate-microcard {
    max-width: none;
  }

  .devstate-grid--2,
  .devstate-grid--3,
  .devstate-grid--4,
  .devstate-product-grid,
  .devstate-sector-grid,
  .devstate-services-grid,
  .devstate-value-grid,
  .devstate-metrics__grid,
  .devstate-form__grid {
    grid-template-columns: 1fr;
  }

  .devstate-about__image,
  .devstate-feature__visual {
    min-height: 300px;
  }

  .devstate-about__stats {
    position: static;
    margin-top: 14px;
  }

  body.devstate-home .devstate-value-card,
  body.devstate-home .devstate-service-card,
  body.devstate-home .devstate-sector-card {
    min-height: 0;
  }

  body.devstate-home .devstate-fire__image {
    min-height: 240px;
  }

  body.devstate-home .devstate-form__head {
    padding: 16px 18px 14px;
  }

  .devstate-contact__grid {
    gap: 32px;
  }

  .devstate-footer__grid,
  .devstate-footer__bottom {
    grid-template-columns: 1fr;
  }

  .devstate-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1180px) {
  .devstate-fire-landing-status-grid,
  .devstate-fire-benefits-bar__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .devstate-fire-steps,
  .devstate-fire-pilot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .devstate-incendio-status-grid,
  .devstate-incendio-benefits__grid,
  .devstate-incendio-check-grid,
  .devstate-incendio-deploy-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .devstate-incendio-card-grid--four,
  .devstate-incendio-sector-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .devstate-incendio-steps--four,
  .devstate-incendio-steps--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  body.devstate-fire-pump-landing .menu-bar-items {
    flex: 0 0 auto;
  }

  .devstate-landing-nav {
    display: none;
  }

  .devstate-fire-landing-hero {
    min-height: auto;
    padding-bottom: 30px;
  }

  .devstate-fire-landing-hero__inner {
    min-height: 0;
  }

  .devstate-fire-landing-split,
  .devstate-fire-dashboard,
  .devstate-fire-form-grid,
  .devstate-fire-validation__grid,
  .devstate-fire-final-cta__inner {
    grid-template-columns: 1fr;
  }

  .devstate-fire-landing-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .devstate-fire-dashboard__media {
    min-height: 300px;
  }

  .devstate-fire-final-cta__actions {
    margin-top: 0;
  }

  .devstate-incendio-hero {
    min-height: auto;
    padding-bottom: 44px;
  }

  .devstate-incendio-split,
  .devstate-incendio-form-grid,
  .devstate-incendio-validation-grid {
    grid-template-columns: 1fr;
  }

  .devstate-incendio-card-grid--four,
  .devstate-incendio-card-grid--three,
  .devstate-incendio-use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .devstate-incendio-timeline::before {
    display: none;
  }
}

@media (max-width: 720px) {
  body.devstate-fire-pump-landing #masthead .inside-header {
    gap: 8px;
    width: min(1180px, calc(100vw - 24px));
  }

  body.devstate-fire-pump-landing .devstate-logo a {
    width: 132px;
  }

  body.devstate-fire-pump-landing .devstate-logo__image {
    max-width: 132px;
  }

  #masthead .menu-bar-items .devstate-nav-cta--landing {
    display: none !important;
  }

  .devstate-fire-landing-hero {
    background-position: 62% center;
    padding-top: 104px;
  }

  .devstate-fire-landing-hero__content {
    max-width: min(100%, 330px);
    padding-top: 20px;
  }

  .devstate-fire-landing-hero h1 {
    font-size: clamp(1.55rem, 6.3vw, 1.85rem);
    max-width: min(100%, 330px);
  }

  .devstate-fire-landing-hero__lead {
    font-size: 16px;
    max-width: min(100%, 330px);
    overflow-wrap: break-word;
  }

  .devstate-fire-landing-hero__sublead,
  .devstate-fire-landing-hero__microcopy,
  .devstate-fire-landing-hero__actions {
    max-width: min(100%, 330px);
    overflow-wrap: break-word;
  }

  .devstate-fire-landing-status-grid,
  .devstate-fire-benefits-bar__grid,
  .devstate-fire-landing-card-grid,
  .devstate-fire-steps,
  .devstate-fire-pilot {
    grid-template-columns: 1fr;
  }

  .devstate-fire-landing-status {
    min-height: 0;
  }

  .devstate-fire-benefits-bar {
    padding: 20px 0;
  }

  .devstate-fire-step {
    border-left: 0;
    border-top: 1px solid var(--devstate-border);
    padding: 18px 0 0;
  }

  .devstate-fire-dashboard__media {
    min-height: 230px;
  }

  .devstate-fire-contact-options {
    flex-direction: column;
  }

  .devstate-fire-contact-options .devstate-button {
    width: 100%;
  }

  .devstate-fire-faq summary {
    font-size: 17px;
    padding-right: 46px;
  }

  .devstate-incendio-hero {
    background-position: 62% center;
    padding-top: 104px;
  }

  .devstate-incendio-hero__content {
    max-width: min(100%, 340px);
  }

  .devstate-incendio-hero h1 {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
    max-width: min(100%, 340px);
  }

  .devstate-incendio-hero__lead,
  .devstate-incendio-hero__microcopy {
    max-width: min(100%, 340px);
  }

  .devstate-incendio-hero__actions,
  .devstate-incendio-final-cta__actions {
    flex-direction: column;
  }

  .devstate-incendio-button {
    width: 100%;
  }

  .devstate-incendio-status-grid,
  .devstate-incendio-benefits__grid,
  .devstate-incendio-check-grid,
  .devstate-incendio-problem-grid,
  .devstate-incendio-card-grid--four,
  .devstate-incendio-card-grid--three,
  .devstate-incendio-use-case-grid,
  .devstate-incendio-deploy-grid,
  .devstate-incendio-steps--four,
  .devstate-incendio-steps--three,
  .devstate-incendio-form-card .devstate-form__grid {
    grid-template-columns: 1fr;
  }

  .devstate-incendio-sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .devstate-incendio-section {
    padding: 64px 0;
  }

  .devstate-incendio-section-head--center {
    margin-bottom: 36px;
    text-align: left;
  }

  .devstate-incendio-copy h2,
  .devstate-incendio-section-head h2,
  .devstate-incendio-final-cta h2 {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
  }

  .devstate-incendio-quote,
  .devstate-incendio-dark-center {
    text-align: left;
  }

  .devstate-incendio-form-card .devstate-form__grid,
  .devstate-incendio-form-card .devstate-form > .devstate-form__field,
  .devstate-incendio-form-card .devstate-form button {
    margin-left: 18px;
    margin-right: 18px;
  }

  .devstate-incendio-form-card .devstate-form__head {
    padding: 16px 18px;
  }

  .devstate-incendio-faq summary {
    padding-right: 46px;
  }

  .devstate-incendio-faq p {
    padding-right: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-delay: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* BLOG CSS ADAPTADO DO REACT E REESTRUTURADO */
.devstate-blog-hero {
  border-bottom: 1px solid rgba(84, 197, 208, 0.2);
}

.devstate-blog-section-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--devstate-muted);
  letter-spacing: 1px;
  margin-bottom: 25px;
  margin-top: 60px;
}

.devstate-blog-topic-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 10px;
}

.devstate-blog-topic-nav a {
  background: rgba(0, 83, 135, 0.08);
  border: 1px solid rgba(0, 83, 135, 0.16);
  border-radius: 999px;
  color: var(--devstate-blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  padding: 9px 13px;
  text-decoration: none;
}

.devstate-theme-dark .devstate-blog-topic-nav a {
  background: rgba(84, 197, 208, 0.1);
  border-color: rgba(84, 197, 208, 0.22);
  color: #9ee7ed;
}

.devstate-blog-featured-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 40px;
  transition: all 0.3s;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.devstate-theme-dark .devstate-blog-featured-card {
  background: var(--devstate-surface);
  border-color: rgba(255,255,255,0.05);
}

.devstate-blog-featured-card:hover {
  border-color: rgba(84, 197, 208, 0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}

.devstate-blog-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s;
  background: white;
}

.devstate-theme-dark .devstate-blog-card {
  background: var(--devstate-surface);
  border-color: rgba(255,255,255,0.05);
}

.devstate-blog-card:hover {
  border-color: rgba(84, 197, 208, 0.4) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}

.devstate-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.devstate-blog-cta {
  background: linear-gradient(135deg, #0a2a47, #0d385f);
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
  color: white;
  margin: 80px 0 40px;
}

/* BLOG DARK SURFACES */
html.devstate-theme-dark body.page-id-9,
html.devstate-theme-dark body.page-id-9 #page,
html.devstate-theme-dark body.page-id-9 .site,
html.devstate-theme-dark body.page-id-9 .site-content,
html.devstate-theme-dark body.page-id-9 .content-area,
html.devstate-theme-dark body.page-id-9 .site-main,
html.devstate-theme-dark body.page-id-9 .site-main > article,
html.devstate-theme-dark body.page-id-9 .inside-article,
html.devstate-theme-dark body.page-id-9 .entry-content,
html.devstate-theme-dark body.parent-pageid-9,
html.devstate-theme-dark body.parent-pageid-9 #page,
html.devstate-theme-dark body.parent-pageid-9 .site,
html.devstate-theme-dark body.parent-pageid-9 .site-content,
html.devstate-theme-dark body.parent-pageid-9 .content-area,
html.devstate-theme-dark body.parent-pageid-9 .site-main,
html.devstate-theme-dark body.parent-pageid-9 .site-main > article,
html.devstate-theme-dark body.parent-pageid-9 .inside-article,
html.devstate-theme-dark body.parent-pageid-9 .entry-content {
  background: #07131f !important;
  color: var(--devstate-ink);
}

html.devstate-theme-dark body.page-id-9 .entry-content {
  background:
    radial-gradient(circle at 12% 0%, rgba(84, 197, 208, 0.1), transparent 30%),
    linear-gradient(180deg, #07131f 0%, #06111c 100%) !important;
}

html.devstate-theme-dark body.parent-pageid-9 .site-main > article,
html.devstate-theme-dark body.parent-pageid-9 .inside-article,
html.devstate-theme-dark body.page-id-9 .site-main > article,
html.devstate-theme-dark body.page-id-9 .inside-article {
  border: 0 !important;
  box-shadow: none !important;
}

html.devstate-theme-dark body.page-id-9 .devstate-blog-hero {
  background: linear-gradient(180deg, #061a2d 0%, #0a2a47 100%) !important;
}

html.devstate-theme-dark body.page-id-9 .devstate-blog-card,
html.devstate-theme-dark body.page-id-9 .devstate-blog-featured-card {
  color: var(--devstate-ink);
}

.devstate-article-hero {
  background-color: #0a2a47;
  padding: 80px 20px;
  color: white;
}

.devstate-article-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.devstate-article-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-top: 15px;
  color: white;
  line-height: 1.2;
}

.devstate-article-layout {
  max-width: 1200px;
  margin: 60px auto 100px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
}

.devstate-theme-dark .devstate-article-layout {
  background: transparent;
}

@media (max-width: 900px) {
  .devstate-article-layout {
    grid-template-columns: 1fr;
  }
}

.devstate-article-content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--devstate-muted);
}

.devstate-theme-dark .devstate-article-content {
  color: rgba(232, 240, 244, 0.82);
}

.devstate-article-content h2 {
  font-size: 2rem;
  margin-top: 50px;
  margin-bottom: 25px;
  color: var(--devstate-ink);
  font-weight: 800;
}

.devstate-theme-dark .devstate-article-content h2 {
  color: white;
}

.devstate-article-content h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--devstate-ink);
  font-weight: 800;
}

.devstate-theme-dark .devstate-article-content h3 {
  color: white;
}

.devstate-article-content p {
  margin-bottom: 25px;
}

.devstate-theme-dark .devstate-article-content p,
.devstate-theme-dark .devstate-article-content li {
  color: rgba(232, 240, 244, 0.82);
}

.devstate-theme-dark .devstate-article-content strong {
  color: #f7fbfd;
}

.devstate-theme-dark .devstate-article-content a {
  color: #72d7df;
}

.devstate-article-content blockquote,
.devstate-article-content .wp-block-quote {
  border-left: 4px solid #54C5D0;
  margin: 32px 0;
  padding: 22px 26px;
  background: rgba(84, 197, 208, 0.08);
  border-radius: 8px;
}

.devstate-theme-dark .devstate-article-content blockquote,
.devstate-theme-dark .devstate-article-content .wp-block-quote {
  background: rgba(84, 197, 208, 0.1);
  color: rgba(232, 240, 244, 0.86);
}

.devstate-article-content blockquote p,
.devstate-article-content .wp-block-quote p {
  margin-bottom: 0;
}

.devstate-article-content ul, .devstate-article-content ol {
  margin-bottom: 25px;
  padding-left: 20px;
}

.devstate-article-content li {
  margin-bottom: 10px;
}

.devstate-direct-answer {
  background: white;
  border: 1px solid #eee;
  border-left: 4px solid #54C5D0;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.devstate-theme-dark .devstate-direct-answer {
  background: linear-gradient(180deg, rgba(13, 29, 45, 0.98), rgba(9, 21, 34, 0.98));
  border-color: rgba(255,255,255,0.09);
  border-left-color: #54C5D0;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.devstate-direct-answer-title {
  color: #54C5D0;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.devstate-sidebar-cta {
  background: #0a2a47;
  padding: 35px 30px;
  border-radius: 12px;
  color: white;
  margin-bottom: 40px;
}

.devstate-theme-dark .devstate-sidebar-cta {
  background: linear-gradient(180deg, #0d2e4e, #071b2e);
  border: 1px solid rgba(84, 197, 208, 0.2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.devstate-sidebar-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--devstate-muted);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.devstate-sidebar-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.devstate-sidebar-list-item {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  background: white;
  transition: all 0.2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 118px;
}

.devstate-theme-dark .devstate-sidebar-list-item {
  background: linear-gradient(180deg, rgba(13, 29, 45, 0.98), rgba(9, 21, 34, 0.98));
  border-color: rgba(255,255,255,0.09);
}

.devstate-sidebar-list-item:hover {
  border-color: #54C5D0;
  box-shadow: 0 10px 24px rgba(10, 42, 71, 0.08);
  transform: translateY(-2px);
}

.devstate-theme-dark .devstate-sidebar-list-item:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

.devstate-sidebar-list-item span {
  display: block;
  margin-bottom: 0 !important;
}

.devstate-sidebar-list-item p {
  color: var(--devstate-ink);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
}

.devstate-theme-dark .devstate-sidebar-list-item p {
  color: white;
}

@media (max-width: 900px) {
  .devstate-sidebar-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .devstate-sidebar-list-item {
    min-height: 140px;
  }
}

@media (max-width: 680px) {
  .devstate-sidebar-list {
    grid-template-columns: 1fr;
  }

  .devstate-sidebar-list-item {
    min-height: 0;
  }
}

/* Mobile hardening: keep global pages usable after migration/cache/plugin differences. */
@media (max-width: 880px) {
  :root {
    --devstate-header-height: 64px;
    --devstate-shell: min(1180px, calc(100vw - 32px));
  }

  body {
    min-width: 0;
  }

  #masthead.site-header {
    background: rgba(0, 16, 31, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
    color: #fff;
    height: var(--devstate-header-height);
    overflow: visible;
  }

  .devstate-theme-light.devstate-scrolled body #masthead.site-header,
  .devstate-theme-light body:not(.devstate-home) #masthead.site-header {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: rgba(216, 227, 234, 0.9);
    box-shadow: 0 12px 34px rgba(0, 30, 54, 0.08);
    color: var(--devstate-ink);
  }

  .devstate-theme-dark #masthead.site-header,
  .devstate-theme-dark.devstate-scrolled body #masthead.site-header,
  .devstate-theme-dark body:not(.devstate-home) #masthead.site-header {
    background: rgba(0, 16, 31, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
    color: #fff;
  }

  #masthead .inside-header {
    gap: 10px;
    min-height: var(--devstate-header-height);
    position: relative;
    width: var(--devstate-shell);
  }

  .devstate-logo a {
    height: 38px;
    width: 146px;
  }

  .devstate-logo__image {
    max-height: 38px;
    max-width: 146px;
  }

  #site-navigation.main-navigation {
    background: transparent;
    color: inherit;
    flex: 0 0 auto;
    margin-left: auto;
    order: 3;
    position: static;
  }

  #site-navigation .inside-navigation {
    min-height: var(--devstate-header-height);
  }

  .devstate-theme-light.devstate-scrolled body .devstate-logo__image--positive,
  .devstate-theme-light body:not(.devstate-home) .devstate-logo__image--positive {
    opacity: 1;
  }

  .devstate-theme-light.devstate-scrolled body .devstate-logo__image--inverted,
  .devstate-theme-light body:not(.devstate-home) .devstate-logo__image--inverted {
    opacity: 0;
  }

  .devstate-theme-light:not(.devstate-scrolled) body.devstate-home .devstate-logo__image--positive,
  .devstate-theme-dark .devstate-logo__image--positive {
    opacity: 0;
  }

  .devstate-theme-light:not(.devstate-scrolled) body.devstate-home .devstate-logo__image--inverted,
  .devstate-theme-dark .devstate-logo__image--inverted {
    opacity: 1;
  }

  button.menu-toggle,
  .main-navigation button.menu-toggle,
  #site-navigation button.menu-toggle,
  #site-navigation .menu-toggle,
  #site-navigation .menu-toggle:hover,
  #site-navigation .menu-toggle:focus,
  #site-navigation.toggled .menu-toggle {
    align-items: center;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff !important;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0;
    width: 44px;
  }

  .devstate-theme-light.devstate-scrolled body button.menu-toggle,
  .devstate-theme-light.devstate-scrolled body .main-navigation button.menu-toggle,
  .devstate-theme-light.devstate-scrolled body #site-navigation button.menu-toggle,
  .devstate-theme-light.devstate-scrolled body #site-navigation .menu-toggle,
  .devstate-theme-light body:not(.devstate-home) button.menu-toggle,
  .devstate-theme-light body:not(.devstate-home) .main-navigation button.menu-toggle,
  .devstate-theme-light body:not(.devstate-home) #site-navigation button.menu-toggle,
  .devstate-theme-light body:not(.devstate-home) #site-navigation .menu-toggle {
    background: rgba(0, 83, 135, 0.08) !important;
    border-color: rgba(0, 83, 135, 0.16);
    color: var(--devstate-blue) !important;
  }

  .devstate-theme-dark button.menu-toggle,
  .devstate-theme-dark .main-navigation button.menu-toggle,
  .devstate-theme-dark #site-navigation button.menu-toggle,
  .devstate-theme-dark #site-navigation .menu-toggle {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff !important;
  }

  button.menu-toggle .mobile-menu,
  #site-navigation .menu-toggle .mobile-menu {
    display: none;
  }

  button.menu-toggle .gp-icon,
  #site-navigation .menu-toggle .gp-icon {
    margin: 0;
  }

  #site-navigation .main-nav {
    left: 16px;
    position: fixed;
    right: 16px;
    top: calc(var(--devstate-header-height) + 10px);
    z-index: 1002;
  }

  body.admin-bar #site-navigation .main-nav {
    top: calc(var(--devstate-header-height) + 56px);
  }

  #site-navigation:not(.toggled) .main-nav {
    display: none !important;
  }

  #site-navigation.toggled .main-nav {
    display: block !important;
  }

  #site-navigation .main-nav > ul,
  #site-navigation .main-nav ul {
    background: var(--devstate-surface);
    border: 1px solid var(--devstate-border);
    border-radius: 10px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    display: block;
    margin: 0;
    max-height: calc(100vh - 94px);
    overflow-y: auto;
    padding: 8px;
    width: 100%;
  }

  .devstate-theme-dark #site-navigation .main-nav > ul,
  .devstate-theme-dark #site-navigation .main-nav ul {
    background: #071522;
    border-color: rgba(84, 197, 208, 0.18);
  }

  .devstate-theme-light #site-navigation .main-nav > ul,
  .devstate-theme-light #site-navigation .main-nav ul {
    background: #fff;
    border-color: rgba(216, 227, 234, 0.95);
  }

  #site-navigation .main-nav ul li {
    display: block;
    float: none;
    width: 100%;
  }

  #site-navigation .main-nav ul li a,
  .devstate-scrolled #site-navigation .main-nav ul li a,
  body:not(.devstate-home) #site-navigation .main-nav ul li a {
    align-items: center;
    border-radius: 8px;
    color: var(--devstate-ink);
    display: flex;
    font-size: 15px;
    justify-content: space-between;
    line-height: 1.25;
    min-height: 44px;
    padding: 12px 13px;
    width: 100%;
  }

  .devstate-theme-dark #site-navigation .main-nav ul li a,
  .devstate-theme-dark.devstate-scrolled #site-navigation .main-nav ul li a,
  .devstate-theme-dark body:not(.devstate-home) #site-navigation .main-nav ul li a {
    color: rgba(232, 240, 244, 0.9);
  }

  .devstate-theme-light #site-navigation .main-nav ul li a,
  .devstate-theme-light.devstate-scrolled body #site-navigation .main-nav ul li a,
  .devstate-theme-light body:not(.devstate-home) #site-navigation .main-nav ul li a {
    color: rgba(20, 40, 56, 0.86);
  }

  .devstate-theme-light #site-navigation .main-nav ul li:hover > a,
  .devstate-theme-light #site-navigation .main-nav ul li.sfHover > a,
  .devstate-theme-light #site-navigation .main-nav ul li.current-menu-item > a {
    background: rgba(0, 83, 135, 0.07);
    color: var(--devstate-blue);
  }

  #site-navigation .main-nav ul ul {
    box-shadow: none;
    margin: 4px 0 8px;
    padding: 6px;
    position: static;
    width: 100%;
  }

  .menu-bar-items {
    flex: 0 0 auto;
    gap: 8px;
    margin-left: 0;
    order: 2;
  }

  .devstate-theme-toggle {
    flex-basis: 40px;
    height: 40px;
    min-height: 40px;
    width: 40px;
  }

  .devstate-theme-light.devstate-scrolled body .devstate-theme-toggle,
  .devstate-theme-light body:not(.devstate-home) .devstate-theme-toggle {
    background: rgba(0, 83, 135, 0.08);
    color: var(--devstate-blue);
  }

  .devstate-theme-light:not(.devstate-scrolled) body.devstate-home .devstate-theme-toggle,
  .devstate-theme-dark .devstate-theme-toggle {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .devstate-hero,
  .devstate-fire-landing-hero,
  .devstate-incendio-hero {
    min-height: auto;
    padding-bottom: 48px;
    padding-top: calc(var(--devstate-header-height) + 36px);
  }

  .devstate-hero__inner,
  .devstate-about__grid,
  .devstate-fire__grid,
  .devstate-feature__grid,
  .devstate-contact__grid,
  .devstate-section__head--split,
  .devstate-product-panel__head,
  .devstate-product-callout,
  .devstate-product-feature-card,
  .devstate-fire-landing-hero__inner,
  .devstate-incendio-split,
  .devstate-incendio-form-grid,
  .devstate-incendio-validation-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .devstate-hero__content,
  .devstate-home-hero .devstate-hero__content,
  .devstate-fire-landing-hero__content,
  .devstate-section__head,
  .devstate-section__head--split,
  .devstate-contact__content,
  .devstate-product-main,
  .devstate-article-content {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .devstate-hero h1,
  .devstate-hero.devstate-home-hero h1,
  .devstate-fire-landing-hero h1,
  .devstate-incendio-hero h1,
  .devstate-section__head h2,
  .devstate-product-band h1 {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .devstate-home-hero .devstate-microcards,
  .devstate-services-grid,
  .devstate-sector-grid,
  .devstate-product-grid,
  .devstate-product-index-grid,
  .devstate-product-index-main .devstate-product-index-grid,
  .devstate-product-tiles--2,
  .devstate-product-tiles--3,
  .devstate-product-feature-grid,
  .devstate-legacy-product-grid,
  .devstate-legacy-product-grid--2,
  .devstate-legacy-product-grid--3,
  .devstate-value-grid,
  .devstate-metrics__grid,
  .devstate-form__grid,
  .devstate-footer__grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .devstate-product-topnav__rail,
  .devstate-landing-nav {
    margin-inline: -16px;
    overflow-x: auto;
    padding-inline: 16px;
    scrollbar-width: none;
  }

  .devstate-product-topnav__rail::-webkit-scrollbar,
  .devstate-landing-nav::-webkit-scrollbar {
    display: none;
  }

  .devstate-product-sidebar {
    display: none !important;
  }

  .devstate-card,
  .devstate-service-card,
  .devstate-sector-card,
  .devstate-product-index-card,
  .devstate-product-panel,
  .devstate-product-callout,
  .devstate-product-action-card,
  .devstate-product-feature-card,
  .devstate-form {
    max-width: 100%;
    min-width: 0;
  }

  img,
  svg,
  video,
  canvas,
  iframe {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --devstate-shell: min(1180px, calc(100vw - 28px));
  }

  .devstate-section,
  .devstate-product-index,
  .devstate-product-page {
    padding-bottom: 52px;
    padding-top: 52px;
  }

  .devstate-hero,
  .devstate-fire-landing-hero,
  .devstate-incendio-hero {
    padding-top: calc(var(--devstate-header-height) + 28px);
  }

  .devstate-hero h1,
  .devstate-hero.devstate-home-hero h1 {
    font-size: clamp(2rem, 8.4vw, 2.35rem);
    line-height: 1.15;
  }

  .devstate-hero h1 strong,
  .devstate-fire-landing-hero h1 strong,
  .devstate-incendio-hero h1 strong {
    display: block;
  }

  .devstate-fire-landing-hero h1,
  .devstate-incendio-hero h1,
  .devstate-section__head h2,
  .devstate-product-band h1 {
    font-size: clamp(1.85rem, 7.8vw, 2.25rem);
    line-height: 1.16;
  }

  .devstate-hero__text,
  .devstate-fire-landing-hero__lead,
  .devstate-fire-landing-hero__sublead,
  .devstate-incendio-hero p,
  .devstate-section__head p {
    max-width: 100%;
  }

  .devstate-button,
  .devstate-form > button {
    justify-content: center;
    width: 100%;
  }

  .devstate-form h2 {
    padding: 16px;
  }

  .devstate-form__grid,
  .devstate-form > .devstate-form__field,
  .devstate-form > button,
  .devstate-form__message {
    margin-left: 16px;
    margin-right: 16px;
  }

  .devstate-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cky-consent-container,
  .cky-consent-container.cky-box-bottom-left {
    bottom: calc(64px + env(safe-area-inset-bottom, 0px)) !important;
    left: 10px !important;
    max-width: none !important;
    right: 10px !important;
    width: auto !important;
  }

  .cky-consent-container .cky-consent-bar {
    border-radius: 8px !important;
    max-height: 42vh !important;
    padding: 12px !important;
  }

  .cky-notice .cky-title {
    font-size: 14px !important;
    margin-bottom: 4px !important;
  }

  .cky-notice-des {
    font-size: 12px !important;
    line-height: 1.38 !important;
    max-height: 64px !important;
  }

  .cky-notice-btn-wrapper {
    display: grid !important;
    gap: 6px !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    margin-top: 8px !important;
  }

  .cky-btn {
    font-size: 12px !important;
    min-height: 34px !important;
    padding: 7px 8px !important;
  }
}

/* Final mobile menu color guard. Keep this at the end so GeneratePress/admin styles cannot win. */
@media (max-width: 880px) {
  html body #masthead.site-header #site-navigation.main-navigation button.menu-toggle,
  html body #masthead.site-header #site-navigation.main-navigation .menu-toggle,
  html body #masthead.site-header .main-navigation button.menu-toggle,
  html body #masthead.site-header .main-navigation .menu-toggle {
    align-items: center !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    color: #fff !important;
    display: inline-flex !important;
    height: 44px !important;
    justify-content: center !important;
    line-height: 1 !important;
    margin: 0 !important;
    min-height: 44px !important;
    padding: 0 !important;
    width: 44px !important;
  }

  html.devstate-theme-light.devstate-scrolled body #masthead.site-header #site-navigation.main-navigation button.menu-toggle,
  html.devstate-theme-light.devstate-scrolled body #masthead.site-header #site-navigation.main-navigation .menu-toggle,
  html.devstate-theme-light body:not(.devstate-home) #masthead.site-header #site-navigation.main-navigation button.menu-toggle,
  html.devstate-theme-light body:not(.devstate-home) #masthead.site-header #site-navigation.main-navigation .menu-toggle {
    background: rgba(0, 83, 135, 0.08) !important;
    border-color: rgba(0, 83, 135, 0.2) !important;
    color: var(--devstate-blue) !important;
  }

  html.devstate-theme-dark body #masthead.site-header #site-navigation.main-navigation button.menu-toggle,
  html.devstate-theme-dark body #masthead.site-header #site-navigation.main-navigation .menu-toggle,
  html.devstate-theme-light:not(.devstate-scrolled) body.devstate-home #masthead.site-header #site-navigation.main-navigation button.menu-toggle,
  html.devstate-theme-light:not(.devstate-scrolled) body.devstate-home #masthead.site-header #site-navigation.main-navigation .menu-toggle {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
    color: #fff !important;
  }

  html body #masthead.site-header #site-navigation.main-navigation button.menu-toggle .gp-icon,
  html body #masthead.site-header #site-navigation.main-navigation .menu-toggle .gp-icon,
  html body #masthead.site-header #site-navigation.main-navigation button.menu-toggle svg,
  html body #masthead.site-header #site-navigation.main-navigation .menu-toggle svg {
    color: currentColor !important;
    fill: currentColor !important;
    stroke: currentColor !important;
  }

  html body #masthead.site-header #site-navigation.main-navigation button.menu-toggle .mobile-menu,
  html body #masthead.site-header #site-navigation.main-navigation .menu-toggle .mobile-menu {
    display: none !important;
  }

  html.devstate-theme-dark body #site-navigation.toggled .main-nav > ul,
  html.devstate-theme-dark body #site-navigation.toggled .main-nav ul {
    background: #071522 !important;
    border-color: rgba(84, 197, 208, 0.2) !important;
  }

  html.devstate-theme-dark body #site-navigation.toggled .main-nav ul li a {
    background: rgba(255, 255, 255, 0.035) !important;
    color: rgba(232, 240, 244, 0.92) !important;
  }

  html.devstate-theme-dark body #site-navigation.toggled .main-nav ul li:hover > a,
  html.devstate-theme-dark body #site-navigation.toggled .main-nav ul li.sfHover > a,
  html.devstate-theme-dark body #site-navigation.toggled .main-nav ul li.current-menu-item > a {
    background: rgba(84, 197, 208, 0.13) !important;
    color: #fff !important;
  }

  html.devstate-theme-light body #site-navigation.toggled .main-nav > ul,
  html.devstate-theme-light body #site-navigation.toggled .main-nav ul {
    background: #fff !important;
    border-color: rgba(216, 227, 234, 0.95) !important;
  }

  html.devstate-theme-light body #site-navigation.toggled .main-nav ul li a {
    background: rgba(0, 83, 135, 0.045) !important;
    color: rgba(20, 40, 56, 0.88) !important;
  }

  html.devstate-theme-light body #site-navigation.toggled .main-nav ul li:hover > a,
  html.devstate-theme-light body #site-navigation.toggled .main-nav ul li.sfHover > a,
  html.devstate-theme-light body #site-navigation.toggled .main-nav ul li.current-menu-item > a {
    background: rgba(0, 83, 135, 0.09) !important;
    color: var(--devstate-blue) !important;
  }
}

/* GeneratePress inline mobile toggle correction. */
@media (max-width: 880px) {
  html body #masthead.site-header {
    overflow: visible !important;
  }

  html body #masthead.site-header .inside-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 12px !important;
    align-items: center !important;
  }

  html body #masthead.site-header .site-branding-container {
    min-width: 0 !important;
  }

  html body #masthead.site-header #mobile-menu-control-wrapper.main-navigation {
    align-items: center !important;
    align-self: center !important;
    background: transparent !important;
    display: flex !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    height: 44px !important;
    justify-content: center !important;
    margin: 0 !important;
    min-height: 44px !important;
    order: 2 !important;
    padding: 0 !important;
    width: auto !important;
  }

  html body #masthead.site-header #mobile-menu-control-wrapper .inside-navigation {
    min-height: 0 !important;
  }

  html body #masthead.site-header #mobile-menu-control-wrapper .menu-bar-items {
    align-items: center !important;
    align-self: center !important;
    display: flex !important;
    gap: 8px !important;
    height: 44px !important;
    margin: 0 8px 0 0 !important;
    order: 1 !important;
    padding: 0 !important;
  }

  html body #masthead.site-header #mobile-menu-control-wrapper .devstate-nav-cta {
    display: none !important;
  }

  html body #masthead.site-header #mobile-menu-control-wrapper .devstate-theme-toggle {
    align-items: center !important;
    background: rgba(255, 255, 255, 0.09) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 8px !important;
    color: #fff !important;
    display: inline-flex !important;
    flex: 0 0 44px !important;
    height: 44px !important;
    justify-content: center !important;
    margin: 0 !important;
    min-height: 44px !important;
    padding: 0 !important;
    width: 44px !important;
  }

  html body #masthead.site-header #mobile-menu-control-wrapper button.menu-toggle,
  html body #masthead.site-header #mobile-menu-control-wrapper button.menu-toggle:hover,
  html body #masthead.site-header #mobile-menu-control-wrapper button.menu-toggle:focus,
  html body #masthead.site-header #mobile-menu-control-wrapper.toggled button.menu-toggle {
    align-items: center !important;
    background: rgba(255, 255, 255, 0.09) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    color: #fff !important;
    display: inline-flex !important;
    flex: 0 0 44px !important;
    height: 44px !important;
    justify-content: center !important;
    line-height: 1 !important;
    margin: 0 !important;
    min-height: 44px !important;
    min-width: 44px !important;
    padding: 0 !important;
    width: 44px !important;
  }

  html.devstate-theme-light.devstate-scrolled body #masthead.site-header #mobile-menu-control-wrapper .devstate-theme-toggle,
  html.devstate-theme-light body:not(.devstate-home) #masthead.site-header #mobile-menu-control-wrapper .devstate-theme-toggle,
  html.devstate-theme-light.devstate-scrolled body #masthead.site-header #mobile-menu-control-wrapper button.menu-toggle,
  html.devstate-theme-light body:not(.devstate-home) #masthead.site-header #mobile-menu-control-wrapper button.menu-toggle {
    background: rgba(0, 83, 135, 0.08) !important;
    border-color: rgba(0, 83, 135, 0.22) !important;
    color: var(--devstate-blue) !important;
  }

  html.devstate-theme-dark body #masthead.site-header #mobile-menu-control-wrapper .devstate-theme-toggle,
  html.devstate-theme-light:not(.devstate-scrolled) body.devstate-home #masthead.site-header #mobile-menu-control-wrapper .devstate-theme-toggle,
  html.devstate-theme-dark body #masthead.site-header #mobile-menu-control-wrapper button.menu-toggle,
  html.devstate-theme-light:not(.devstate-scrolled) body.devstate-home #masthead.site-header #mobile-menu-control-wrapper button.menu-toggle {
    background: rgba(255, 255, 255, 0.09) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
  }

  html body #masthead.site-header #mobile-menu-control-wrapper .devstate-theme-toggle svg,
  html body #masthead.site-header #mobile-menu-control-wrapper button.menu-toggle .gp-icon,
  html body #masthead.site-header #mobile-menu-control-wrapper button.menu-toggle svg {
    color: currentColor !important;
    fill: currentColor !important;
    stroke: currentColor !important;
  }

  html body #masthead.site-header #mobile-menu-control-wrapper button.menu-toggle .screen-reader-text,
  html body #masthead.site-header #mobile-menu-control-wrapper button.menu-toggle .mobile-menu {
    display: none !important;
  }

  html body #masthead.site-header #site-navigation.main-navigation {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    height: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    order: 3 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  html body #masthead.site-header #site-navigation .inside-navigation {
    display: block !important;
    min-height: 0 !important;
  }

  html body #masthead.site-header #site-navigation .inside-navigation > button.menu-toggle {
    display: none !important;
  }

  html body #masthead.site-header #site-navigation .menu-bar-items {
    display: none !important;
  }

  html body #masthead.site-header #site-navigation .main-nav {
    left: 14px !important;
    position: fixed !important;
    right: 14px !important;
    top: calc(var(--devstate-header-height) + 10px) !important;
    z-index: 1005 !important;
  }

  html body.admin-bar #masthead.site-header #site-navigation .main-nav {
    top: calc(var(--devstate-header-height) + 56px) !important;
  }
}

.devstate-blog-cta-banner {
  background: linear-gradient(135deg, #0a2a47, #0d3d6b);
  border-radius: 16px;
  padding: 50px 40px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: white;
}

.devstate-blog-cta-banner h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}

.devstate-blog-cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin: 0;
}

.devstate-blog-cta-banner .devstate-button--light {
  white-space: nowrap;
}

.devstate-article-tag {
  display: inline-block;
  background: rgba(84, 197, 208, 0.2);
  color: #54C5D0;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.devstate-article-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--devstate-muted);
  margin-left: 15px;
  vertical-align: middle;
}

@media (max-width: 700px) {
  .devstate-article-hero h1 {
    font-size: 2rem;
  }
  .devstate-blog-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
  }
  .devstate-blog-featured-card {
    padding: 25px;
  }
}

/* UX audit correction layer: contrast, density and component purpose. */
.devstate-card,
.devstate-product-card,
.devstate-blog-card,
.devstate-blog-featured-card,
.devstate-sidebar-list-item,
.devstate-incendio-card,
.devstate-incendio-benefit,
.devstate-incendio-step,
.devstate-incendio-check-card,
.devstate-incendio-sector,
.devstate-incendio-use-case,
.devstate-fire-landing-card,
.devstate-fire-benefit,
.devstate-fire-step {
  border-radius: 8px !important;
}

.devstate-card:hover,
.devstate-product-card:hover,
.devstate-blog-card:hover,
.devstate-blog-featured-card:hover,
.devstate-sidebar-list-item:hover {
  box-shadow: 0 8px 24px rgba(0, 30, 54, 0.08) !important;
  transform: translateY(-1px) !important;
}

.devstate-theme-dark .devstate-card:hover,
.devstate-theme-dark .devstate-product-card:hover,
.devstate-theme-dark .devstate-blog-card:hover,
.devstate-theme-dark .devstate-blog-featured-card:hover,
.devstate-theme-dark .devstate-sidebar-list-item:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24) !important;
}

.devstate-card p,
.devstate-product-card p,
.devstate-blog-card p,
.devstate-blog-featured-card p,
.devstate-footer__brand p,
.devstate-footer__column a,
.devstate-footer__column span {
  color: var(--devstate-muted);
}

.devstate-footer__brand p,
.devstate-footer__column a,
.devstate-footer__column span {
  color: rgba(255, 255, 255, 0.74);
}

.devstate-footer__bottom p {
  color: rgba(255, 255, 255, 0.62);
}

.devstate-blog-card,
.devstate-blog-featured-card {
  box-shadow: none;
}

.devstate-blog-card a,
.devstate-blog-featured-card a,
.devstate-sidebar-list-item {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.devstate-product-card__image {
  position: relative;
}

@media (max-width: 880px) {
  .devstate-footer {
    padding: 46px 0 26px;
  }

  .devstate-footer__grid {
    gap: 26px;
  }

  .devstate-footer__brand p {
    max-width: 32rem;
  }

  .devstate-footer__column h2 {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .devstate-footer__column a,
  .devstate-footer__column span {
    font-size: 14px;
    line-height: 1.45;
    min-height: 30px;
  }

  .devstate-footer__bottom {
    gap: 8px;
    margin-top: 30px;
    padding-top: 16px;
  }

  .devstate-whatsapp-float,
  .cky-btn-revisit-wrapper {
    height: 44px !important;
    width: 44px !important;
  }

  .devstate-whatsapp-float__icon {
    height: 24px;
    width: 24px;
  }

  .cky-btn-revisit-wrapper .cky-btn-revisit img {
    height: 26px !important;
    width: 26px !important;
  }
}

@media (max-width: 576px) {
  .devstate-blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .devstate-blog-card,
  .devstate-blog-featured-card {
    padding: 20px !important;
  }

  .devstate-product-card__body {
    padding: 18px;
  }
}
