:root {
  color-scheme: dark;
  --ink: #eef6ff;
  --muted: #a8b4c2;
  --muted-2: #788697;
  --line: rgba(174, 202, 231, 0.18);
  --line-strong: rgba(89, 177, 255, 0.42);
  --panel: rgba(13, 21, 30, 0.82);
  --panel-2: rgba(18, 29, 41, 0.78);
  --graphite: #060b10;
  --graphite-2: #0c141d;
  --steel: #93a4b8;
  --blue: #006cff;
  --cyan: #18d2ff;
  --amber: #ffb638;
  --green: #63ffbf;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
  --radius: 6px;
  --max: 1200px;
  --slant: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px) 0 0 / 44px 44px,
    radial-gradient(circle at 20% 0%, rgba(0,108,255,0.26), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(255,182,56,0.12), transparent 28%),
    var(--graphite);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,0.035) 42% 43%, transparent 43% 100%),
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 26%, rgba(0,0,0,0.35));
}

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

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

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 10, 16, 0.84);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 146px;
}

.brand-mark {
  display: inline-flex;
  width: 50px;
  height: 50px;
  overflow: hidden;
  align-items: center;
  flex: 0 0 auto;
}

.brand-mark img {
  width: auto;
  max-width: none;
  height: 50px;
  filter: drop-shadow(0 8px 18px rgba(24, 210, 255, 0.22));
}

.brand-word {
  color: #4da0ff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  color: rgba(238, 246, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--cyan);
  transition: transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
  border-color: rgba(24, 210, 255, 0.22);
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  color: #06101b;
  border-color: rgba(24, 210, 255, 0.42);
  background: linear-gradient(135deg, var(--cyan), #4f8dff);
  box-shadow: 0 14px 32px rgba(0, 108, 255, 0.24);
}

.nav-cta:hover {
  color: #06101b;
  background: linear-gradient(135deg, #70e7ff, #66a2ff);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--graphite);
}

.hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 8, 13, 0.94) 0%, rgba(4, 8, 13, 0.8) 42%, rgba(4, 8, 13, 0.32) 100%),
    linear-gradient(180deg, rgba(4, 8, 13, 0.06), rgba(4, 8, 13, 0.92));
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(24, 210, 255, 0.38), transparent 28%, rgba(255, 182, 56, 0.18) 72%, transparent),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 120px);
  opacity: 0.42;
  clip-path: polygon(0 34%, 100% 0, 100% 100%, 0 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(0.9) contrast(1.1);
}

.hero-inner,
.page-hero .container {
  position: relative;
  z-index: 3;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.hero-inner {
  padding: 86px 0 116px;
}

.page-hero {
  padding: 106px 0 82px;
}

.page-hero::before {
  background:
    linear-gradient(105deg, rgba(4, 8, 13, 0.97), rgba(11, 20, 31, 0.94)),
    radial-gradient(circle at 20% 0%, rgba(0, 108, 255, 0.26), transparent 34%);
}

.page-hero p {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(238, 246, 255, 0.74);
  font-size: 18px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #89e8ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 22px;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(44px, 7.2vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero h1::after,
.page-hero h1::after {
  content: "";
  display: block;
  width: min(220px, 42vw);
  height: 4px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--cyan), var(--amber), transparent);
}

.page-hero h1 {
  font-size: clamp(38px, 5.6vw, 72px);
  max-width: 980px;
}

.hero-copy {
  max-width: 670px;
  margin-top: 28px;
  color: rgba(238, 246, 255, 0.76);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%) skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: transform 0.55s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 210, 255, 0.58);
  box-shadow: 0 18px 42px rgba(0, 108, 255, 0.22);
}

.button:hover::before {
  transform: translateX(110%) skewX(-22deg);
}

.button.primary,
.button.dark {
  color: #06101b;
  background: linear-gradient(135deg, var(--cyan), #3f8cff);
  border-color: rgba(24, 210, 255, 0.42);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-metrics {
  width: min(100% - 40px, var(--max));
  margin: -62px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  clip-path: var(--slant);
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(9, 19, 29, 0.98), rgba(18, 31, 43, 0.92));
  box-shadow: var(--shadow);
}

.metric {
  min-height: 132px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: #fff;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

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

.section.alt {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)),
    rgba(12, 20, 29, 0.74);
}

.section.dark {
  background:
    linear-gradient(135deg, rgba(0, 108, 255, 0.12), transparent 36%),
    linear-gradient(180deg, #071018, #0b141d);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.52fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.section h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-intro,
.muted {
  color: var(--muted);
  font-size: 17px;
}

.feature-grid,
.spec-grid,
.product-grid,
.post-grid,
.process,
.timeline {
  display: grid;
  gap: 18px;
}

.feature-grid,
.process {
  grid-template-columns: repeat(4, 1fr);
}

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

.product-grid,
.post-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.feature-card,
.product-card,
.post-card,
.contact-panel,
.spec-card,
.capability,
.process-step,
.sidebar-box {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  clip-path: var(--slant);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    var(--panel);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.feature-card::after,
.product-card::after,
.post-card::after,
.spec-card::after,
.capability::after,
.process-step::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan));
  opacity: 0.8;
}

.feature-card::before,
.product-card::before,
.post-card::before,
.spec-card::before,
.capability::before,
.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 34%, rgba(24, 210, 255, 0.14) 45%, transparent 56% 100%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.feature-card:hover,
.product-card:hover,
.post-card:hover,
.spec-card:hover,
.capability:hover,
.process-step:hover {
  transform: translateY(-7px);
  border-color: rgba(24, 210, 255, 0.5);
  box-shadow: 0 28px 70px rgba(0, 108, 255, 0.16);
}

