:root {
  --ink: #0e1b26;
  --steel: #183042;
  --deep: #07111b;
  --deep-2: #0d1d2a;
  --muted: #687885;
  --line: #d9e3ea;
  --paper: #f3f6f8;
  --white: #ffffff;
  --teal: #16a8b7;
  --green: #2c8d68;
  --amber: #c9953c;
  --blue: #105f9f;
  --shadow: 0 24px 70px rgba(12, 27, 40, 0.16);
  --soft-shadow: 0 14px 34px rgba(12, 27, 40, 0.11);
  font-family: "Aptos", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "kern" 1, "liga" 1;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

p {
  margin: 0;
}

.no-break {
  white-space: nowrap;
}

h1 .no-break,
h2 .no-break,
h3 .no-break,
strong .no-break {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

span.no-break {
  display: inline;
  margin: 0;
  padding: 0;
  min-height: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 clamp(18px, 4.2vw, 68px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 17, 27, 0.58);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  background: rgba(7, 17, 27, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  min-height: 48px;
  padding: 0;
}

.brand-logo {
  width: 174px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 760;
}

.site-nav a {
  position: relative;
  padding: 30px 0;
}

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

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fallback {
  opacity: 0.88;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 27, 0.94) 0%, rgba(7, 17, 27, 0.76) 45%, rgba(7, 17, 27, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 17, 27, 0.94) 0%, rgba(7, 17, 27, 0.16) 56%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 390px);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
  min-height: 100vh;
  padding: 128px clamp(20px, 5vw, 76px) 50px;
}

.hero-copy {
  padding-bottom: 0;
}

.eyebrow,
.section-kicker,
.panel-label {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 18px;
}

h1 {
  max-width: 780px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 820;
}

h2 {
  max-width: 920px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 820;
}

h3 {
  font-size: 21px;
  line-height: 1.22;
  font-weight: 800;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(16, 95, 159, 0.32);
}

.button.primary:hover {
  background: #1372bf;
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  color: var(--steel);
  border-color: var(--line);
  background: var(--white);
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 22, 34, 0.74);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.hero-card div {
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-card div:last-child {
  border-bottom: 0;
}

.hero-card strong {
  display: block;
  color: var(--white);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1;
  font-weight: 820;
}

.hero-card span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 102px;
  padding: 24px clamp(14px, 2.5vw, 28px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.proof-strip strong {
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 820;
}

.section {
  padding: clamp(72px, 8.5vw, 112px) clamp(20px, 5vw, 76px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(280px, 760px) minmax(220px, 1fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 46px;
}

.section-head.compact {
  display: block;
}

.section-head h2 {
  grid-column: 1;
}

.intro {
  background: var(--paper);
}

.section-kicker {
  margin-bottom: 16px;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(280px, 0.82fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.image-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.image-rail figure {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--deep);
  box-shadow: var(--soft-shadow);
}

.image-rail img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.image-rail figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 10px 12px;
  color: var(--white);
  background: rgba(7, 17, 27, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.about-delivery {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(32px, 5vw, 68px);
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.dark-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 168, 183, 0.11), rgba(7, 17, 27, 0) 38%),
    var(--deep);
}

.dark-section .section-head h2 {
  color: var(--white);
}

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

.solution-card {
  grid-column: span 4;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 430px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.solution-card:nth-child(4),
.solution-card:nth-child(5),
.solution-card:nth-child(6) {
  grid-column: span 4;
  min-height: 430px;
}

.solution-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.solution-card-body {
  display: flex;
  flex-direction: column;
  padding: 24px 24px 26px;
}

.solution-card .solution-number {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.solution-card h3 {
  color: var(--white);
}

.solution-card p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.64;
}

a.solution-card:hover {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(22, 168, 183, 0.48);
  transform: translateY(-3px);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(480px, 1.22fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  background: var(--white);
}

.product-copy h2 {
  max-width: 640px;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.12;
}

.product-copy > p:not(.eyebrow):not(.tab-hint) {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.tab-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 16px;
  color: var(--deep);
  background: #e8f7f9;
  border: 1px solid rgba(22, 168, 183, 0.38);
  border-left: 5px solid var(--teal);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(12, 27, 40, 0.08);
}

.tab-hint::before {
  content: "Click";
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  color: var(--white);
  background: var(--teal);
  font-size: 11px;
  text-transform: uppercase;
}

.tab-hint::after {
  content: "↓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--white);
  background: var(--deep);
  font-size: 14px;
  font-weight: 900;
}

.product-tabs,
.industry-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.product-tabs button,
.product-tabs a,
.industry-tabs button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--steel);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.product-tabs button.active,
.industry-tabs button.active {
  color: var(--white);
  border-color: var(--deep);
  background: var(--deep);
  box-shadow: 0 14px 28px rgba(7, 17, 27, 0.18);
}

.product-tabs button:hover,
.product-tabs a:hover,
.industry-tabs button:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 22px rgba(12, 27, 40, 0.12);
  transform: translateY(-1px);
}

.product-tabs a {
  border-color: rgba(22, 168, 183, 0.36);
  background: #eef8fa;
}

.product-tabs a::after {
  content: "↗";
  margin-left: 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.product-tabs button.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 12px;
  height: 12px;
  background: var(--deep);
  transform: translateX(-50%) rotate(45deg);
}

.product-panel {
  margin-top: 22px;
  padding: 26px;
  color: var(--white);
  background: var(--deep);
  box-shadow: var(--soft-shadow);
}

.product-panel h3 {
  margin-top: 10px;
}

.product-panel ul,
.case-copy ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.product-panel li,
.case-copy li {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.52;
}

.product-media {
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-media img {
  width: 100%;
  height: min(62vw, 620px);
  object-fit: contain;
}

.product-media.image-error {
  display: grid;
  place-items: center;
  min-height: 420px;
}

.product-media.image-error::after {
  content: "Product image is loading. Please refresh if it does not appear.";
  max-width: 320px;
  color: var(--muted);
  font-weight: 760;
  text-align: center;
}

.product-media[data-product="smart"] {
  background: #eef3f5;
}

.product-media[data-product="smart"] img {
  height: min(54vw, 620px);
  object-fit: cover;
  object-position: center 13%;
}

.architecture {
  background: var(--paper);
}

.architecture-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 0.82fr);
  gap: 28px;
  margin-top: 46px;
  align-items: stretch;
}

.chain-map {
  display: grid;
  gap: 16px;
}

.chain-row {
  display: grid;
  grid-template-columns: 150px repeat(4, minmax(110px, 1fr));
  gap: 10px;
  align-items: center;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
}

.chain-row strong {
  color: var(--steel);
  font-weight: 820;
}

.chain-row span {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 8px;
  color: var(--steel);
  background: #f7fafb;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.chain-row span:last-child {
  color: var(--green);
  background: #e8f6f1;
}

.architecture-media {
  min-height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.architecture-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smart-breaker {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(16, 95, 159, 0.08), rgba(255, 255, 255, 0) 42%),
    var(--white);
}

.smart-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.smart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.smart-media {
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.smart-media img {
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: cover;
}

.smart-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 6px;
}

.smart-grid article {
  min-height: 210px;
  padding: 24px;
  color: var(--white);
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.smart-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.smart-grid p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.58;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  min-height: 760px;
  padding-top: 136px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 168, 183, 0.14), rgba(7, 17, 27, 0) 44%),
    var(--deep);
}

.product-detail-copy h1 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(44px, 5.4vw, 82px);
  line-height: 1.02;
}

.product-detail-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.product-detail-media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eef3f5;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-section {
  color: var(--white);
  background: var(--deep);
}

.product-detail-section .section-head h2 {
  color: var(--white);
}

.product-detail-fit {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
  background: var(--paper);
}

.product-detail-fit p:not(.eyebrow) {
  margin-top: 22px;
  max-width: 660px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.eaas-service {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(460px, 1.22fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(44, 141, 104, 0.18), rgba(7, 17, 27, 0) 45%),
    var(--deep);
}

.eaas-copy p:not(.eyebrow) {
  margin-top: 22px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.72;
}

.eaas-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.eaas-downloads {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.eaas-downloads a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
  font-weight: 760;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.eaas-downloads a:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(22, 168, 183, 0.62);
  transform: translateY(-1px);
}

.eaas-downloads span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 28px;
  color: var(--deep);
  background: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.eaas-media {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.eaas-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eaas-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.eaas-grid article {
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.eaas-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.eaas-grid h3 {
  color: var(--white);
}

.eaas-grid p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.58;
}

.fmcs-hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(22, 168, 183, 0.22), rgba(22, 168, 183, 0) 34%),
    linear-gradient(135deg, rgba(16, 95, 159, 0.16), rgba(7, 17, 27, 0) 46%),
    var(--deep);
}

.sis-detail-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(183, 31, 39, 0.22), rgba(183, 31, 39, 0) 34%),
    linear-gradient(135deg, rgba(183, 31, 39, 0.16), rgba(7, 17, 27, 0) 46%),
    var(--deep);
}

