:root {
  --primary: #013e83;
  --text: #012a5a;
  --ink: #0e0e0e;
  --accent: #8dafd5;
  --secondary: #c2d2e3;
  --mist: #f9fafd;
  --silver: #e9e9e9;
  --body: #324a6d;
  --white: #ffffff;
  --line: rgba(1, 42, 90, 0.14);
  --shadow: 0 18px 45px rgba(1, 42, 90, 0.12);
  --max: 1600px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link,
.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:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: var(--text);
  background: var(--white);
  border-radius: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--secondary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.brand-row {
  display: flex;
  justify-content: center;
  padding: 10px 5vw 4px;
}

.brand {
  display: inline-block;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.header-logo {
  width: min(210px, 26vw);
}

.footer-logo {
  width: min(165px, 50%);
}

.nav-row {
  display: flex;
  justify-content: center;
  padding: 0 5vw 10px;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-menu::-webkit-scrollbar {
  display: none;
}

.site-menu a {
  padding: 11px 18px;
  color: var(--secondary);
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: var(--white);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--white);
  background: transparent;
  border: 0;
}

.menu-toggle span:not(.sr-only) {
  width: 23px;
  height: 2px;
  background: currentColor;
  border-radius: 10px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  padding: 112px 8vw 92px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.media-fill {
  background:
    linear-gradient(135deg, rgba(1, 42, 90, 0.68), rgba(14, 14, 14, 0.78)),
    radial-gradient(circle at 22% 28%, rgba(194, 210, 227, 0.34), transparent 28%),
    linear-gradient(115deg, #0e0e0e 0%, #012a5a 45%, #8dafd5 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero::before {
  width: 68vw;
  height: 46vh;
  right: -12vw;
  bottom: 8vh;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(720px) rotateX(58deg) rotateZ(-8deg);
  opacity: 0.36;
}

.hero::after {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: "Exo 2", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 4px;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: "Exo 2", Arial, sans-serif;
  font-size: clamp(48px, 6.4vw, 85px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: #1c244b;
  font-family: "Exo 2", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 65px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: #1c244b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: capitalize;
}

.hero-copy {
  width: min(910px, 100%);
  margin: 0 auto;
  color: var(--secondary);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(18px, 1.75vw, 22px);
  font-weight: 500;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 42px;
  border-radius: 100px;
  border: 1px solid transparent;
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-light {
  color: var(--text);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--text);
  background: var(--accent);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--text);
  background: var(--secondary);
  border-color: var(--secondary);
}

.button-dark {
  color: var(--secondary);
  background: var(--text);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--text);
  background: var(--white);
}

.section {
  padding: clamp(70px, 9vw, 150px) 8vw;
}

.section-heading {
  width: min(880px, 100%);
  margin-bottom: 56px;
}

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

.section-heading p:not(.eyebrow) {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--body);
}

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

.pillar-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.pillar {
  min-height: 268px;
  padding: 34px 26px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.icon-circle {
  display: inline-grid;
  width: 86px;
  height: 86px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--primary);
  background: var(--secondary);
  border-radius: 12px;
}

.icon-circle svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
}

.pillar p,
.scale-card p,
.application-card p,
.feature-list p,
.content-panel p,
.commercial-copy p,
.final-cta p,
.footer-brand p {
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  min-height: 720px;
  padding: 0;
  background: var(--mist);
}

.media-panel {
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(1, 42, 90, 0.66), rgba(14, 14, 14, 0.52)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, #0e0e0e, #013e83 54%, #8dafd5);
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.tech-media {
  position: relative;
  overflow: hidden;
}

.tech-media::before,
.tech-media::after,
.product-media::before,
.product-media::after {
  content: "";
  position: absolute;
  display: block;
}

.tech-media::before {
  width: 56%;
  height: 64%;
  left: 22%;
  top: 18%;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.03);
}

.tech-media::after {
  width: 42%;
  height: 16%;
  left: 29%;
  top: 43%;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.26);
}

.content-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 130px) 8vw;
}

.content-panel h2 {
  color: var(--text);
}

.content-panel p {
  max-width: 700px;
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.check-list p {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
}

.check-list span {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
}

.check-list span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(-45deg);
}

.product-feature {
  background: var(--white);
}