.feature-card:hover::before,
.product-card:hover::before,
.post-card:hover::before,
.spec-card:hover::before,
.capability:hover::before,
.process-step:hover::before {
  transform: translateX(120%);
}

.feature-card,
.spec-card,
.capability {
  min-height: 230px;
  padding: 24px;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  margin-bottom: 34px;
  color: #06101b;
  background: var(--cyan);
  font-weight: 900;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.feature-card h3,
.product-card h2,
.product-card h3,
.post-card h2,
.post-card h3,
.spec-card h3,
.capability h3,
.process-step h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.22;
}

.feature-card p,
.product-card p,
.post-card p,
.spec-card p,
.capability p,
.process-step p {
  margin-top: 12px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  clip-path: var(--slant);
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.media-frame:hover img,
.product-card:hover img,
.post-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.08);
}

.media-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  color: #fff;
  background: rgba(4, 10, 16, 0.76);
  backdrop-filter: blur(12px);
}

.media-caption span {
  color: var(--muted);
  font-size: 13px;
}

.bullet-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  color: var(--muted);
}

.bullet-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(24, 210, 255, 0.11);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.spec-card {
  min-height: 160px;
}

.spec-card strong {
  display: block;
  color: #fff;
  font-size: 34px;
  line-height: 1.04;
}

.spec-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  clip-path: var(--slant);
  background: rgba(9, 17, 25, 0.86);
  box-shadow: var(--shadow);
}

.table-wrap::before {
  content: "TECHNICAL DATA";
  position: sticky;
  left: 0;
  display: block;
  padding: 10px 18px;
  color: #9beeff;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 10, 16, 0.82);
  font-size: 12px;
  font-weight: 900;
}

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

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

th {
  color: #06101b;
  background: linear-gradient(135deg, var(--cyan), #6ea6ff);
  font-size: 13px;
  text-transform: uppercase;
}

td {
  color: rgba(238, 246, 255, 0.82);
}

tr:hover td {
  background: rgba(24, 210, 255, 0.055);
}

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

.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid rgba(24, 210, 255, 0.3);
  color: #9beeff;
  background: rgba(24, 210, 255, 0.08);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card,
.post-card {
  display: flex;
  flex-direction: column;
}

.product-card img,
.post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.card-body {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 13px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: #8deaff;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link::after {
  content: " →";
  transition: transform 0.2s ease;
}

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

.process-step {
  min-height: 220px;
  padding: 26px;
}

.process-step strong {
  display: block;
  color: #89e8ff;
  font-size: 15px;
}

.process-step h3 {
  margin-top: 30px;
}

.cta-band {
  padding: 58px 0;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(0, 108, 255, 0.86), rgba(6, 11, 16, 0.98)),
    var(--blue);
}

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

.cta-inner h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

.cta-inner p {
  max-width: 680px;
  margin-top: 10px;
  color: rgba(238, 246, 255, 0.76);
}

.site-footer {
  color: var(--muted);
  background: #04080d;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 58px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 0.9fr 0.8fr;
  gap: 32px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-col h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 8px 0;
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.contact-grid,
.article-shell {
  display: grid;
  gap: 30px;
  align-items: start;
}

.contact-grid {
  grid-template-columns: 0.82fr 1.18fr;
}

.article-shell {
  grid-template-columns: minmax(0, 0.72fr) minmax(270px, 0.28fr);
}

.contact-panel {
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-item span {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item a {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

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

label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: rgba(5, 10, 16, 0.74);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(24, 210, 255, 0.66);
  box-shadow: 0 0 0 3px rgba(24, 210, 255, 0.11);
  background: rgba(8, 15, 23, 0.94);
}

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

.article-content {
  color: rgba(238, 246, 255, 0.82);
  font-size: 17px;
}

.article-content h2 {
  margin: 36px 0 12px;
  font-size: 30px;
}

.article-content p {
  margin-top: 16px;
}

.article-content img {
  width: 100%;
  margin: 28px 0;
  border: 1px solid var(--line);
  clip-path: var(--slant);
}

.sidebar-box {
  position: sticky;
  top: 100px;
  padding: 22px;
}

.sidebar-box h3 {
  margin: 0 0 14px;
}

.sidebar-box a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--cyan);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(5, 10, 16, 0.98);
  }

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

  .nav-links a {
    width: 100%;
  }

  .hero {
    min-height: 760px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(4, 8, 13, 0.97), rgba(4, 8, 13, 0.72));
  }

  .hero-metrics,
  .feature-grid,
  .spec-grid,
  .process,
  .timeline,
  .product-grid,
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head,
  .split,
  .contact-grid,
  .article-shell {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .nav,
  .hero-inner,
  .hero-metrics,
  .container,
  .cta-inner,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-mark img {
    width: auto;
    max-width: none;
    height: 44px;
  }

  .brand-word {
    font-size: 19px;
  }

  .hero {
    min-height: 720px;
  }

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

  .page-hero h1 {
    font-size: 36px;
  }

  .hero-copy,
  .page-hero p,
  .section-intro {
    font-size: 16px;
  }

  .hero-metrics,
  .feature-grid,
  .spec-grid,
  .product-grid,
  .post-grid,
  .process,
  .timeline,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .media-caption {
    position: static;
  }
}
