:root {
  --ink: #f8fbff;
  --ink-2: #dff7ff;
  --graphite: #06172a;
  --steel: #13d2ff;
  --muted: #b8ecff;
  --paper: #02070f;
  --paper-2: #06142a;
  --panel: #071b33;
  --line: rgba(0, 200, 255, 0.42);
  --line-strong: rgba(0, 200, 255, 0.74);
  --red: #ff2b00;
  --copper: #ffb300;
  --yellow: #ffe100;
  --teal: #00c8ff;
  --shadow: 0 28px 76px rgba(0, 0, 0, 0.5), 0 0 34px rgba(0, 200, 255, 0.12);
  --max: 1180px;
  --header: 78px;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 200, 255, 0.38), transparent 30%),
    radial-gradient(circle at 78% 12%, rgba(255, 179, 0, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(0, 200, 255, 0.18) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(0deg, rgba(255, 179, 0, 0.13) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(180deg, #020712 0%, #06142c 48%, #020711 100%);
  font-size: 16px;
  line-height: 1.65;
}

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

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

p {
  margin: 0;
  color: var(--muted);
}

main {
  background: linear-gradient(180deg, rgba(0, 200, 255, 0.035), rgba(0, 200, 255, 0));
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  font-weight: 720;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 6.4vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: clamp(1.12rem, 1.65vw, 1.55rem);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header);
  border-bottom: 1px solid rgba(0, 200, 255, 0.42);
  background: rgba(1, 7, 18, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: var(--header);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img,
.footer-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand-text strong {
  font-size: 1.04rem;
  letter-spacing: 0.08em;
}

.brand-text span {
  color: var(--ink-2);
  font-size: 0.78rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: rgba(0, 200, 255, 0.12);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  position: relative;
  padding: 10px 12px;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 179, 0, 0.98);
  border-radius: 3px;
  background: linear-gradient(135deg, #ffb300 0%, #ff2b00 100%);
  color: #05080f;
  font-weight: 760;
  cursor: pointer;
  box-shadow: inset 0 -1px 0 rgba(255, 225, 0, 0.22);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.btn:hover {
  background: linear-gradient(135deg, #ffe100 0%, #ff4f00 100%);
  border-color: #ffe100;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 179, 0, 0.44), 0 0 26px rgba(0, 200, 255, 0.18);
}

.hero {
  position: relative;
  min-height: clamp(720px, 88vh, 900px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #01060e;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: var(--hero-image) center / cover no-repeat;
  filter: saturate(1.18) contrast(1.08);
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(1, 7, 18, 0.94) 0%, rgba(0, 23, 44, 0.76) 42%, rgba(0, 34, 64, 0.2) 100%),
    linear-gradient(0deg, rgba(1, 7, 16, 0.86) 0%, rgba(1, 12, 28, 0.16) 58%);
}

.hero-gridlines {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 200, 255, 0.22) 1px, transparent 1px) 0 0 / 120px 120px,
    linear-gradient(0deg, rgba(255, 179, 0, 0.16) 1px, transparent 1px) 0 0 / 120px 120px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.68) 54%, transparent 100%);
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 84px;
  color: #fff;
}

.hero-content {
  max-width: 980px;
}

.eyebrow,
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.page-kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero-copy {
  max-width: 760px;
  margin-top: 22px;
  color: #e7f8ff;
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn-light {
  border-color: rgba(0, 200, 255, 0.82);
  background: rgba(0, 200, 255, 0.18);
  color: #fff;
}

.btn-light:hover {
  border-color: rgba(255, 179, 0, 0.98);
  background: rgba(255, 179, 0, 0.28);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 200, 255, 0.26);
}

.btn-outline {
  background: rgba(0, 200, 255, 0.09);
  color: var(--ink);
}

.btn-outline:hover {
  color: #fff;
}

.hero-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 920px;
  margin-top: 48px;
  border: 1px solid rgba(0, 200, 255, 0.58);
  background: rgba(0, 200, 255, 0.28);
}

.hero-specs div {
  min-height: 108px;
  padding: 20px;
  background: rgba(2, 12, 28, 0.86);
  backdrop-filter: blur(12px);
}

.hero-specs strong {
  display: block;
  color: #fff;
  font-size: 1.36rem;
  line-height: 1;
}

.hero-specs span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hint-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(2, 9, 22, 0.98);
}

