:root {
  --navy-950: #06142f;
  --navy-900: #071a3d;
  --navy-850: #0b224a;
  --navy-800: #102a57;
  --blue-600: #2764ff;
  --blue-500: #3c73ff;
  --blue-100: #eaf0ff;
  --ink: #101828;
  --ink-soft: #344054;
  --slate: #667085;
  --slate-light: #98a2b3;
  --line: #e4e7ec;
  --line-dark: rgba(255, 255, 255, .14);
  --surface: #ffffff;
  --surface-soft: #f7f8fb;
  --surface-blue: #f4f7ff;
  --graphite: #4c4f56;
  --green: #12b76a;
  --orange: #f79009;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 10px 30px rgba(7, 26, 61, .08);
  --shadow-md: 0 24px 70px rgba(7, 26, 61, .13);
  --shadow-lg: 0 42px 110px rgba(6, 20, 47, .22);
  --container: 1200px;
  --header-h: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--surface);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 116px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  border-color: rgba(7, 26, 61, .08);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 40px rgba(7, 26, 61, .06);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand img {
  width: 78px;
  height: auto;
}

.brand-name {
  display: grid;
  color: var(--navy-900);
  font-size: 12px;
  letter-spacing: .085em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-name strong {
  font-size: 11px;
  font-weight: 800;
}

.brand-name span {
  margin-top: 5px;
  color: var(--graphite);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .38em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.site-nav > a:not(.button) {
  position: relative;
  padding: 8px 0;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--blue-600);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-900);
  transition: transform .2s ease;
}

.nav-toggle > span:nth-child(2) {
  transform: translateY(-4px);
}

.nav-toggle > span:nth-child(3) {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.button svg,
.text-link svg,
.custom-note a svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

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

.button:hover svg,
.button:focus-visible svg,
.text-link:hover svg,
.text-link:focus-visible svg,
.custom-note a:hover svg {
  transform: translateX(4px);
}

.button-primary {
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 14px 30px rgba(39, 100, 255, .27);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #1855ef;
  box-shadow: 0 18px 36px rgba(39, 100, 255, .34);
}

.button-dark {
  background: var(--navy-900);
  color: #fff;
  box-shadow: 0 10px 24px rgba(7, 26, 61, .18);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--navy-800);
  box-shadow: 0 14px 28px rgba(7, 26, 61, .24);
}

.button-small {
  min-height: 44px;
  border-radius: 10px;
  padding: 11px 17px;
  font-size: 13px;
}

.button-ghost {
  border-color: rgba(7, 26, 61, .16);
  background: rgba(255, 255, 255, .7);
  color: var(--navy-900);
  box-shadow: 0 9px 25px rgba(7, 26, 61, .05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(7, 26, 61, .28);
  background: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--blue-600);
}

.eyebrow-light {
  color: #8faeff;
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  padding: 168px 0 0;
  background:
    radial-gradient(circle at 75% 22%, rgba(39, 100, 255, .11), transparent 32%),
    linear-gradient(180deg, #fbfcff 0%, #fff 76%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(7, 26, 61, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 61, .045) 1px, transparent 1px);
  background-size: 70px 70px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .6) 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .6) 60%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 70px;
  right: -170px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(39, 100, 255, .10), transparent 70%);
}

.hero-glow-two {
  top: 390px;
  left: -230px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(117, 146, 211, .08), transparent 70%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(600px, 1.12fr);
  align-items: center;
  gap: 44px;
}