.eaas-detail-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(44, 141, 104, 0.22), rgba(44, 141, 104, 0) 34%),
    linear-gradient(135deg, rgba(44, 141, 104, 0.16), rgba(7, 17, 27, 0) 46%),
    var(--deep);
}

.fmcs-scope {
  background: var(--paper);
}

.fmcs-scope .section-head p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.fmcs-utility-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}

.fmcs-utility-grid span {
  color: var(--deep);
  border-color: var(--line);
  background: var(--white);
}

.fmcs-architecture {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.fmcs-architecture article {
  min-height: 260px;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fmcs-architecture span,
.fmcs-proof span {
  display: block;
  margin-bottom: 34px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.fmcs-architecture h3 {
  color: var(--white);
}

.fmcs-architecture p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.58;
}

.fmcs-delivery {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(520px, 1.3fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  background: var(--white);
}

.fmcs-delivery p:not(.eyebrow) {
  margin-top: 22px;
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.fmcs-timeline li {
  min-height: 236px;
}

.fmcs-download-section {
  align-items: stretch;
}

.fmcs-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.fmcs-proof article {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fmcs-proof span {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.fmcs-proof p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.58;
}

.sis-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(182, 36, 36, 0.16), rgba(7, 17, 27, 0) 42%),
    var(--deep);
}

.sis-section .section-head {
  align-items: start;
}

.sis-section h2,
.sis-section h3 {
  color: var(--white);
}

.section-lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.72;
}

.sis-hero {
  display: grid;
  grid-template-columns: minmax(420px, 1.18fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: stretch;
}

.sis-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #101821;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.sis-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.sis-mask-overview img {
  height: auto;
  min-height: 0;
  aspect-ratio: 1672 / 941;
  object-fit: contain;
  background: #121821;
}

.sis-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(7, 17, 27, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  line-height: 1.46;
}

.sis-copy-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sis-copy-card h3 {
  margin-top: 12px;
  font-size: clamp(26px, 2.7vw, 36px);
}

.sis-copy-card p:not(.panel-label) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.68;
}

.sis-copy-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 18px;
}