.feature-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: 52px;
  align-items: stretch;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--mist);
}

.stat-row div {
  min-height: 142px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.stat-row div:last-child {
  border-right: 0;
}

.stat-row strong {
  display: block;
  color: var(--text);
  font-family: "Exo 2", Arial, sans-serif;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1;
}

.stat-row span {
  display: block;
  margin-top: 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
}

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

.feature-list article {
  padding: 26px 28px;
  border-left: 4px solid var(--accent);
  background: var(--mist);
}

.product-media {
  position: relative;
  min-height: 620px;
  border-radius: 8px;
  overflow: hidden;
}

.product-media::before {
  left: 17%;
  right: 17%;
  top: 15%;
  bottom: 12%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.04);
}

.product-media::after {
  left: 28%;
  right: 28%;
  top: 32%;
  height: 34%;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.28) 0 2px, transparent 2px 28px);
}

.bess-band {
  background: var(--mist);
}

.scale-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.scale-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.scale-card .label {
  margin: 28px 28px 8px;
  color: var(--accent);
  font-family: "Exo 2", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.scale-card h3,
.scale-card p:last-child {
  margin-left: 28px;
  margin-right: 28px;
}

.scale-card h3 {
  color: var(--text);
  font-family: "Exo 2", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
}

.scale-card p:last-child {
  margin-bottom: 32px;
}

.scale-media {
  position: relative;
  height: 280px;
  background:
    linear-gradient(135deg, rgba(1, 42, 90, 0.62), rgba(14, 14, 14, 0.44)),
    linear-gradient(120deg, #0e0e0e, #013e83 58%, #c2d2e3);
  overflow: hidden;
}

.scale-media::before {
  content: "";
  position: absolute;
  inset: 58px 20%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.scale-media.rack::before {
  inset: 38px 30%;
  box-shadow:
    0 42px 0 rgba(255, 255, 255, 0.12),
    0 84px 0 rgba(255, 255, 255, 0.12),
    0 126px 0 rgba(255, 255, 255, 0.12);
}

.scale-media.container::before {
  inset: 88px 10%;
}

.applications {
  background: var(--white);
}

.application-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.application-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.application-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.application-card h3 {
  margin: 22px 24px 26px;
  color: var(--text);
}

.app-media {
  height: 245px;
  background:
    linear-gradient(135deg, rgba(1, 42, 90, 0.32), rgba(14, 14, 14, 0.4)),
    linear-gradient(120deg, #c2d2e3, #8dafd5 48%, #012a5a);
  position: relative;
}

.app-media::before,
.app-media::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.app-media.home::before {
  width: 42%;
  height: 38%;
  left: 29%;
  bottom: 24%;
  clip-path: polygon(50% 0, 100% 42%, 100% 100%, 0 100%, 0 42%);
}

.app-media.industry::before {
  width: 68%;
  height: 34%;
  left: 16%;
  bottom: 22%;
}

.app-media.industry::after {
  width: 12%;
  height: 58%;
  right: 22%;
  bottom: 22%;
}

.app-media.grid::before {
  width: 72%;
  height: 1px;
  left: 14%;
  top: 44%;
}

.app-media.grid::after {
  width: 40%;
  height: 40%;
  left: 30%;
  top: 30%;
  border-radius: 50%;
  background: transparent;
}

.app-media.telecom::before {
  width: 2px;
  height: 60%;
  left: 50%;
  bottom: 18%;
}

.app-media.telecom::after {
  width: 45%;
  height: 45%;
  left: 28%;
  top: 17%;
  border-radius: 50%;
  background: transparent;
}

.app-media.microgrid::before {
  width: 64%;
  height: 40%;
  left: 18%;
  bottom: 22%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 24px 24px;
}

.app-media.motive::before {
  width: 68%;
  height: 30%;
  left: 16%;
  bottom: 30%;
  border-radius: 8px;
}

.app-media.motive::after {
  width: 18%;
  height: 18%;
  left: 22%;
  bottom: 20%;
  border-radius: 50%;
  box-shadow: 146px 0 0 rgba(255, 255, 255, 0.24);
}

.commercial-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: 60px;
  align-items: center;
  background: var(--text);
  color: var(--secondary);
}

.commercial-band h2 {
  color: var(--white);
}

.commercial-copy {
  width: min(760px, 100%);
}

.commercial-copy p:not(.eyebrow) {
  font-size: 18px;
}

.commercial-points {
  display: grid;
  gap: 18px;
}

.commercial-points div {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  min-height: 112px;
  padding: 24px 30px;
  border: 1px solid rgba(194, 210, 227, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.commercial-points span {
  color: var(--accent);
  font-family: "Exo 2", Arial, sans-serif;
  font-size: 35px;
  font-weight: 700;
}

.commercial-points p {
  margin: 0;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 600;
}

.specs {
  background: var(--white);
}

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

.tab-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.tab-button {
  min-height: 48px;
  padding: 14px 28px;
  color: var(--text);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.tab-button:hover,
.tab-button:focus-visible,
.tab-button.active {
  color: var(--white);
  background: var(--text);
  outline: none;
}

.tab-panel {
  animation: fadeIn 180ms ease;
}

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

.table-grid {
  display: grid;
  gap: 22px;
}

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

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

.wide-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

caption {
  padding: 20px;
  color: var(--text);
  background: var(--secondary);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

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

thead th {
  color: var(--text);
  background: var(--mist);
}

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

th {
  color: var(--text);
  font-weight: 700;
}

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

.spec-note {
  width: min(920px, 100%);
  margin: 28px auto 0;
  color: rgba(50, 74, 109, 0.88);
  font-size: 14px;
  text-align: center;
}

.certification-band {
  background: var(--mist);
}

.cert-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.cert-grid span {
  display: grid;
  min-height: 104px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: var(--white);
  font-family: "Exo 2", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  min-height: 400px;
  padding: clamp(70px, 8vw, 120px) 8vw;
  color: var(--text);
  background: var(--accent);
}

.final-cta h2 {
  color: var(--text);
}

.final-cta p:not(.eyebrow) {
  width: min(820px, 100%);
  color: var(--text);
  font-size: 18px;
}

.final-cta .eyebrow {
  color: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) 1.3fr;
  gap: 40px;
  padding: 76px 8vw;
  color: var(--text);
  background: var(--white);
}

.footer-brand p {
  margin-top: 20px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.footer-links h2 {
  margin-bottom: 16px;
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 600;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
  outline: none;
}

.copyright {
  display: grid;
  min-height: 45px;
  place-items: center;
  color: var(--white);
  background: var(--text);
  font-size: 12px;
}

@media (max-width: 1180px) {
  .pillar-grid,
  .scale-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scale-card:last-child {
    grid-column: 1 / -1;
  }

  .table-grid.three {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .brand-row {
    justify-content: space-between;
    padding: 10px 5vw;
  }

  .nav-row {
    position: absolute;
    right: 5vw;
    top: 8px;
    padding: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-menu {
    position: fixed;
    inset: 73px 0 auto;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 73px);
    padding: 16px 5vw 28px;
    overflow-y: auto;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .site-menu.open {
    transform: translateY(0);
  }

  .site-menu a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero {
    min-height: 86vh;
    padding-top: 96px;
  }

  .split-section,
  .feature-layout,
  .commercial-band,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .media-panel {
    min-height: 420px;
  }

  .product-media {
    min-height: 500px;
  }

  .commercial-points div {
    grid-template-columns: 62px 1fr;
  }

  .table-grid.two {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .header-logo {
    width: min(165px, 34vw);
  }

  .hero {
    min-height: 760px;
    padding: 86px 6vw 64px;
  }

  .hero::after {
    left: 12vw;
    bottom: 5vh;
  }

  h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .section {
    padding: 64px 6vw;
  }

  .pillar-grid,
  .scale-grid,
  .application-grid,
  .stat-row,
  .cert-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .scale-card:last-child {
    grid-column: auto;
  }

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

  .stat-row div:last-child {
    border-bottom: 0;
  }

  .content-panel {
    padding: 64px 6vw;
  }

  .button {
    width: 100%;
    padding-left: 26px;
    padding-right: 26px;
  }

  .tab-list {
    display: grid;
  }

  .tab-button {
    width: 100%;
  }

  th,
  td {
    padding: 13px 14px;
    font-size: 14px;
  }
}