.hero-copy {
  max-width: 635px;
  padding-bottom: 30px;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 27px;
  color: var(--navy-950);
  font-size: clamp(48px, 5vw, 73px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .99;
}

.hero-subhead {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.64;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 25px;
  color: var(--slate);
  font-size: 12px;
  font-weight: 650;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-proof svg {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  padding: 2px;
  background: rgba(18, 183, 106, .10);
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 12px 0 40px;
  perspective: 1400px;
}

.visual-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px 18px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.visual-label::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(18, 183, 106, .11);
  content: "";
}

.app-shell {
  position: relative;
  display: grid;
  width: 720px;
  max-width: 100%;
  min-height: 512px;
  grid-template-columns: 62px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(7, 26, 61, .11);
  border-radius: 22px;
  background: #f8faff;
  box-shadow: var(--shadow-lg);
  transform: rotateY(-3deg) rotateX(1.2deg);
  transform-origin: center;
}

.app-shell::before {
  position: absolute;
  z-index: 4;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
  content: "";
  pointer-events: none;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  padding: 17px 11px;
  background: var(--navy-900);
}

.app-mark {
  display: grid;
  width: 35px;
  height: 35px;
  margin-bottom: 8px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.side-icon {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  grid-template-columns: repeat(2, 5px);
  place-content: center;
  gap: 3px;
  border-radius: 10px;
}

.side-icon span {
  width: 5px;
  height: 5px;
  border-radius: 1.5px;
  background: rgba(255, 255, 255, .36);
}

.side-icon:nth-of-type(3) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.side-icon:nth-of-type(3) span {
  width: 15px;
  height: 2px;
  border-radius: 2px;
}

.side-icon:nth-of-type(4) {
  display: flex;
  align-items: center;
  gap: 4px;
}

.side-icon:nth-of-type(4) span:first-child {
  width: 8px;
  height: 15px;
}

.side-icon:nth-of-type(4) span:last-child {
  width: 8px;
  height: 10px;
}

.side-icon.active {
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.side-icon.active span {
  background: #8faeff;
}

.side-avatar {
  display: grid;
  width: 31px;
  height: 31px;
  margin-top: auto;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: #d7e2ff;
  color: var(--navy-900);
  font-size: 8px;
  font-weight: 850;
}

.app-main {
  min-width: 0;
  padding: 20px;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.app-topbar > div:first-child {
  display: grid;
}

.app-kicker {
  color: var(--slate-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.app-topbar strong {
  color: var(--navy-900);
  font-size: 16px;
  letter-spacing: -.02em;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.topbar-actions button {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid #e4e8f1;
  border-radius: 9px;
  background: #fff;
}

.topbar-actions svg {
  width: 14px;
  fill: none;
  stroke: var(--slate);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.avatar {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  background: var(--navy-900);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.metric-card {
  display: grid;
  min-width: 0;
  border: 1px solid #e8ebf2;
  border-radius: 12px;
  padding: 13px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(7, 26, 61, .04);
}

.metric-card > span {
  margin-bottom: 4px;
  color: var(--slate);
  font-size: 8px;
  font-weight: 650;
}

.metric-card strong {
  margin-bottom: 2px;
  color: var(--navy-900);
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.metric-card small {
  overflow: hidden;
  color: var(--slate-light);
  font-size: 7.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-card small.positive {
  color: var(--green);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(190px, .8fr);
  gap: 10px;
}

.panel {
  min-width: 0;
  border: 1px solid #e8ebf2;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(7, 26, 61, .04);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px 8px;
}

.panel-head > div {
  display: grid;
}

.panel-head span {
  color: var(--slate-light);
  font-size: 7.5px;
  font-weight: 650;
}

.panel-head strong {
  color: var(--ink-soft);
  font-size: 10px;
}

.panel-head button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #edf0f5;
  border-radius: 7px;
  padding: 5px 7px;
  background: #fff;
  color: var(--slate);
  font-size: 7px;
}

.panel-head button svg {
  width: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.chart-wrap {
  position: relative;
  height: 205px;
  overflow: hidden;
  padding: 8px 12px 18px;
}

.chart-lines {
  position: absolute;
  inset: 12px 12px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-lines i {
  height: 1px;
  background: #edf0f6;
}

.line-chart {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 160px;
  overflow: visible;
}

.line-chart .area {
  fill: url(#area);
}

.line-chart .line {
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.chart-dates {
  position: absolute;
  right: 12px;
  bottom: 8px;
  left: 12px;
  display: flex;
  justify-content: space-between;
  color: var(--slate-light);
  font-size: 6.5px;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--green) !important;
}

.live-dot::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  box-shadow: 0 0 0 3px rgba(18, 183, 106, .11);
}

.activity-list {
  padding: 4px 12px 12px;
}

.activity-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid #f0f2f6;
}

.activity-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 8px;
}

.activity-icon svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.activity-icon.order {
  background: #eaf0ff;
  color: var(--blue-600);
}

.activity-icon.quote {
  background: #fff2df;
  color: var(--orange);
}

.activity-icon.lead {
  background: #e9fbf3;
  color: var(--green);
}

.activity-item > div {
  display: grid;
  min-width: 0;
}

.activity-item strong {
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-item small {
  overflow: hidden;
  color: var(--slate-light);
  font-size: 6.8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-item time {
  color: var(--slate-light);
  font-size: 6.5px;
}

.floating-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(7, 26, 61, .10);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 18px 46px rgba(7, 26, 61, .15);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  animation: float 5s ease-in-out infinite;
}

.floating-card-one {
  right: -18px;
  bottom: 1px;
}

.floating-card-two {
  top: 87px;
  left: -48px;
  animation-delay: -2.1s;
}

.float-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: var(--blue-100);
  color: var(--blue-600);
}

.float-icon svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-card > div {
  display: grid;
}

.floating-card strong {
  color: var(--navy-900);
  font-size: 10px;
  line-height: 1.3;
}

.floating-card small {
  color: var(--slate);
  font-size: 8px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.capability-strip {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  gap: 23px;
  margin-top: 72px;
  border-top: 1px solid rgba(7, 26, 61, .08);
  color: var(--slate);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.capability-strip i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #cfd5e0;
}

.section-heading {
  margin-bottom: 56px;
}

.section-heading.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr);
  align-items: end;
  gap: 80px;
}

.section-heading.centered {
  max-width: 790px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.faq-intro h2,
.operator-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  color: var(--navy-950);
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 800;
  letter-spacing: -.048em;
  line-height: 1.04;
}

.section-heading > p,
.section-heading.two-column > p {
  margin-bottom: 4px;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.75;
}

.section-heading.centered > p {
  max-width: 720px;
  margin: 20px auto 0;
}

.problem-section {
  background: var(--surface-soft);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.problem-card {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  border: 1px solid #e7eaf0;
  border-radius: var(--radius-md);
  padding: 29px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(7, 26, 61, .035);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.problem-card::after {
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 100, 255, .08), transparent 70%);
  content: "";
}

.problem-card:hover {
  border-color: rgba(39, 100, 255, .25);
  box-shadow: 0 22px 55px rgba(7, 26, 61, .08);
  transform: translateY(-6px);
}

.card-number {
  position: absolute;
  top: 23px;
  right: 25px;
  color: #d9dee8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.card-icon,
.capability-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #dfe6f7;
  border-radius: 13px;
  background: var(--surface-blue);
  color: var(--blue-600);
}

.card-icon {
  margin-bottom: 48px;
}

.card-icon svg,
.capability-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-card h3 {
  margin-bottom: 13px;
  color: var(--navy-900);
  font-size: 22px;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.problem-card p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.72;
}

.capabilities-section {
  overflow: hidden;
  background: #fff;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.capability-card {
  position: relative;
  min-height: 382px;
  overflow: hidden;
  border: 1px solid #e5e8ef;
  border-radius: var(--radius-md);
  padding: 26px;
  background: #fff;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.capability-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 100, 255, .055), transparent 68%);
  content: "";
  pointer-events: none;
}

.capability-card:hover {
  z-index: 2;
  border-color: rgba(39, 100, 255, .25);
  box-shadow: 0 24px 64px rgba(7, 26, 61, .09);
  transform: translateY(-6px);
}

.capability-card.featured {
  border-color: rgba(39, 100, 255, .20);
  background: linear-gradient(145deg, #f8faff 0%, #fff 68%);
}

.capability-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 37px;
}

.capability-tag {
  color: var(--slate-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.capability-card h3 {
  max-width: 320px;
  margin-bottom: 14px;
  color: var(--navy-900);
  font-size: 23px;
  letter-spacing: -.03em;
  line-height: 1.18;
}

.capability-card > p {
  min-height: 78px;
  margin-bottom: 21px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.7;
}

.capability-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-card li {
  position: relative;
  padding-left: 17px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
}

.capability-card li::before {
  position: absolute;
  top: .68em;
  left: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-600);
  content: "";
}

.custom-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  border: 1px solid #dfe5f2;
  border-radius: 17px;
  padding: 20px 23px;
  background: linear-gradient(90deg, #f5f8ff 0%, #fbfcff 100%);
}

.custom-note-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--navy-900);
  color: #fff;
}

.custom-note-icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.custom-note strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy-900);
  font-size: 15px;
}

.custom-note p {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.5;
}

.custom-note a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.systems-showcase {
  background: var(--surface-soft);
}

.showcase-shell {
  overflow: hidden;
  border: 1px solid #dde2ec;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.showcase-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #e5e8ef;
  background: #fbfcfe;
}

.showcase-tab {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 0;
  border-right: 1px solid #e5e8ef;
  padding: 16px;
  background: transparent;
  color: var(--slate);
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}

.showcase-tab:last-child {
  border-right: 0;
}

.showcase-tab span {
  color: #b0b8c7;
  font-size: 10px;
  font-weight: 850;
}

.showcase-tab.active {
  position: relative;
  background: #fff;
  color: var(--navy-900);
}

.showcase-tab.active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--blue-600);
  content: "";
}

.showcase-tab.active span {
  color: var(--blue-600);
}

.showcase-content {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px;
}

.showcase-kicker {
  margin-bottom: 15px;
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.showcase-copy h3 {
  margin-bottom: 19px;
  color: var(--navy-950);
  font-size: clamp(32px, 3vw, 43px);
  letter-spacing: -.045em;
  line-height: 1.08;
}

.showcase-copy > p {
  margin-bottom: 25px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
}

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

.showcase-copy li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
}

.showcase-copy li svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  border-radius: 50%;
  padding: 2px;
  background: rgba(39, 100, 255, .10);
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.showcase-visual {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  place-items: center;
  padding: 48px 44px 48px 20px;
  background:
    radial-gradient(circle at 72% 20%, rgba(39, 100, 255, .16), transparent 36%),
    linear-gradient(145deg, #f5f8ff 0%, #eef3ff 100%);
}

.showcase-visual::before {
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(39, 100, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 100, 255, .08) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  -webkit-mask-image: radial-gradient(circle at center, #000 10%, transparent 75%);
  mask-image: radial-gradient(circle at center, #000 10%, transparent 75%);
}

.portal-window,
.quote-window,
.ops-window {
  position: relative;
  z-index: 2;
  width: 600px;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 61, .11);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(7, 26, 61, .16);
  transform: rotateY(-4deg) rotateX(2deg);
}

.portal-nav {
  display: flex;
  height: 54px;
  align-items: center;
  gap: 24px;
  padding: 0 18px;
  border-bottom: 1px solid #edf0f5;
  background: #fff;
}

.portal-nav strong {
  margin-right: auto;
  color: var(--navy-900);
  font-size: 13px;
  letter-spacing: -.03em;
}

.portal-nav > span {
  color: var(--slate);
  font-size: 7.5px;
  font-weight: 700;
}

.portal-user {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 8px;
  background: var(--navy-900);
  color: #fff;
  font-size: 7px;
  font-weight: 850;
}

.portal-body {
  padding: 22px;
  background: #fafbfe;
}

.portal-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
}

.portal-welcome > div {
  display: grid;
}

.portal-welcome small {
  color: var(--slate-light);
  font-size: 7px;
}

.portal-welcome strong {
  color: var(--navy-900);
  font-size: 14px;
}

.portal-welcome button,
.quote-actions button,
.ops-button {
  border: 0;
  border-radius: 8px;
  padding: 8px 11px;
  background: var(--blue-600);
  color: #fff;
  font-size: 7.5px;
  font-weight: 750;
}

.portal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 10px;
}

.portal-stats > div {
  display: grid;
  border: 1px solid #e8ecf4;
  border-radius: 10px;
  padding: 11px;
  background: #fff;
}

.portal-stats span {
  color: var(--slate-light);
  font-size: 6.5px;
}

.portal-stats strong {
  color: var(--navy-900);
  font-size: 14px;
}

.portal-order {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  border: 1px solid #e8ecf4;
  border-radius: 10px;
  padding: 11px;
  background: #fff;
}

.status {
  display: inline-flex;
  justify-content: center;
  border-radius: 99px;
  padding: 4px 6px;
  font-size: 6px;
  font-weight: 800;
}

.status.ready {
  background: #e8f8f0;
  color: var(--green);
}

.status.progress {
  background: #fff3df;
  color: var(--orange);
}

.portal-order > div {
  display: grid;
  min-width: 0;
}

.portal-order strong {
  color: var(--ink-soft);
  font-size: 8px;
}

.portal-order small {
  overflow: hidden;
  color: var(--slate-light);
  font-size: 6.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portal-order > span:not(.status) {
  color: var(--navy-900);
  font-size: 8px;
  font-weight: 750;
}

.portal-order button {
  border: 1px solid #e0e5ee;
  border-radius: 7px;
  padding: 5px 8px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 6.5px;
}

.quote-window {
  padding: 18px;
}

.quote-header,
.ops-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 13px;
  border-bottom: 1px solid #edf0f5;
}

.quote-header > div,
.ops-header > div {
  display: grid;
}

.quote-header small,
.ops-header small {
  color: var(--slate-light);
  font-size: 7px;
}

.quote-header strong,
.ops-header strong {
  color: var(--navy-900);
  font-size: 13px;
}

.quote-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 15px;
}

.quote-steps span {
  border-radius: 99px;
  padding: 5px;
  background: #edf1f7;
  color: var(--slate-light);
  font-size: 6px;
  font-weight: 750;
  text-align: center;
}

.quote-steps span.active {
  background: var(--blue-100);
  color: var(--blue-600);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.quote-field {
  display: grid;
  gap: 4px;
}

.quote-field label {
  color: var(--slate);
  font-size: 6px;
  font-weight: 700;
}

.quote-field span {
  min-height: 31px;
  border: 1px solid #e4e8ef;
  border-radius: 7px;
  padding: 7px 8px;
  color: var(--ink-soft);
  font-size: 7px;
}

.quote-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 20px;
  margin-top: 16px;
  border-radius: 10px;
  padding: 13px;
  background: var(--surface-blue);
  color: var(--slate);
  font-size: 7px;
}

.quote-summary strong {
  color: var(--navy-900);
  font-size: 11px;
}

.quote-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 13px;
}

.ops-window {
  padding: 16px;
  background: #fbfcff;
}

.ops-header {
  margin: -16px -16px 13px;
  padding: 15px 16px 12px;
  background: #fff;
}

.ops-button {
  font-size: 6.5px;
}

.ops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ops-card {
  border: 1px solid #e7ebf2;
  border-radius: 9px;
  padding: 11px;
  background: #fff;
}

.ops-card.wide {
  grid-column: 1 / -1;
}

.ops-card span {
  color: var(--slate-light);
  font-size: 6px;
}

.ops-card strong {
  display: block;
  margin-top: 3px;
  color: var(--navy-900);
  font-size: 12px;
}

.mini-bars {
  display: flex;
  height: 44px;
  align-items: flex-end;
  gap: 5px;
  margin-top: 10px;
}

.mini-bars i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--blue-500), #a7baff);
}

