:root {
  --petrol: #124d63;
  --petrol-dark: #082f40;
  --petrol-deep: #062633;
  --orange: #f26a2e;
  --orange-dark: #d9571d;
  --ice: #f5f9fa;
  --ice-strong: #eaf2f4;
  --line: #d8e4e8;
  --text: #0c3040;
  --muted: #526774;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(12, 48, 64, 0.13);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  cursor: pointer;
}

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

.container {
  width: min(1344px, calc(100% - 96px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: minmax(340px, 1fr) auto minmax(210px, 0.58fr);
  align-items: center;
  min-height: 88px;
  padding: 0 48px;
  border-bottom: 1px solid rgba(216, 228, 232, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 14px;
}

.brand__mark {
  position: relative;
  display: block;
  overflow: hidden;
  width: 92px;
  height: 50px;
  flex: 0 0 92px;
}

.brand__mark img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 134px;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand__text strong {
  font-size: 15px;
  font-weight: 780;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.brand__text small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-header nav a {
  position: relative;
  color: #264858;
  font-size: 14px;
  font-weight: 590;
  white-space: nowrap;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  transition: transform 180ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.header-contact span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.header-contact a {
  color: var(--petrol);
  font-size: 17px;
  font-weight: 760;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(245, 249, 250, 0.98), rgba(255, 255, 255, 0.98) 53%, rgba(247, 250, 251, 0.96)),
    radial-gradient(circle at 76% 45%, rgba(18, 77, 99, 0.09), transparent 34%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.44;
  background-image:
    linear-gradient(rgba(18, 77, 99, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 77, 99, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(90deg, transparent, black 45%, black 100%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(560px, 1fr);
  align-items: center;
  min-height: 710px;
  padding: 68px 0 76px;
  gap: 46px;
}

.hero__copy {
  position: relative;
  z-index: 3;
  padding: 16px 0 30px;
  animation: fadeUp 430ms ease both;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  padding: 11px 15px;
  gap: 10px;
  border: 1px solid rgba(18, 77, 99, 0.48);
  border-radius: 8px;
  color: var(--petrol);
  background: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.live-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(242, 106, 46, 0.1);
  animation: pulse 2.4s ease-in-out infinite;
}

.live-dot--teal {
  background: #0b9a80;
  box-shadow: 0 0 0 6px rgba(11, 154, 128, 0.1);
}

.hero h1 {
  max-width: 690px;
  margin: 29px 0 24px;
  font-size: clamp(46px, 3.7vw, 56px);
  font-weight: 790;
  letter-spacing: -0.045em;
  line-height: 1.055;
}

.hero__lead {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  align-items: center;
  margin-top: 31px;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 720;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button--primary {
  border-color: rgba(132, 47, 0, 0.28);
  color: #081f29;
  background: linear-gradient(135deg, #ff9b2f 0%, #ff6a00 52%, #ff4b00 100%);
  box-shadow:
    0 14px 32px rgba(255, 83, 0, 0.34),
    0 3px 0 rgba(124, 42, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  font-weight: 780;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: linear-gradient(135deg, #ffac48 0%, #ff790d 48%, #ff5105 100%);
  box-shadow:
    0 18px 38px rgba(255, 83, 0, 0.45),
    0 3px 0 rgba(124, 42, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  transform: translateY(-2px) scale(1.015);
}

.button--ghost {
  border-color: rgba(18, 77, 99, 0.56);
  color: var(--petrol);
  background: rgba(255, 255, 255, 0.62);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: var(--ice-strong);
}

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

.hero__microproof {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 11px 0;
}

.hero__microproof span {
  color: #264c5c;
  font-size: 12px;
  font-weight: 610;
}

.hero__microproof span + span {
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid #bccdd3;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
  animation: fadeIn 620ms 90ms ease both;
}

.product-shot {
  position: relative;
  z-index: 2;
  width: min(590px, 91%);
  margin: 0 0 10px 74px;
}

.product-shot::before {
  position: absolute;
  z-index: -1;
  inset: 9% 1% 10% 6%;
  content: "";
  border-radius: 50%;
  background: rgba(18, 77, 99, 0.09);
  filter: blur(34px);
}

.product-shot img {
  width: 100%;
  max-height: 565px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 28px 28px rgba(6, 38, 51, 0.15));
}

.product-shot figcaption {
  position: absolute;
  right: 2%;
  bottom: 1%;
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #335563;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 10px 24px rgba(12, 48, 64, 0.08);
  font-size: 11px;
  font-weight: 630;
  backdrop-filter: blur(10px);
}

.blueprint {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(18, 77, 99, 0.13);
  border-radius: 50%;
}

.blueprint::before,
.blueprint::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: rgba(18, 77, 99, 0.09);
  transform: translate(-50%, -50%);
}

.blueprint::before {
  width: 124%;
  height: 1px;
}

.blueprint::after {
  width: 1px;
  height: 124%;
}

.blueprint--one {
  width: 550px;
  height: 550px;
}

.blueprint--two {
  width: 420px;
  height: 420px;
  border-style: dashed;
}

.urgency-card {
  position: absolute;
  z-index: 5;
  bottom: -27px;
  left: -5px;
  width: 292px;
  padding: 18px;
  border: 1px solid rgba(18, 77, 99, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.urgency-card__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.urgency-card__top span {
  max-width: 124px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;
  text-transform: uppercase;
}

.urgency-card__top strong {
  color: var(--petrol);
  font-size: 26px;
  letter-spacing: -0.04em;
}

.urgency-card__rule {
  height: 1px;
  margin: 15px 0 13px;
  background: var(--line);
}

.urgency-card > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 11px;
}

.urgency-card > button {
  width: 100%;
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(132, 47, 0, 0.28);
  border-radius: 7px;
  color: #081f29;
  background: linear-gradient(135deg, #ff9b2f, #ff5a00);
  box-shadow: 0 10px 23px rgba(255, 83, 0, 0.3);
  font-size: 11px;
  font-weight: 780;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.urgency-card > button:hover,
.urgency-card > button:focus-visible {
  background: linear-gradient(135deg, #ffad4a, #ff6708);
  box-shadow: 0 14px 28px rgba(255, 83, 0, 0.4);
  transform: translateY(-2px);
}

.countdown {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.countdown > b {
  padding-top: 2px;
  color: #8fa7b0;
  font-size: 20px;
}

.countdown__cell {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.countdown__cell strong {
  min-width: 48px;
  color: var(--text);
  font-size: 25px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  line-height: 1;
}

.countdown__cell span {
  color: #78919b;
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.proof-strip {
  border-top: 1px solid rgba(216, 228, 232, 0.8);
  border-bottom: 1px solid rgba(216, 228, 232, 0.9);
  background: #edf4f6;
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 118px;
}

.proof-strip__grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 30px;
  gap: 6px;
}

.proof-strip__grid > div + div {
  border-left: 1px solid #cbdce1;
}

.proof-strip__grid strong {
  color: var(--petrol);
  font-size: 27px;
  letter-spacing: -0.035em;
}

.proof-strip__grid span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 110px 0;
}

.section--intro {
  background: var(--white);
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 90px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 17px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading h2,
.action-copy h2,
.company-story h2,
.faq-intro h2,
.final-cta h2,
.fast-order h2 {
  margin: 0;
  font-size: clamp(37px, 3.4vw, 52px);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.section-heading > p,
.section-heading--split > p,
.section-heading--center > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-card {
  min-height: 285px;
  padding: 34px 36px 38px;
  background: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.capability-card + .capability-card {
  border-left: 1px solid var(--line);
}

.capability-card:hover {
  z-index: 2;
  background: var(--ice);
  transform: translateY(-3px);
}

.capability-card > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.capability-card h3 {
  max-width: 290px;
  margin: 63px 0 16px;
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.product-in-action {
  padding-top: 28px;
  background: var(--white);
}

.product-in-action__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  overflow: hidden;
  min-height: 640px;
  border-radius: 18px;
  background: var(--petrol-deep);
  box-shadow: 0 28px 70px rgba(6, 38, 51, 0.16);
}

.action-photo {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.action-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(4, 29, 39, 0.84));
}

.action-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.action-photo__label {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 34px;
  left: 38px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--white);
}

.action-photo__label span {
  color: #b5ced6;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.action-photo__label strong {
  max-width: 480px;
  font-size: 18px;
  line-height: 1.45;
}

.action-copy {
  padding: 70px 66px;
  color: var(--white);
}

.action-copy h2 {
  font-size: clamp(34px, 3vw, 47px);
}

.check-list {
  display: grid;
  margin: 45px 0 32px;
  padding: 0;
  list-style: none;
  gap: 23px;
}

.check-list li {
  display: grid;
  padding-left: 23px;
  border-left: 2px solid var(--orange);
  gap: 7px;
}

.check-list strong {
  font-size: 15px;
}

.check-list span {
  color: #b9cbd2;
  font-size: 13px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 21px;
  gap: 16px;
  border: 1px solid rgba(255, 181, 99, 0.82);
  border-radius: 8px;
  color: #081f29;
  background: linear-gradient(135deg, #ff9b2f, #ff5900);
  box-shadow: 0 14px 30px rgba(255, 83, 0, 0.3);
  font-size: 13px;
  font-weight: 780;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.text-link:hover,
.text-link:focus-visible {
  background: linear-gradient(135deg, #ffad4a, #ff6908);
  box-shadow: 0 18px 36px rgba(255, 83, 0, 0.42);
  transform: translateY(-2px);
}

.specs-section {
  background: var(--ice);
}

.section-heading--center {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.section-heading--center > p {
  max-width: 700px;
  margin: 22px auto 0;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border: 1px solid #d0e0e5;
  border-radius: 14px;
  background: var(--white);
}

.spec-grid article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
  padding: 25px 28px;
  gap: 11px;
}

.spec-grid article + article {
  border-left: 1px solid #d0e0e5;
}

.spec-grid strong {
  color: var(--petrol);
  font-size: 24px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.spec-grid span {
  color: var(--muted);
  font-size: 12px;
}

.engineering-note {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
  gap: 18px;
}

.engineering-note > div {
  padding: 30px;
  border: 1px solid rgba(18, 77, 99, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
}

.engineering-note > div > span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 760;
}

.engineering-note h3 {
  margin: 34px 0 10px;
  font-size: 19px;
}

.engineering-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.industries-section {
  background: var(--white);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 54px;
  gap: 16px;
}

.industry-card {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfdfd;
}

.industry-card::after {
  position: absolute;
  right: -24px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  content: "";
  border: 1px solid rgba(18, 77, 99, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(18, 77, 99, 0.025), 0 0 0 48px rgba(18, 77, 99, 0.018);
}

.industry-card--1,
.industry-card--2,
.industry-card--3 {
  grid-column: span 2;
}

.industry-card--4,
.industry-card--5 {
  grid-column: span 3;
  min-height: 220px;
}

.industry-card > span {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.industry-card h3 {
  max-width: 320px;
  margin: 67px 0 13px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.industry-card--4 h3,
.industry-card--5 h3 {
  margin-top: 46px;
}

.industry-card p {
  position: relative;
  z-index: 2;
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.fast-order {
  padding: 26px 0 110px;
}

.fast-order__shell {
  position: relative;
  overflow: hidden;
  padding: 72px;
  border-radius: 18px;
  color: var(--white);
  background: var(--petrol);
}

.fast-order__shell::after {
  position: absolute;
  top: -220px;
  right: -170px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(255, 255, 255, 0.025), 0 0 0 104px rgba(255, 255, 255, 0.018);
}

.fast-order__heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 40px;
}

.eyebrow--light {
  color: #f7a37b;
}

.fast-order h2 {
  max-width: 790px;
}

.order-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 58px 0 42px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
  list-style: none;
}

.order-steps li {
  padding: 31px 32px 5px 0;
}

.order-steps li + li {
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.order-steps > li > span {
  display: inline-block;
  margin-bottom: 48px;
  color: #f7a37b;
  font-size: 11px;
  font-weight: 750;
}

.order-steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
}

.order-steps p {
  max-width: 340px;
  margin: 0;
  color: #c4d4d9;
  font-size: 13px;
  line-height: 1.6;
}

.button--light {
  position: relative;
  z-index: 2;
  border-color: rgba(255, 181, 99, 0.82);
  color: #081f29;
  background: linear-gradient(135deg, #ff9b2f, #ff5900);
  box-shadow: 0 15px 34px rgba(255, 83, 0, 0.38);
  font-weight: 780;
}

.button--light:hover,
.button--light:focus-visible {
  background: linear-gradient(135deg, #ffad4a, #ff6908);
  box-shadow: 0 19px 40px rgba(255, 83, 0, 0.48);
  transform: translateY(-2px) scale(1.015);
}

.company-section {
  background: var(--white);
}

.company-section__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  gap: 90px;
}

.company-story > p {
  max-width: 740px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.client-proof {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.client-proof > span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.client-proof > div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.client-proof strong {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--petrol);
  background: var(--ice);
  font-size: 13px;
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--ice);
}

.company-facts > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 170px;
  padding: 27px;
  gap: 8px;
}

.company-facts > div:nth-child(even) {
  border-left: 1px solid var(--line);
}

.company-facts > div:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.company-facts strong {
  color: var(--petrol);
  font-size: 27px;
  letter-spacing: -0.04em;
}

.company-facts span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

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

.faq-section__grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: start;
  gap: 90px;
}

.faq-intro p {
  max-width: 420px;
  margin: 23px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.faq-max-button {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 21px;
  gap: 14px;
  border: 1px solid rgba(19, 71, 183, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #1688ff 0%, #2667ff 48%, #6f42e9 100%);
  box-shadow:
    0 15px 34px rgba(38, 103, 255, 0.32),
    0 3px 0 rgba(26, 58, 148, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  font-size: 13px;
  font-weight: 780;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.faq-max-button span {
  font-size: 17px;
  transition: transform 180ms ease;
}

.faq-max-button:hover,
.faq-max-button:focus-visible {
  box-shadow:
    0 19px 40px rgba(38, 103, 255, 0.44),
    0 3px 0 rgba(26, 58, 148, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
  filter: saturate(1.14) brightness(1.05);
  transform: translateY(-2px) scale(1.015);
}

.faq-max-button:hover span,
.faq-max-button:focus-visible span {
  transform: translateX(4px);
}

.faq-list article {
  border-bottom: 1px solid #cbdce1;
}

.faq-list article:first-child {
  border-top: 1px solid #cbdce1;
}

.faq-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 86px;
  padding: 21px 0;
  gap: 30px;
  border: 0;
  color: var(--text);
  background: transparent;
  text-align: left;
}

.faq-list button span {
  font-size: 16px;
  font-weight: 660;
}

.faq-list button b {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid #b9cdd3;
  border-radius: 50%;
  color: var(--petrol);
  font-size: 20px;
  font-weight: 400;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 240ms ease, opacity 240ms ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.faq-list article.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 25px;
  opacity: 1;
}

.final-cta {
  padding: 92px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(31, 114, 143, 0.42), transparent 28%),
    var(--petrol-deep);
}

.final-cta__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 100px;
}

.stock-badge--dark {
  border-color: rgba(255, 255, 255, 0.3);
  color: #dce9ec;
  background: rgba(255, 255, 255, 0.06);
}

.final-cta h2 {
  max-width: 850px;
  margin-top: 25px;
}

.final-cta__grid > div > p {
  max-width: 710px;
  margin: 23px 0 0;
  color: #b9ccd3;
  font-size: 15px;
  line-height: 1.65;
}

.final-cta__panel {
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.final-cta__panel > span {
  display: block;
  margin-bottom: 12px;
  color: #b9ccd3;
  font-size: 11px;
  text-transform: uppercase;
}

.final-cta__panel .countdown {
  margin-bottom: 22px;
}

.final-cta__panel .countdown__cell strong {
  color: var(--white);
  font-size: 32px;
}

.final-cta__panel .countdown > b {
  color: #7695a1;
  font-size: 25px;
}

.final-cta__panel > a {
  display: block;
  margin-top: 15px;
  color: #d8e6e9;
  font-size: 12px;
  text-align: center;
}

footer {
  padding: 38px 0 108px;
  color: #c6d5da;
  background: #031c25;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 60px;
}

.footer__grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__grid strong {
  color: var(--white);
  font-size: 13px;
}

.footer__grid span,
.footer__grid a {
  font-size: 12px;
  line-height: 1.5;
}

.footer-link-button {
  width: fit-content;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
}

.footer__grid a:hover,
.footer__grid a:focus-visible,
.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: var(--white);
}

.stock-bar {
  position: fixed;
  z-index: 45;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 980px;
  min-height: 58px;
  margin: 0 auto;
  padding: 8px 9px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--white);
  background: rgba(6, 38, 51, 0.94);
  box-shadow: 0 18px 45px rgba(3, 28, 37, 0.28);
  backdrop-filter: blur(18px);
}

.stock-bar > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.stock-bar strong {
  font-size: 12px;
}

.stock-bar__desktop {
  margin-left: 7px;
  color: #9eb6be;
  font-size: 10px;
  text-transform: uppercase;
}

.countdown--compact {
  align-items: center;
  gap: 4px;
}

.countdown--compact .countdown__cell strong {
  min-width: 24px;
  color: var(--white);
  font-size: 15px;
}

.countdown--compact > b {
  padding: 0;
  color: #7596a2;
  font-size: 14px;
}

.stock-bar > button {
  min-height: 41px;
  padding: 0 21px;
  border: 1px solid rgba(255, 181, 99, 0.82);
  border-radius: 7px;
  color: #081f29;
  background: linear-gradient(135deg, #ff9b2f, #ff5900);
  box-shadow: 0 10px 24px rgba(255, 83, 0, 0.35);
  font-size: 12px;
  font-weight: 780;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.stock-bar > button:hover,
.stock-bar > button:focus-visible {
  background: linear-gradient(135deg, #ffad4a, #ff6908);
  box-shadow: 0 14px 28px rgba(255, 83, 0, 0.46);
  transform: translateY(-2px);
}

.modal-lock {
  overflow: hidden;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  overflow-y: auto;
  padding: 36px 18px;
  place-items: center;
  background: rgba(3, 28, 37, 0.73);
  backdrop-filter: blur(7px);
  animation: fadeIn 180ms ease both;
}

.modal__dialog {
  position: relative;
  width: min(570px, 100%);
  padding: 38px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(3, 28, 37, 0.33);
  animation: fadeUp 250ms ease both;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--petrol);
  background: var(--white);
  font-size: 24px;
  line-height: 1;
}

.modal__heading > span {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.modal__heading h2 {
  max-width: 470px;
  margin: 14px 0 13px;
  font-size: 31px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.modal__heading p {
  max-width: 470px;
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.modal form {
  display: grid;
  gap: 14px;
}

.modal form > label:not(.consent) {
  display: grid;
  gap: 7px;
  color: #284c5b;
  font-size: 11px;
  font-weight: 660;
}

.modal label b {
  color: var(--orange);
}

.modal input,
.modal select,
.modal textarea {
  width: 100%;
  border: 1px solid #c8d9df;
  border-radius: 7px;
  outline: none;
  color: var(--text);
  background: #fbfdfd;
  font-size: 14px;
}

.modal input,
.modal select {
  height: 48px;
  padding: 0 13px;
}

.modal textarea {
  padding: 12px 13px;
  resize: vertical;
}

.modal input:focus,
.modal select:focus,
.modal textarea:focus {
  border-color: var(--petrol);
  box-shadow: 0 0 0 3px rgba(18, 77, 99, 0.09);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  accent-color: var(--petrol);
}

.modal form > small {
  color: #80969e;
  font-size: 9px;
  text-align: center;
}

.modal__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 35px 10px 13px;
  text-align: center;
}

.modal__success > span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #0b9a80;
  font-size: 28px;
}

.modal__success h2 {
  margin: 23px 0 11px;
  font-size: 30px;
}

.modal__success p {
  max-width: 420px;
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 30px;
  }

  .site-header nav {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 0.98fr 1.02fr;
  }

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

  .urgency-card {
    left: -20px;
  }

  .action-copy {
    padding: 54px 44px;
  }

  .company-section__grid,
  .faq-section__grid {
    gap: 54px;
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 44px, 760px);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    padding-top: 58px;
    gap: 26px;
  }

  .hero__copy {
    max-width: 740px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(46px, 7vw, 62px);
  }

  .hero__visual {
    min-height: 620px;
  }

  .product-shot {
    width: min(620px, 92%);
    margin-left: 90px;
  }

  .urgency-card {
    bottom: 5px;
    left: 0;
  }

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

  .proof-strip__grid > div:nth-child(3) {
    border-left: 0;
  }

  .proof-strip__grid > div:nth-child(n + 3) {
    border-top: 1px solid #cbdce1;
  }

  .section-heading--split,
  .product-in-action__grid,
  .company-section__grid,
  .faq-section__grid,
  .final-cta__grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 24px;
  }

  .section-heading--split > p {
    max-width: 680px;
  }

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

  .capability-card {
    min-height: 235px;
  }

  .capability-card + .capability-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .capability-card h3 {
    margin-top: 42px;
  }

  .product-in-action__grid {
    max-width: 760px;
  }

  .action-photo {
    min-height: 520px;
  }

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

  .spec-grid article:nth-child(3) {
    border-left: 0;
  }

  .spec-grid article:nth-child(n + 3) {
    border-top: 1px solid #d0e0e5;
  }

  .engineering-note,
  .order-steps {
    grid-template-columns: 1fr;
  }

  .engineering-note > div {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 16px;
  }

  .engineering-note h3 {
    margin: 0 0 9px;
  }

  .engineering-note p {
    grid-column: 2;
  }

  .industry-card--1,
  .industry-card--2,
  .industry-card--3,
  .industry-card--4,
  .industry-card--5 {
    grid-column: span 3;
  }

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

  .order-steps {
    gap: 0;
  }

  .order-steps li,
  .order-steps li + li {
    display: grid;
    grid-template-columns: 70px 1fr;
    padding: 25px 0;
    border-left: 0;
  }

  .order-steps li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
  }

  .order-steps > li > span {
    margin: 0;
  }

  .final-cta__grid,
  .faq-section__grid {
    gap: 44px;
  }

  .final-cta__panel {
    max-width: 430px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 74px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .site-header {
    min-height: 72px;
    padding: 0 16px;
  }

  .brand {
    gap: 8px;
  }

  .brand__mark {
    width: 58px;
    height: 36px;
    flex-basis: 58px;
  }

  .brand__mark img {
    width: 84px;
  }

  .brand__text strong {
    font-size: 11px;
  }

  .brand__text small,
  .header-contact span {
    display: none;
  }

  .header-contact a {
    font-size: 0;
  }

  .header-contact a::after {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    content: "☎";
    color: var(--petrol);
    font-size: 17px;
  }

  .hero__grid {
    padding: 39px 0 53px;
  }

  .stock-badge {
    padding: 9px 10px;
    font-size: 9px;
  }

  .hero h1 {
    margin-top: 23px;
    font-size: 39px;
    line-height: 1.06;
  }

  .hero__lead {
    font-size: 15px;
    line-height: 1.55;
  }

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

  .button {
    width: 100%;
  }

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

  .hero__microproof span + span {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .hero__visual {
    min-height: 520px;
  }

  .blueprint--one {
    width: 390px;
    height: 390px;
  }

  .blueprint--two {
    width: 300px;
    height: 300px;
  }

  .product-shot {
    width: 104%;
    margin: -48px -8px 0 24px;
  }

  .product-shot figcaption {
    right: 3%;
    bottom: 6%;
    font-size: 9px;
  }

  .urgency-card {
    right: 0;
    bottom: -2px;
    left: 0;
    width: 100%;
  }

  .urgency-card__top strong {
    font-size: 23px;
  }

  .section {
    padding: 78px 0;
  }

  .proof-strip__grid > div {
    min-height: 112px;
    padding: 20px 16px;
  }

  .proof-strip__grid strong {
    font-size: 22px;
  }

  .proof-strip__grid span {
    font-size: 10px;
    line-height: 1.35;
  }

  .section-heading h2,
  .action-copy h2,
  .company-story h2,
  .faq-intro h2,
  .final-cta h2,
  .fast-order h2 {
    font-size: 34px;
  }

  .capability-grid {
    margin-top: 36px;
  }

  .capability-card {
    min-height: 230px;
    padding: 28px 25px;
  }

  .product-in-action {
    padding-top: 5px;
  }

  .product-in-action__grid {
    width: calc(100% - 24px);
    border-radius: 14px;
  }

  .action-photo {
    min-height: 420px;
  }

  .action-photo__label {
    right: 24px;
    bottom: 23px;
    left: 24px;
  }

  .action-copy {
    padding: 43px 26px 48px;
  }

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

  .spec-grid article + article,
  .spec-grid article:nth-child(3) {
    border-top: 1px solid #d0e0e5;
    border-left: 0;
  }

  .spec-grid article {
    min-height: 125px;
  }

  .engineering-note > div {
    display: block;
  }

  .engineering-note h3 {
    margin-top: 24px;
  }

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

  .industry-card--1,
  .industry-card--2,
  .industry-card--3,
  .industry-card--4,
  .industry-card--5 {
    grid-column: auto;
    min-height: 230px;
  }

  .fast-order {
    padding: 2px 0 78px;
  }

  .fast-order__shell {
    width: calc(100% - 24px);
    padding: 48px 25px;
  }

  .order-steps li,
  .order-steps li + li {
    grid-template-columns: 44px 1fr;
  }

  .company-facts {
    grid-template-columns: 1fr;
  }

  .company-facts > div:nth-child(even) {
    border-left: 0;
  }

  .company-facts > div + div {
    border-top: 1px solid var(--line);
  }

  .client-proof > div {
    display: grid;
  }

  .final-cta {
    padding: 75px 0;
  }

  .final-cta__panel {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .stock-bar {
    right: 9px;
    bottom: 8px;
    left: 9px;
    min-height: 58px;
    padding-left: 13px;
  }

  .stock-bar strong {
    max-width: 128px;
    font-size: 10px;
    line-height: 1.25;
  }

  .stock-bar__desktop,
  .stock-bar .live-dot {
    display: none;
  }

  .stock-bar > div {
    gap: 7px;
  }

  .stock-bar > button {
    padding: 0 14px;
  }

  .modal {
    align-items: start;
    padding: 12px;
  }

  .modal__dialog {
    padding: 32px 20px 24px;
  }

  .modal__heading h2 {
    padding-right: 25px;
    font-size: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
