:root {
  --ink: #09111f;
  --ink-2: #102034;
  --blue: #174a7c;
  --teal: #13a8a3;
  --gold: #d7a84b;
  --cream: #f7f2e8;
  --paper: #fffaf0;
  --white: #ffffff;
  --muted: #64748b;
  --line: rgba(9, 17, 31, 0.12);
  --shadow: 0 24px 70px rgba(9, 17, 31, 0.16);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #07101c;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

a:hover {
  color: #2fd5ef;
}

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

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

:focus-visible {
  outline: 3px solid rgba(19, 168, 163, 0.45);
  outline-offset: 4px;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background:
    linear-gradient(90deg, rgba(3, 16, 30, 0.96), rgba(6, 37, 61, 0.94) 58%, rgba(3, 16, 30, 0.97));
  border-bottom: 1px solid rgba(47, 213, 239, 0.24);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 34px rgba(3, 16, 30, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 78px;
}

.site-header .brand {
  display: none;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.brand span:first-child {
  color: var(--white);
  font-size: 1.45rem;
}

.brand em {
  color: #2fd5ef;
  font-style: normal;
}

.brand span:last-child {
  margin-top: 6px;
  color: rgba(176, 237, 247, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 18px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 750;
  padding: 10px 12px;
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover {
  background: rgba(47, 213, 239, 0.16);
  color: #baf7ff;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  padding: 12px 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(9, 17, 31, 0.18);
}

.header-cta {
  background: linear-gradient(135deg, #2fd5ef, #13a8a3);
  color: #03101e;
  box-shadow: 0 14px 36px rgba(47, 213, 239, 0.28);
}

.header-cta:hover,
.btn-primary:hover {
  transform: translateY(-2px);
}

.header-cta:hover {
  color: #03101e;
}

.btn-primary:hover {
  color: var(--white);
}

.btn-secondary {
  background: rgba(47, 213, 239, 0.08);
  border-color: rgba(93, 221, 240, 0.34);
  color: #dffbff;
}

.btn-secondary:hover {
  background: rgba(47, 213, 239, 0.16);
  color: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(47, 213, 239, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

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

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(2, 21, 39, 0.16), rgba(2, 21, 39, 0.92) 12%),
    radial-gradient(circle at 12% 18%, rgba(47, 213, 239, 0.18), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(19, 168, 163, 0.16), transparent 30%),
    linear-gradient(135deg, #03101e, #082642 58%, #061a2f);
  color: var(--white);
}

.top-banner {
  position: relative;
  overflow: hidden;
  border-bottom: 0;
  background: #07101c;
}

.top-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(7, 16, 28, 0), #03101e);
  pointer-events: none;
}

.top-banner img {
  width: 100%;
  height: clamp(170px, 19vw, 360px);
  object-fit: cover;
  object-position: center;
}

.hero {
  min-height: auto;
  display: grid;
  align-items: center;
  padding: 78px 0 74px;
}

.page-hero {
  padding: 78px 0 74px;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -26% auto;
  width: 54vw;
  height: 54vw;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  z-index: -1;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.2rem, 4vw, 3.75rem);
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.75rem);
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.85rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.62rem);
}

.lead {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
}

.page-hero .lead {
  margin-bottom: 0;
}

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

.principle {
  display: inline-flex;
  max-width: 680px;
  margin-top: 26px;
  border-left: 4px solid var(--gold);
  padding: 12px 0 12px 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
  font-weight: 750;
}

.operations-panel {
  position: relative;
  display: grid;
  gap: 16px;
}

.signal-card {
  border: 1px solid rgba(93, 221, 240, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(10, 43, 73, 0.92), rgba(5, 24, 42, 0.96));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  padding: 24px;
}

.signal-card strong {
  display: block;
  color: #2fd5ef;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-card span {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-size: 1.32rem;
  font-weight: 850;
  line-height: 1.2;
}

.signal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mini-metric {
  border-radius: var(--radius);
  border: 1px solid rgba(93, 221, 240, 0.26);
  background:
    linear-gradient(145deg, rgba(10, 43, 73, 0.92), rgba(5, 24, 42, 0.96));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  color: var(--white);
  padding: 20px;
}

.mini-metric b {
  display: block;
  color: #2fd5ef;
  font-size: 1.75rem;
  line-height: 1;
}

.mini-metric small {
  display: block;
  margin-top: 8px;
  color: rgba(220, 246, 250, 0.74);
  font-weight: 750;
}

.section {
  background:
    radial-gradient(circle at 18% 0%, rgba(47, 213, 239, 0.08), transparent 34%),
    linear-gradient(180deg, #03101e, #061c31 54%, #071f36);
  color: var(--white);
  padding: 96px 0;
}

.section-tight {
  background:
    radial-gradient(circle at 18% 0%, rgba(47, 213, 239, 0.08), transparent 34%),
    linear-gradient(180deg, #03101e, #061c31 54%, #071f36);
  color: var(--white);
  padding: 64px 0;
}

.section-dark {
  background:
    radial-gradient(circle at 18% 0%, rgba(47, 213, 239, 0.12), transparent 34%),
    linear-gradient(135deg, #03101e, #082642);
  color: var(--white);
}

.section-blue {
  background:
    radial-gradient(circle at 82% 0%, rgba(19, 168, 163, 0.12), transparent 32%),
    linear-gradient(180deg, #061c31, #082642);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.62fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading p {
  margin: 0;
  color: rgba(220, 246, 250, 0.72);
  font-size: 1.06rem;
}

.section-dark .section-heading p,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.muted {
  color: rgba(220, 246, 250, 0.72);
}

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

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

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

.card,
.solution-card,
.article-card,
.case-card,
.industry-card {
  border: 1px solid rgba(93, 221, 240, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(10, 43, 73, 0.92), rgba(5, 24, 42, 0.96));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  color: var(--white);
  padding: 26px;
}

.card.dark,
.section-dark .card,
.section-dark .solution-card {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.card p,
.solution-card p,
.article-card p,
.case-card p,
.industry-card p {
  margin: 14px 0 0;
  color: rgba(220, 246, 250, 0.72);
}

.section-dark .card p,
.section-dark .solution-card p {
  color: rgba(255, 255, 255, 0.72);
}

.icon-dot {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 16px;
  border: 1px solid rgba(47, 213, 239, 0.2);
  background: linear-gradient(135deg, rgba(47, 213, 239, 0.18), rgba(19, 168, 163, 0.12));
  color: #baf7ff;
  font-weight: 950;
}

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

.challenge {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  padding: 18px;
}

.challenge::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(215, 168, 75, 0.12);
}

.process {
  counter-reset: step;
  display: grid;
  gap: 18px;
}

.process-step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(93, 221, 240, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(10, 43, 73, 0.92), rgba(5, 24, 42, 0.96));
  color: var(--white);
  padding: 24px;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(47, 213, 239, 0.12);
  color: #2fd5ef;
  font-weight: 950;
}

.solution-card ul,
.case-card ul,
.footer-links,
.article-meta-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.solution-card li,
.case-card li {
  position: relative;
  padding-left: 20px;
  margin: 8px 0;
  color: rgba(220, 246, 250, 0.72);
}

.solution-card li::before,
.case-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.case-card {
  display: grid;
  gap: 26px;
}

.case-top {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: 24px;
  align-items: start;
}

.placeholder {
  display: grid;
  min-height: 250px;
  place-items: center;
  border: 1px dashed rgba(93, 221, 240, 0.34);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(47, 213, 239, 0.08), rgba(19, 168, 163, 0.12)),
    repeating-linear-gradient(135deg, transparent, transparent 12px, rgba(255, 255, 255, 0.04) 12px, rgba(255, 255, 255, 0.04) 24px);
  color: #baf7ff;
  font-weight: 850;
  text-align: center;
  padding: 20px;
}

.case-image {
  overflow: hidden;
  border: 1px solid rgba(93, 221, 240, 0.26);
  border-radius: 22px;
  background: rgba(5, 24, 42, 0.96);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

.case-image a {
  display: block;
}

.case-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  transition: transform 220ms ease;
}

.case-image:hover img {
  transform: scale(1.025);
}

.case-image figcaption {
  border-top: 1px solid rgba(93, 221, 240, 0.18);
  color: rgba(220, 246, 250, 0.72);
  font-size: 0.92rem;
  padding: 13px 16px 15px;
}

.quote-block {
  border-left: 5px solid var(--gold);
  margin: 34px 0 0;
  padding: 4px 0 4px 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
  font-weight: 760;
}

.article-card {
  display: flex;
  flex-direction: column;
}

.article-card .category,
.category {
  width: fit-content;
  border-radius: 999px;
  background: rgba(19, 168, 163, 0.12);
  color: #baf7ff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  padding: 7px 11px;
  text-transform: uppercase;
}

.article-card time {
  display: block;
  margin-top: 18px;
  color: rgba(220, 246, 250, 0.66);
  font-size: 0.9rem;
  font-weight: 750;
}

.article-card h3 {
  margin-top: 12px;
}

.article-card .read-more {
  margin-top: auto;
  padding-top: 22px;
  color: #2fd5ef;
  font-weight: 900;
}

.content-page {
  background:
    radial-gradient(circle at 18% 0%, rgba(47, 213, 239, 0.08), transparent 34%),
    linear-gradient(180deg, #03101e, #061c31 54%, #071f36);
  color: var(--white);
  padding: 76px 0 96px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  gap: 44px;
  align-items: start;
}

.prose {
  font-size: 1.06rem;
}

.prose h2 {
  margin-top: 42px;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.prose h3 {
  margin-top: 30px;
}

.prose p,
.prose li {
  color: rgba(220, 246, 250, 0.74);
}

.sidebar-card {
  position: sticky;
  top: 102px;
  border-radius: var(--radius);
  border: 1px solid rgba(93, 221, 240, 0.26);
  background:
    linear-gradient(145deg, rgba(10, 43, 73, 0.92), rgba(5, 24, 42, 0.96));
  color: var(--white);
  padding: 26px;
}

.sidebar-card p,
.sidebar-card li {
  color: rgba(255, 255, 255, 0.72);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(47, 213, 239, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(10, 38, 62, 0.94), rgba(4, 20, 36, 0.98));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 900;
  list-style: none;
  padding: 22px 24px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--cyan);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item div {
  border-top: 1px solid rgba(47, 213, 239, 0.16);
  padding: 2px 24px 22px;
}

.faq-item p {
  color: rgba(220, 246, 250, 0.72);
}

.contact-card {
  border-radius: 32px;
  border: 1px solid rgba(93, 221, 240, 0.26);
  background:
    linear-gradient(145deg, rgba(10, 43, 73, 0.94), rgba(5, 24, 42, 0.98));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
  padding: clamp(24px, 4vw, 42px);
}

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

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

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

.field label {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  font-weight: 850;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(93, 221, 240, 0.24);
  border-radius: 16px;
  background: rgba(3, 16, 30, 0.58);
  color: var(--white);
  padding: 13px 14px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(220, 246, 250, 0.44);
}

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

.form-note,
.form-status {
  color: rgba(220, 246, 250, 0.68);
  font-size: 0.92rem;
}

.form-status {
  display: none;
  margin-top: 16px;
  border-radius: 16px;
  padding: 14px 16px;
}

.form-status.success {
  display: block;
  background: rgba(19, 168, 163, 0.12);
  color: #065f5b;
}

.form-status.error {
  display: block;
  background: rgba(185, 28, 28, 0.1);
  color: #8a1717;
}

.cta-band {
  overflow: hidden;
  border: 1px solid rgba(93, 221, 240, 0.26);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 0%, rgba(47, 213, 239, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(10, 43, 73, 0.92), rgba(5, 24, 42, 0.96));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  color: var(--white);
  padding: clamp(26px, 4vw, 42px);
}

.cta-band h2 {
  max-width: 820px;
  font-size: clamp(1.65rem, 2.6vw, 2.55rem);
}

.cta-band p {
  max-width: 760px;
  color: rgba(220, 246, 250, 0.72);
  font-size: 1.02rem;
}

.site-footer {
  background:
    radial-gradient(circle at 16% 0%, rgba(47, 213, 239, 0.12), transparent 28%),
    linear-gradient(135deg, #03101e, #071f36 58%, #07101c);
  color: var(--white);
  padding: 64px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(160px, 0.7fr));
  gap: 34px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(47, 213, 239, 0.28);
  border-radius: 999px;
  background: rgba(47, 213, 239, 0.08);
  padding: 8px 12px;
  font-weight: 800;
  line-height: 1;
}

.social-link:hover {
  border-color: rgba(47, 213, 239, 0.6);
  background: rgba(47, 213, 239, 0.14);
  color: var(--white);
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--cyan);
  color: #03101e;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.social-icon.facebook {
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

.footer-links li {
  margin: 8px 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 46px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .primary-nav {
    display: none;
  }

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

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .section-heading,
  .content-grid,
  .case-top {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .challenge-list,
  .four-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sidebar-card {
    position: static;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: 68px;
  }

  .header-cta {
    display: none;
  }

  .nav-wrap {
    position: fixed;
    inset: 68px 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    border: 1px solid rgba(47, 213, 239, 0.22);
    border-radius: 24px;
    background:
      linear-gradient(145deg, rgba(3, 16, 30, 0.98), rgba(7, 42, 68, 0.98));
    box-shadow: 0 24px 70px rgba(3, 16, 30, 0.42);
    padding: 18px;
  }

  .body-lock .nav-wrap,
  .nav-wrap.open {
    display: flex;
  }

  .primary-nav {
    display: grid;
    gap: 4px;
  }

  .primary-nav a {
    padding: 12px 14px;
  }

  .nav-wrap .header-cta {
    display: inline-flex;
  }

  .hero,
  .page-hero,
  .section {
    padding: 62px 0;
  }

  .signal-row,
  .cards-grid,
  .challenge-list,
  .two-grid,
  .four-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .brand span:first-child {
    font-size: 1.25rem;
  }
}

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

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