.mini-bars i:nth-child(1) { height: 24%; }
.mini-bars i:nth-child(2) { height: 42%; }
.mini-bars i:nth-child(3) { height: 33%; }
.mini-bars i:nth-child(4) { height: 72%; }
.mini-bars i:nth-child(5) { height: 58%; }
.mini-bars i:nth-child(6) { height: 91%; }
.mini-bars i:nth-child(7) { height: 77%; }
.mini-bars i:nth-child(8) { height: 100%; }

.ops-table {
  display: grid;
  gap: 7px;
  margin-top: 8px;
}

.ops-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px 60px;
  align-items: center;
  gap: 8px;
  padding-top: 7px;
  border-top: 1px solid #edf0f5;
  color: var(--ink-soft);
  font-size: 6.5px;
}

.operator-section {
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
}

.operator-pattern {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(39, 100, 255, .20), transparent 25%),
    radial-gradient(circle at 90% 65%, rgba(78, 117, 220, .12), transparent 28%),
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: auto, auto, 70px 70px, 70px 70px;
  -webkit-mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, .55));
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, .55));
}

.operator-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 90px;
}

.operator-copy h2,
.contact-copy h2 {
  color: #fff;
}

.operator-copy h2 {
  margin-bottom: 28px;
}

.operator-copy > p {
  max-width: 570px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
  line-height: 1.78;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 800;
}