.hint-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hint-item {
  min-height: 118px;
  padding: 24px 22px 20px;
  border-left: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.hint-item:last-child {
  border-right: 1px solid var(--line);
}

.hint-item:hover {
  background: rgba(0, 200, 255, 0.13);
  transform: translateY(-3px);
}

.hint-item strong {
  display: block;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1;
}

.hint-item span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 68px 0;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head p {
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 44px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: #020a16;
  box-shadow: var(--shadow);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 179, 0, 0.28);
  pointer-events: none;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.12);
  transition: transform 420ms ease, filter 420ms ease;
}

.media-frame:hover img {
  transform: scale(1.045);
  filter: contrast(1.12) saturate(1.28);
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.copy-stack .eyebrow {
  margin-bottom: 0;
}

.copy-stack p {
  font-size: 1.04rem;
}

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

.product-card,
.blog-card,
.info-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(4, 31, 61, 0.98), rgba(2, 8, 20, 0.98));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.product-card {
  display: grid;
  min-height: 100%;
}

.product-card::before,
.blog-card::before,
.info-card::before,
.spec-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--copper);
  transition: height 220ms ease;
}

.product-card:hover,
.blog-card:hover,
.info-card:hover,
.spec-item:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.46), 0 0 28px rgba(0, 200, 255, 0.16);
  background: linear-gradient(180deg, rgba(5, 53, 91, 0.98), rgba(2, 18, 38, 0.98));
}

.product-card:hover::before,
.blog-card:hover::before,
.info-card:hover::before,
.spec-item:hover::before {
  height: 100%;
}

.product-card img,
.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.12);
  transition: transform 420ms ease, filter 420ms ease;
}

.product-card:hover img,
.blog-card:hover img {
  transform: scale(1.055);
  filter: contrast(1.14) saturate(1.3);
}

.product-card-body,
.blog-card-body,
.info-card {
  padding: 24px;
}

.product-card h2,
.product-card h3,
.blog-card h2,
.blog-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.22rem, 1.8vw, 1.65rem);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 19px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: rgba(0, 200, 255, 0.16);
  font-size: 0.8rem;
  font-weight: 650;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.tag:hover {
  border-color: rgba(255, 61, 0, 0.68);
  color: var(--copper);
  background: rgba(255, 179, 0, 0.15);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 800;
}

.text-link::after {
  content: ">";
  color: var(--copper);
  transition: transform 180ms ease;
}

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

.text-link:hover::after {
  transform: translateX(4px);
}

.band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 200, 255, 0.2) 1px, transparent 1px) 0 0 / 94px 94px,
    linear-gradient(0deg, rgba(255, 179, 0, 0.14) 1px, transparent 1px) 0 0 / 94px 94px,
    linear-gradient(135deg, #020817 0%, #082a48 100%);
  color: #fff;
}

.band p {
  color: #c8f1ff;
}

.band .eyebrow,
.band .page-kicker {
  color: var(--yellow);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(0, 200, 255, 0.44);
  background: rgba(0, 200, 255, 0.28);
}

.capability {
  min-height: 196px;
  padding: 26px;
  background: rgba(2, 15, 34, 0.96);
  transition: background 220ms ease, transform 220ms ease;
}

.capability:hover {
  background: rgba(0, 58, 100, 0.98);
  transform: translateY(-4px);
}

.capability span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability h3 {
  margin-bottom: 12px;
  font-size: 1.13rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(2, 11, 27, 0.98);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42), 0 0 24px rgba(0, 200, 255, 0.12);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(0, 200, 255, 0.34);
  color: var(--ink);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

tr:hover td {
  background: rgba(0, 200, 255, 0.12);
  color: var(--ink-2);
}

tr:last-child td {
  border-bottom: 0;
}

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

.spec-item {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(0, 200, 255, 0.09);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.spec-item strong {
  display: block;
  margin-bottom: 7px;
}

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

.process li {
  min-height: 160px;
  padding: 22px;
  border-top: 3px solid var(--red);
  background: rgba(2, 15, 34, 0.94);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.process li:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34), 0 0 22px rgba(255, 179, 0, 0.14);
}

.process span {
  display: block;
  color: var(--copper);
  font-weight: 850;
}