.sis-copy-card li {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.52;
}

.sis-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.sis-gallery .sis-visual img {
  min-height: 420px;
}

.sis-mask-sequence img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1640 / 900;
  object-fit: contain;
  background: #eef0f2;
}

.sis-cover-label {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  color: var(--white);
  background: #b71f27;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.overview-label {
  top: 14.2%;
  left: 57.6%;
  width: 150px;
}

.sequence-label {
  top: 13.8%;
  left: 35.5%;
  width: 220px;
  min-height: 48px;
  background: #17191c;
}

.sis-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.sis-points article {
  min-height: 190px;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sis-points span {
  display: block;
  margin-bottom: 30px;
  color: #ff5c5c;
  font-size: 13px;
  font-weight: 800;
}

.sis-points p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.58;
}

.industries {
  color: var(--white);
  background: var(--deep-2);
}

.industry-shell {
  display: grid;
  gap: 24px;
}

.case-stage {
  display: grid;
  grid-template-columns: minmax(360px, 1.18fr) minmax(300px, 0.82fr);
  min-height: 540px;
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-media {
  overflow: hidden;
  background: var(--deep);
}

.case-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: contain;
}

.case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
}

.case-copy h3 {
  margin-top: 12px;
  font-size: clamp(26px, 2.7vw, 36px);
}

.case-copy p:not(.panel-label) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.68;
}

.project-proof {
  background: var(--white);
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 42px 0 22px;
}

.gallery-card {
  position: relative;
  min-height: 160px;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  border: 0;
  background: var(--deep);
  cursor: pointer;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 17, 27, 0.82), rgba(7, 17, 27, 0.02) 66%);
}