.text-link.light {
  color: #a9bdff;
}

.operator-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.operator-card {
  min-height: 205px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 17px;
  padding: 23px;
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background-color .2s ease, transform .2s ease;
}

.operator-card:hover {
  background: rgba(255, 255, 255, .085);
  transform: translateY(-4px);
}

.operator-number {
  display: block;
  margin-bottom: 28px;
  color: #708bc9;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
}

.operator-card h3 {
  margin-bottom: 9px;
  color: #fff;
  font-size: 18px;
  letter-spacing: -.02em;
  line-height: 1.25;
}

.operator-card p {
  color: rgba(255, 255, 255, .57);
  font-size: 13px;
  line-height: 1.65;
}

.process-section {
  background: #fff;
}

.process-line {
  position: relative;
  height: 1px;
  margin: 8px 12.5% -1px;
  background: #dfe3eb;
}

.process-line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue-600);
  transition: width 1.2s ease .2s;
}

.process-line.visible span {
  width: 100%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  position: relative;
  padding: 43px 14px 0;
  text-align: center;
}

.step-dot {
  position: absolute;
  top: -16px;
  left: calc(50% - 16px);
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 7px solid #fff;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  box-shadow: 0 0 0 1px #dfe3eb;
  font-size: 8px;
  font-weight: 850;
}