.process strong {
  display: block;
  margin: 10px 0 8px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 62px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 179, 0, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(0, 200, 255, 0.2) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(0deg, rgba(255, 179, 0, 0.13) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(135deg, #03122a 0%, #020711 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(44vw, 520px);
  height: 4px;
  background: var(--copper);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.5fr);
  gap: 46px;
  align-items: end;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 5.3vw, 5.8rem);
}

.page-hero p {
  font-size: 1.08rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 32px;
  align-items: start;
}

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

.contact-list a,
.contact-list span {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(2, 15, 34, 0.94);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-list a:hover {
  border-color: var(--copper);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36), 0 0 22px rgba(255, 179, 0, 0.15);
}

.contact-list small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-box {
  border: 1px solid var(--line);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(4, 31, 61, 0.98), rgba(2, 8, 20, 0.98));
  padding: 26px;
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: rgba(0, 200, 255, 0.09);
  color: var(--ink);
  padding: 12px 13px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:hover,
textarea:hover,
select:hover {
  background: rgba(0, 200, 255, 0.14);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(255, 179, 0, 0.42);
  border-color: var(--copper);
  background: rgba(255, 179, 0, 0.1);
}

.article-hero-img {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.article-hero-img img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
}

.article-body {
  width: min(840px, calc(100% - 32px));
  margin: 56px auto 0;
}

.article-body h2,
.article-body h3 {
  margin-top: 38px;
  margin-bottom: 14px;
}

.article-body p {
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.article-body img {
  margin: 30px 0;
  border-radius: 3px;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding-left: 20px;
  list-style: disc;
  color: var(--muted);
}

.cta-band {
  padding: 58px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 200, 255, 0.26), transparent 28%),
    linear-gradient(90deg, rgba(0, 200, 255, 0.2) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(0deg, rgba(255, 179, 0, 0.12) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(135deg, #03122a 0%, #020711 100%);
}

.cta-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner p {
  max-width: 650px;
  margin-top: 10px;
}

.site-footer {
  padding: 52px 0 30px;
  background:
    linear-gradient(90deg, rgba(0, 200, 255, 0.14) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(0deg, rgba(255, 179, 0, 0.08) 1px, transparent 1px) 0 0 / 96px 96px,
    #020711;
  color: #fff;
}

.footer-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(270px, 1fr) repeat(3, minmax(150px, 0.5fr));
  gap: 30px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  color: #b8ecff;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-col h3 {
  margin-bottom: 12px;
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 32px));
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 200, 255, 0.28);
  color: #8bdfff;
  font-size: 0.88rem;
}

.notice {
  padding: 16px 18px;
  border-left: 4px solid var(--copper);
  background: rgba(2, 15, 34, 0.94);
  color: var(--muted);
}

.success-box {
  width: min(720px, calc(100% - 32px));
  margin: 90px auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(4, 31, 61, 0.98), rgba(2, 8, 20, 0.98));
  text-align: center;
  box-shadow: var(--shadow);
}

.success-box h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.success-box p {
  max-width: 560px;
  margin: 18px auto 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 920px) {
  .nav {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }

  .nav-links a::after {
    left: 0;
    right: auto;
    width: 44px;
  }

  .nav-cta {
    width: 100%;
  }

  .section-head,
  .split,
  .split.reverse,
  .page-hero-grid,
  .contact-panel,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hint-grid,
  .hero-specs,
  .product-grid,
  .blog-grid,
  .capability-grid,
  .process,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    display: grid;
  }
}

@media (max-width: 620px) {
  :root {
    --header: 68px;
  }

  h1 {
    font-size: clamp(2.48rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(1.82rem, 9vw, 3rem);
  }

  .brand-text span {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .hero-inner {
    padding: 76px 0 42px;
  }

  .hint-grid,
  .hero-specs,
  .product-grid,
  .blog-grid,
  .capability-grid,
  .process,
  .spec-list,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hint-item,
  .hint-item:last-child {
    border-right: 1px solid var(--line);
  }

  .section {
    padding: 68px 0;
  }

  .page-hero {
    padding: 58px 0 48px;
  }

  .media-frame img {
    min-height: 250px;
  }

  .product-card-body,
  .blog-card-body,
  .info-card,
  .form-box {
    padding: 20px;
  }
}

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

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

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