.gallery-card.active {
  outline: 4px solid var(--teal);
  outline-offset: -4px;
}

.gallery-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.gallery-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  font-weight: 800;
  text-align: left;
}

.proof-feature {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(300px, 0.55fr);
  gap: 28px;
  align-items: stretch;
}

.proof-feature img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.proof-feature > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  color: var(--white);
  background: var(--deep);
}

.proof-feature h3 {
  margin-top: 12px;
  font-size: clamp(26px, 2.6vw, 34px);
}

.proof-feature p:not(.panel-label) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.68;
}

.energy-references {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 168, 183, 0.12), rgba(7, 17, 27, 0) 42%),
    var(--deep);
}

.section-lead.dark {
  color: rgba(255, 255, 255, 0.7);
}

.energy-references .section-head h2 {
  color: var(--white);
}

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

.reference-grid-secondary {
  margin-top: 20px;
}

.reference-subhead {
  margin-top: 48px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(22, 168, 183, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.reference-subhead h3 {
  max-width: 920px;
  margin-top: 10px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
}

.reference-subhead p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.55;
}

.reference-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.reference-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(360px, 0.9fr);
}

.reference-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.reference-card.featured img {
  height: 100%;
  min-height: 430px;
}

.reference-card > div {
  padding: 26px;
}

.reference-card.featured > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 48px);
}

.reference-card h3 {
  margin-top: 10px;
  color: var(--white);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.18;
}

.reference-card p:not(.panel-label) {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.62;
}