.process-step small {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-600);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.process-step h3 {
  margin-bottom: 11px;
  color: var(--navy-900);
  font-size: 19px;
  letter-spacing: -.025em;
  line-height: 1.25;
}

.process-step p {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.68;
}

.faq-section {
  background: var(--surface-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
  gap: 90px;
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 125px;
}

.faq-intro h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 3.8vw, 52px);
}

.faq-intro > p {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.75;
}

.faq-list {
  border-top: 1px solid #dfe3eb;
}

.faq-item {
  border-bottom: 1px solid #dfe3eb;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 20px 2px;
  background: transparent;
  color: var(--navy-900);
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -.015em;
}

.faq-item button i {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid #d7dce5;
  border-radius: 50%;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 13px;
  left: 8px;
  width: 10px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--navy-900);
  content: "";
  transition: transform .2s ease;
}

.faq-item button i::after {
  transform: rotate(90deg);
}

.faq-item.open button i::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq-answer > p {
  min-height: 0;
  overflow: hidden;
  margin-bottom: 0;
  padding-right: 58px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
  opacity: 0;
  transition: opacity .2s ease, padding-bottom .3s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer > p {
  padding-bottom: 25px;
  opacity: 1;
}

.contact-section {
  overflow: hidden;
  padding: 118px 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(39, 100, 255, .20), transparent 31%),
    linear-gradient(125deg, #071a3d 0%, #06142f 70%);
  color: #fff;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  content: "";
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 88%);
  mask-image: linear-gradient(90deg, #000, transparent 88%);
}

.contact-glow {
  position: absolute;
  right: -280px;
  bottom: -360px;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 112, 255, .18), transparent 68%);
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(520px, 1.02fr);
  align-items: center;
  gap: 75px;
}

.contact-copy h2 {
  margin-bottom: 23px;
}

.contact-copy > p {
  max-width: 540px;
  color: rgba(255, 255, 255, .66);
  font-size: 17px;
  line-height: 1.75;
}

.contact-points {
  display: grid;
  gap: 17px;
  margin-top: 35px;
}

.contact-points > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-points > div > span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  margin-top: 1px;
  border: 1px solid rgba(143, 174, 255, .24);
  border-radius: 50%;
  background: rgba(143, 174, 255, .11);
  color: #9db5ff;
}

.contact-points svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-points p {
  color: rgba(255, 255, 255, .60);
  font-size: 13px;
  line-height: 1.6;
}

.contact-points strong {
  color: #fff;
}


.contact-methods {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 540px;
  margin-top: 27px;
}

.contact-methods .contact-email {
  width: 100%;
  max-width: none;
  margin-top: 0;
}

.contact-phone .contact-email-icon svg {
  stroke-width: 1.6;
}

.contact-email {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  max-width: 540px;
  margin-top: 27px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 15px;
  padding: 14px 15px;
  background: rgba(255, 255, 255, .055);
  color: #fff;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.contact-email:hover {
  border-color: rgba(157, 181, 255, .38);
  background: rgba(255, 255, 255, .085);
  transform: translateY(-2px);
}

.contact-phone {
  margin-top: 10px;
}

.contact-email-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(143, 174, 255, .24);
  border-radius: 11px;
  background: rgba(143, 174, 255, .11);
  color: #a9beff;
}

.contact-email-icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-email-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.contact-email-copy small {
  color: rgba(255, 255, 255, .54);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-email-copy strong {
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.contact-email-arrow {
  width: 18px;
  fill: none;
  stroke: #9db5ff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.contact-email:hover .contact-email-arrow {
  transform: translateX(3px);
}

.project-form {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  padding: 30px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 35px 100px rgba(0, 0, 0, .24);
}

.form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.form-head > div {
  display: grid;
}

.form-head span:not(.form-badge) {
  margin-bottom: 3px;
  color: var(--blue-600);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-head h3 {
  margin-bottom: 0;
  color: var(--navy-900);
  font-size: 26px;
  letter-spacing: -.035em;
  line-height: 1.2;
}

.form-badge {
  border: 1px solid #dfe5f3;
  border-radius: 99px;
  padding: 6px 9px;
  background: #f7f9ff;
  color: var(--slate);
  font-size: 8px;
  font-weight: 750;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-grid label {
  display: grid;
  gap: 6px;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

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

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #dfe3ea;
  border-radius: 10px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-grid input,
.form-grid select {
  min-height: 46px;
  padding: 0 13px;
}

.form-grid select {
  appearance: none;
  padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20' fill='none' stroke='%23667085' stroke-width='1.6'%3E%3Cpath d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 11px center;
  background-repeat: no-repeat;
}

.form-grid textarea {
  min-height: 125px;
  resize: vertical;
  padding: 12px 13px;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #a5adba;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(39, 100, 255, .09);
}

.form-grid .invalid {
  border-color: #f04438;
  box-shadow: 0 0 0 4px rgba(240, 68, 56, .08);
}

.form-submit {
  width: 100%;
  margin-top: 19px;
}

.form-note {
  margin-top: 11px;
  color: var(--slate-light);
  font-size: 9px;
  text-align: center;
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 17px;
  border: 1px solid #bde8d3;
  border-radius: 11px;
  padding: 12px;
  background: #f0fbf6;
}

.form-success[hidden] {
  display: none;
}

.form-success > span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
}

.form-success svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success strong {
  color: #067647;
  font-size: 12px;
}

.form-success p {
  color: #27835c;
  font-size: 10px;
  line-height: 1.5;
}

.site-footer {
  padding: 72px 0 25px;
  background: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  align-items: start;
  gap: 60px;
  padding-bottom: 52px;
}

.footer-brand {
  display: block;
  width: min(450px, 100%);
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 50px;
}

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

.footer-links span {
  margin-bottom: 7px;
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-links a {
  overflow-wrap: anywhere;
  color: var(--slate);
  font-size: 13px;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--blue-600);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--slate-light);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .65, .25, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(46px, 5vw, 64px);
  }

  .floating-card-two {
    left: -15px;
  }

  .section-heading.two-column {
    gap: 50px;
  }
}

@media (max-width: 1040px) {
  :root {
    --header-h: 74px;
  }

  .site-nav {
    gap: 20px;
  }

  .brand-name {
    display: none;
  }

  .brand img {
    width: 82px;
  }

  .hero {
    padding-top: 136px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .hero h1,
  .hero-subhead {
    max-width: 760px;
  }

  .hero-visual {
    width: min(780px, 100%);
    margin-inline: auto;
  }

  .app-shell {
    width: 100%;
  }

  .floating-card-two {
    left: -22px;
  }

  .capability-strip {
    flex-wrap: wrap;
    padding: 24px 0;
  }

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

  .operator-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .operator-copy {
    max-width: 720px;
  }

  .contact-layout {
    align-items: start;
  }

  .contact-copy {
    max-width: 720px;
  }

  .project-form {
    max-width: 760px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 90px 0;
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    display: flex;
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(390px, 88vw);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 108px 26px 30px;
    background: #fff;
    box-shadow: -24px 0 70px rgba(7, 26, 61, .18);
    transform: translateX(105%);
    transition: transform .28s cubic-bezier(.2, .65, .25, 1);
  }

  .site-nav::before {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 100%;
    bottom: 0;
    width: 100vw;
    background: rgba(6, 20, 47, .45);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav.open::before {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav > a:not(.button) {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .site-nav .button {
    margin-top: 14px;
  }

  .section-heading.two-column {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

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

  .card-icon {
    margin-bottom: 34px;
  }

  .showcase-content {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    padding: 48px 40px 35px;
  }

  .showcase-visual {
    min-height: 440px;
    padding: 42px;
  }

  .process-line {
    display: none;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .process-step {
    border: 1px solid #e5e8ef;
    border-radius: 15px;
    padding: 28px;
    text-align: left;
  }

  .step-dot {
    position: static;
    margin-bottom: 24px;
    border: 0;
    box-shadow: none;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 57px);
    line-height: 1.01;
  }

  .hero-subhead {
    font-size: 17px;
    line-height: 1.62;
  }

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

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

  .hero-proof {
    display: grid;
    gap: 9px;
  }

  .hero-visual {
    margin-right: -28px;
    margin-left: 0;
    padding-bottom: 20px;
  }

  .visual-label {
    margin-left: 0;
  }

  .app-shell {
    width: 690px;
    max-width: none;
    min-height: 480px;
    transform: scale(.83);
    transform-origin: top left;
  }

  .hero-visual {
    height: 455px;
    overflow: hidden;
  }

  .floating-card {
    display: none;
  }

  .capability-strip {
    justify-content: flex-start;
    gap: 13px;
    margin-top: 28px;
    overflow: hidden;
    font-size: 9px;
    white-space: nowrap;
  }

  .capability-strip span:nth-of-type(n+4),
  .capability-strip i:nth-of-type(n+4) {
    display: none;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .operator-copy h2,
  .contact-copy h2,
  .faq-intro h2 {
    font-size: clamp(35px, 10vw, 46px);
  }

  .section-heading > p,
  .section-heading.two-column > p {
    font-size: 16px;
  }

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

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

  .capability-card > p {
    min-height: 0;
  }

  .custom-note {
    grid-template-columns: auto 1fr;
  }

  .custom-note a {
    grid-column: 1 / -1;
    padding-left: 62px;
  }

  .showcase-tabs {
    display: flex;
    overflow-x: auto;
  }

  .showcase-tab {
    min-width: 190px;
    border-bottom: 0;
  }

  .showcase-copy {
    padding: 38px 26px 30px;
  }

  .showcase-visual {
    min-height: 350px;
    padding: 28px 16px;
  }

  .portal-window,
  .quote-window,
  .ops-window {
    width: 560px;
    max-width: none;
    transform: scale(.72);
    transform-origin: center;
  }

  .operator-cards {
    grid-template-columns: 1fr;
  }

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

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

  .faq-answer > p {
    padding-right: 8px;
  }

  .contact-section {
    padding: 82px 0;
  }

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

  .project-form {
    padding: 23px 18px;
  }

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

  .form-grid label.full {
    grid-column: auto;
  }

  .form-head h3 {
    font-size: 23px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-brand {
    width: min(420px, 100%);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 74px;
  }

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

  .app-shell {
    transform: scale(.69);
  }

  .hero-visual {
    height: 380px;
  }

  .showcase-tab {
    min-width: 165px;
  }

  .form-badge {
    display: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Viewport-fit hero refinement */
@media (min-width: 1041px) {
  :root {
    --header-h: 74px;
  }

  .brand img {
    width: 72px;
  }

  .hero {
    min-height: 100svh;
    padding: clamp(98px, 13vh, 130px) 0 72px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
    gap: 34px;
  }

  .hero-copy {
    max-width: 590px;
    padding-bottom: 0;
  }

  .hero .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .hero h1 {
    max-width: 600px;
    margin-bottom: 18px;
    font-size: clamp(48px, 4.25vw, 61px);
    line-height: .98;
  }

  .hero-subhead {
    max-width: 575px;
    margin-bottom: 22px;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero .button {
    min-height: 48px;
    padding: 12px 18px;
    font-size: 14px;
  }

  .hero-proof {
    gap: 8px 14px;
    margin-top: 16px;
    font-size: 11px;
  }

  .hero-visual {
    padding: 0;
  }

  .visual-label {
    margin: 0 0 8px 14px;
    font-size: 10px;
  }

  .app-shell {
    width: 100%;
    height: 430px;
    min-height: 0;
    border-radius: 20px;
  }

  .app-sidebar {
    gap: 13px;
    padding: 14px 10px;
  }

  .app-mark {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
  }

  .side-icon {
    width: 32px;
    height: 32px;
  }

  .app-main {
    padding: 16px;
  }

  .app-topbar {
    margin-bottom: 12px;
  }

  .app-topbar strong {
    font-size: 15px;
  }

  .metric-row {
    gap: 8px;
    margin-bottom: 8px;
  }

  .metric-card {
    padding: 10px;
  }

  .metric-card strong {
    font-size: 17px;
  }

  .dashboard-grid {
    gap: 8px;
  }

  .panel-head {
    padding: 10px 11px 6px;
  }

  .chart-wrap {
    height: 167px;
    padding: 6px 10px 16px;
  }

  .chart-lines {
    inset: 10px 10px 28px;
  }

  .line-chart {
    height: 130px;
  }

  .activity-list {
    padding: 2px 10px 8px;
  }

  .activity-item {
    grid-template-columns: 25px minmax(0, 1fr) auto;
    gap: 7px;
    padding: 7px 0;
  }

  .activity-icon {
    width: 24px;
    height: 24px;
  }

  .floating-card {
    padding: 10px 12px;
  }

  .floating-card-one {
    right: -10px;
    bottom: -5px;
  }

  .floating-card-two {
    top: 68px;
    left: -32px;
  }

  .float-icon {
    width: 31px;
    height: 31px;
  }

  .hero .capability-strip.reveal,
  .hero .capability-strip.reveal.visible {
    opacity: 1;
    transform: none;
  }

  .capability-strip {
    position: absolute;
    right: 20px;
    bottom: 0;
    left: 20px;
    width: min(calc(100% - 40px), var(--container));
    min-height: 62px;
    margin: 0 auto;
  }
}


@media (min-width: 1041px) and (min-height: 900px) {
  .hero h1 {
    font-size: clamp(52px, 4.7vw, 66px);
  }

  .app-shell {
    height: 470px;
  }

  .chart-wrap {
    height: 195px;
  }

  .line-chart {
    height: 155px;
  }

  .activity-item {
    padding: 9px 0;
  }
}

/* Mobile display refinement: fluid mockups with no cropped interfaces */
@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  @supports (overflow: clip) {
    html,
    body {
      overflow-x: clip;
    }
  }

  .hero,
  .hero-layout,
  .hero-visual,
  .systems-showcase,
  .showcase-shell,
  .showcase-content,
  .showcase-visual {
    min-width: 0;
    max-width: 100%;
  }

  .hero-visual {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-left: 0;
    padding: 0 0 10px;
    overflow: visible;
    perspective: none;
  }

  .visual-label {
    margin: 0 0 11px;
    font-size: 9px;
    letter-spacing: .07em;
  }

  .app-shell {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(6, 20, 47, .18);
    transform: none;
  }

  .app-sidebar {
    gap: 10px;
    padding: 10px 6px;
  }

  .app-mark {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
    border-radius: 8px;
    font-size: 8px;
  }

  .side-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .side-avatar {
    width: 25px;
    height: 25px;
    font-size: 6px;
  }

  .app-main {
    padding: 10px;
  }

  .app-topbar {
    margin-bottom: 9px;
  }

  .app-kicker {
    font-size: 6px;
  }

  .app-topbar strong {
    font-size: 12px;
  }

  .topbar-actions {
    gap: 5px;
  }

  .topbar-actions button,
  .avatar {
    width: 25px;
    height: 25px;
    border-radius: 7px;
  }

  .topbar-actions svg {
    width: 11px;
  }

  .metric-row {
    gap: 5px;
    margin-bottom: 6px;
  }

  .metric-card {
    border-radius: 8px;
    padding: 7px;
  }

  .metric-card > span {
    margin-bottom: 2px;
    font-size: 5.8px;
    line-height: 1.2;
  }

  .metric-card strong {
    margin-bottom: 1px;
    font-size: 13px;
  }

  .metric-card small {
    font-size: 5.3px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .panel {
    border-radius: 9px;
  }

  .panel-head {
    padding: 8px 9px 5px;
  }

  .panel-head span {
    font-size: 6px;
  }

  .panel-head strong {
    font-size: 8px;
  }

  .panel-head button {
    padding: 4px 6px;
    font-size: 5.8px;
  }

  .chart-wrap {
    height: 138px;
    padding: 4px 8px 14px;
  }

  .chart-lines {
    inset: 8px 8px 24px;
  }

  .line-chart {
    height: 108px;
  }

  .chart-dates {
    right: 8px;
    bottom: 5px;
    left: 8px;
    font-size: 5.4px;
  }

  .activity-list {
    padding: 2px 9px 7px;
  }

  .activity-item {
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: 7px;
    padding: 7px 0;
  }

  .activity-icon {
    width: 23px;
    height: 23px;
    border-radius: 7px;
  }

  .activity-icon svg {
    width: 11px;
  }

  .activity-item strong {
    font-size: 7px;
  }

  .activity-item small,
  .activity-item time {
    font-size: 5.8px;
  }

  .showcase-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .showcase-tab {
    min-width: 0;
    min-height: 64px;
    flex-direction: column;
    gap: 4px;
    padding: 9px 4px;
    font-size: 9px;
    line-height: 1.18;
    text-align: center;
  }

  .showcase-tab span {
    font-size: 8px;
  }

  .showcase-visual {
    min-height: 0;
    padding: 20px 12px;
    overflow: hidden;
  }

  .portal-window,
  .quote-window,
  .ops-window {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: 12px;
    box-shadow: 0 20px 44px rgba(7, 26, 61, .14);
    transform: none;
  }

  .portal-nav {
    height: 43px;
    gap: 9px;
    padding: 0 10px;
  }

  .portal-nav strong {
    font-size: 11px;
  }

  .portal-nav > span {
    font-size: 6px;
  }

  .portal-user {
    width: 23px;
    height: 23px;
    border-radius: 7px;
    font-size: 6px;
  }

  .portal-body {
    padding: 12px;
  }

  .portal-welcome {
    gap: 8px;
    margin-bottom: 10px;
  }

  .portal-welcome small {
    font-size: 6px;
  }

  .portal-welcome strong {
    font-size: 11px;
    line-height: 1.25;
  }

  .portal-welcome button,
  .quote-actions button,
  .ops-button {
    flex: 0 0 auto;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 6px;
  }

  .portal-stats {
    gap: 5px;
    margin-bottom: 7px;
  }

  .portal-stats > div {
    border-radius: 7px;
    padding: 7px;
  }

  .portal-stats span {
    font-size: 5.3px;
    line-height: 1.2;
  }

  .portal-stats strong {
    font-size: 11px;
  }

  .portal-order {
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 7px;
    margin-top: 6px;
    border-radius: 7px;
    padding: 8px;
  }

  .status {
    padding: 3px 4px;
    font-size: 5px;
  }

  .portal-order strong {
    font-size: 6.8px;
  }

  .portal-order small {
    font-size: 5.4px;
  }

  .portal-order > span:not(.status) {
    font-size: 6.6px;
  }

  .portal-order button {
    display: none;
  }

  .quote-window {
    padding: 12px;
  }

  .quote-header,
  .ops-header {
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 9px;
  }

  .quote-header small,
  .ops-header small {
    font-size: 5.8px;
  }

  .quote-header strong,
  .ops-header strong {
    font-size: 10px;
    line-height: 1.25;
  }

  .quote-steps {
    gap: 4px;
    margin-bottom: 10px;
  }

  .quote-steps span {
    padding: 4px 2px;
    font-size: 5px;
  }

  .quote-grid {
    gap: 6px;
  }

  .quote-field {
    gap: 3px;
  }

  .quote-field label {
    font-size: 5.2px;
  }

  .quote-field span {
    min-height: 27px;
    border-radius: 6px;
    padding: 6px;
    font-size: 5.8px;
  }

  .quote-summary {
    gap: 5px 10px;
    margin-top: 10px;
    border-radius: 8px;
    padding: 9px;
    font-size: 5.8px;
  }

  .quote-summary strong {
    font-size: 8px;
  }

  .quote-actions {
    margin-top: 8px;
  }

  .ops-window {
    padding: 11px;
  }

  .ops-header {
    margin: -11px -11px 9px;
    padding: 11px;
  }

  .ops-grid {
    gap: 6px;
  }

  .ops-card {
    border-radius: 7px;
    padding: 8px;
  }

  .ops-card span {
    font-size: 5.3px;
  }

  .ops-card strong {
    font-size: 10px;
  }

  .mini-bars {
    height: 34px;
    gap: 3px;
    margin-top: 7px;
  }

  .ops-table {
    gap: 5px;
    margin-top: 6px;
  }

  .ops-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
    padding-top: 6px;
    font-size: 5.4px;
  }

  .ops-row span:last-child {
    display: none;
  }

  .footer-top,
  .footer-brand,
  .footer-links {
    min-width: 0;
  }

  .footer-brand,
  .footer-brand img,
  .footer-links {
    width: 100%;
    max-width: 100%;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 390px) {
  .app-shell {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .app-sidebar {
    padding-inline: 5px;
  }

  .app-mark,
  .side-icon {
    width: 26px;
    height: 26px;
  }

  .app-main {
    padding: 8px;
  }

  .metric-card {
    padding: 6px;
  }

  .metric-card strong {
    font-size: 12px;
  }

  .portal-nav {
    gap: 7px;
    padding-inline: 8px;
  }

  .portal-nav > span {
    font-size: 5.5px;
  }

  .showcase-visual {
    padding-inline: 10px;
  }
}

@media (max-width: 430px) {
  .contact-email {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .contact-email-arrow {
    display: none;
  }
}

@media (max-width: 360px) {
  .footer-links {
    gap: 18px;
  }
}

/* Production lead-form states */
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-submit:disabled {
  cursor: wait;
  opacity: .72;
}

.form-error {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 17px;
  border: 1px solid #f1b7b3;
  border-radius: 11px;
  padding: 12px;
  background: #fff5f4;
}

.form-error[hidden] {
  display: none;
}

.form-error > span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #fee4e2;
  color: #b42318;
}

.form-error svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-error strong {
  color: #b42318;
  font-size: 12px;
}

.form-error p {
  color: #c4320a;
  font-size: 10px;
  line-height: 1.5;
}

.form-error a {
  color: inherit;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}