.reference-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.reference-card li {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.delivery {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(36px, 6vw, 84px);
  background: var(--paper);
}

.delivery-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.delivery-copy h2 {
  max-width: 560px;
  font-size: clamp(32px, 3.1vw, 46px);
  line-height: 1.1;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  min-height: 258px;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.timeline span {
  display: block;
  margin-bottom: 50px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.timeline h3 {
  font-size: 16px;
  line-height: 1.18;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.timeline p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.56;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.quality {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 168, 183, 0.14), rgba(7, 17, 27, 0) 44%),
    var(--deep);
}

.quality p:not(.eyebrow) {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

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

.standard-grid span {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  font-size: 14px;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(34px, 6vw, 88px);
  background: var(--white);
}

.contact-card {
  padding: clamp(34px, 4.4vw, 52px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 17, 27, 0.86), rgba(7, 17, 27, 0.52)),
    url("assets/site/fast/overseas-installed-module-02.jpg") center / cover;
  box-shadow: var(--shadow);
}

.contact-card p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.62;
}

.contact-card h2 {
  max-width: 760px;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.1;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.contact-details a,
.contact-details span {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
  font-weight: 760;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(22, 168, 183, 0.13);
}

.form-note {
  min-height: 22px;
  color: var(--green);
  font-size: 13px;
  font-weight: 760;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--deep);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .product-showcase,
  .product-detail-hero,
  .product-detail-fit,
  .architecture-grid,
  .smart-breaker,
  .eaas-service,
  .sis-hero,
  .case-stage,
  .proof-feature,
  .reference-card.featured,
  .delivery,
  .about-delivery,
  .fmcs-delivery,
  .quality,
  .contact,
  .intro-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-card {
    max-width: 720px;
  }

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

  .solution-grid,
  .proof-gallery,
  .reference-grid,
  .smart-grid,
  .eaas-grid,
  .fmcs-architecture,
  .fmcs-proof,
  .fmcs-utility-grid,
  .sis-gallery,
  .sis-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-card,
  .solution-card:nth-child(4),
  .solution-card:nth-child(5),
  .solution-card:nth-child(6) {
    grid-column: auto;
    min-height: 410px;
  }

  .reference-card.featured {
    grid-column: auto;
  }

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

  .chain-row {
    grid-template-columns: 1fr 1fr;
  }

  .chain-row strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 26px;
    background: rgba(7, 17, 27, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

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

  .site-nav a {
    padding: 16px 0;
  }

  .site-nav a::after {
    bottom: 10px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 34px;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .hero-card::-webkit-scrollbar {
    display: none;
  }

  .hero-card div {
    min-width: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
  }

  .hero-card div:last-child {
    border-right: 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .section-lead {
    max-width: 100%;
  }

  .proof-strip div {
    border-bottom: 1px solid var(--line);
  }

  .image-rail {
    grid-template-columns: 1fr;
  }

  .image-rail figure:nth-child(2) {
    margin-top: 0;
  }

  .image-rail figure:nth-child(4) {
    margin-top: 0;
  }

  .product-media img,
  .case-media img,
  .proof-feature img,
  .eaas-media img,
  .sis-visual img {
    height: auto;
    min-height: 280px;
  }

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

  .case-stage {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .brand-copy small {
    display: none;
  }

  .brand {
    min-width: 148px;
    min-height: 42px;
  }

  .brand-logo {
    width: 148px;
  }

  h1 {
    font-size: clamp(35px, 10.4vw, 44px);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.12;
  }

  .product-copy h2 {
    font-size: clamp(30px, 8.4vw, 38px);
  }

  .section {
    padding: 58px 20px;
  }

  .hero-copy p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.62;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .button {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    min-height: 48px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero-copy p:not(.eyebrow),
  .intro-copy,
  .delivery-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-card div {
    padding: 14px 10px;
  }

  .hero-card strong {
    font-size: 21px;
    line-height: 1.08;
  }

  .hero-card span {
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .solution-grid,
  .proof-gallery,
  .reference-grid,
  .smart-grid,
  .eaas-grid,
  .fmcs-architecture,
  .fmcs-proof,
  .fmcs-utility-grid,
  .sis-gallery,
  .sis-points,
  .timeline,
  .standard-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-hero {
    min-height: auto;
    padding-top: 112px;
  }

  .product-detail-copy h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

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

  .proof-strip div:last-child {
    grid-column: 1 / -1;
  }

  .proof-strip div {
    min-height: 82px;
    padding: 18px 14px;
  }

  .proof-strip strong {
    font-size: 17px;
  }

  .solution-card {
    min-height: auto;
  }

  .solution-card-body,
  .product-panel,
  .case-copy,
  .reference-card > div,
  .proof-feature > div {
    padding: 22px;
  }

  .reference-subhead {
    margin-top: 34px;
    padding: 22px;
  }

  .reference-subhead h3 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .solution-card .solution-number {
    margin-bottom: 14px;
  }

  .solution-card p {
    margin-top: 14px;
  }

  .product-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-tabs button,
  .product-tabs a {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    font-size: 14px;
  }

  .product-tabs button:nth-child(3) {
    grid-column: 1 / -1;
  }

  .industry-tabs {
    flex-wrap: nowrap;
    gap: 10px;
    margin-inline: -20px;
    padding: 0 20px 4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .industry-tabs::-webkit-scrollbar {
    display: none;
  }

  .industry-tabs button {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 0 15px;
    white-space: nowrap;
  }

  .tab-hint {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding: 12px;
    font-size: 12px;
    line-height: 1.45;
  }

  .contact-card,
  .proof-feature > div,
  .eaas-grid article,
  .smart-grid article,
  .sis-copy-card,
  .sis-points article {
    padding: 28px;
  }

  .eaas-media {
    min-height: 320px;
    padding: 12px;
  }

  .image-rail figure {
    min-height: 260px;
  }

  .image-rail img {
    min-height: 260px;
  }

  .product-media img,
  .case-media img,
  .proof-feature img,
  .eaas-media img,
  .sis-visual img {
    min-height: 240px;
  }

  .smart-media {
    aspect-ratio: 4 / 3;
  }

  .case-media img {
    object-fit: cover;
  }

  .sis-mask-overview img,
  .sis-mask-sequence img {
    aspect-ratio: auto;
    object-fit: contain;
  }

  .sis-cover-label {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }

  .overview-label {
    width: 116px;
  }

.sequence-label {
    width: 178px;
    min-height: 42px;
  }
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 44px;
  padding: clamp(28px, 6vw, 76px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 17, 27, 0.94), rgba(7, 17, 27, 0.68)),
    url("assets/site/fast/ehouse-3d-cover-hero.jpg") center / cover;
}

.thank-you-card {
  max-width: 860px;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 17, 27, 0.72);
  box-shadow: var(--shadow);
}

.thank-you-card h1 {
  margin-top: 16px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.thank-you-card p:not(.eyebrow) {
  margin-top: 24px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
}

.thank-you-card p a {
  color: var(--white);
  font-weight: 800;
}

.thank-you-card .button {
  margin-top: 32px;
}
