:root {
  --bg: #eef6ff;
  --surface: #ffffff;
  --surface-soft: #f4f9ff;
  --surface-muted: #eaf4ff;
  --surface-dark: #08182f;
  --surface-dark-2: #10345c;
  --text: #0a1a2f;
  --text-soft: #5b748d;
  --text-inverse: #ffffff;
  --accent: #0f8fff;
  --accent-strong: #0068c9;
  --accent-soft: #83d6ff;
  --line: #d5e4f3;
  --line-strong: rgba(255, 255, 255, 0.14);
  --card-border: rgba(10, 42, 76, 0.08);
  --shadow-soft: 0 18px 42px rgba(9, 31, 60, 0.08);
  --shadow-card: 0 24px 56px rgba(7, 28, 56, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --content-width: 1280px;
  --page-gutter: clamp(18px, 4vw, 38px);
  --section-pad: clamp(56px, 8vw, 92px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(15, 143, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

main {
  padding-bottom: clamp(28px, 4vw, 52px);
}

a {
  color: inherit;
}

p {
  margin: 0;
}

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

.shell {
  width: 100%;
}

.utility-bar,
.site-header,
.hero,
.section,
.page-hero,
.cta-banner,
.footer {
  width: 100%;
  margin: 0;
  padding-inline: max(var(--page-gutter), calc((100vw - var(--content-width)) / 2 + var(--page-gutter)));
}

.utility-bar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-inverse);
  background: linear-gradient(90deg, #0a6bc2, #0f8fff 55%, #22b7ff);
  font-size: 0.94rem;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.utility-links a {
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(10, 42, 76, 0.08);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 10px 28px rgba(8, 28, 52, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-logo-image {
  display: block;
  width: clamp(220px, 24vw, 380px);
  height: auto;
}

.brand-company {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  line-height: 0;
}

.brand-company-logo {
  display: block;
  width: auto;
  height: clamp(42px, 3.6vw, 52px);
  transform: translateY(-4px);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  margin-left: auto;
}

.site-nav a,
.nav-cta,
.button,
.button-ghost,
.text-link,
.product-link {
  text-decoration: none;
}

.site-nav a {
  color: var(--text-soft);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color 180ms ease;
}

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

.nav-cta,
.button,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.nav-cta,
.button {
  background: linear-gradient(135deg, var(--accent), #43c2ff);
  color: var(--text-inverse);
  box-shadow: 0 12px 28px rgba(15, 143, 255, 0.24);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(15, 143, 255, 0.3);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost.is-dark {
  border-color: var(--line);
  background: rgba(15, 143, 255, 0.04);
  color: var(--text);
}

.button-ghost.is-dark:hover {
  border-color: rgba(15, 143, 255, 0.32);
  background: rgba(15, 143, 255, 0.08);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--text-inverse);
}

.hero {
  min-height: min(860px, calc(100vh - 90px));
  padding-top: clamp(84px, 11vw, 136px);
  padding-bottom: clamp(120px, 12vw, 176px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(32px, 4vw, 56px);
  background:
    radial-gradient(circle at 12% 12%, rgba(77, 201, 255, 0.46), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(15, 143, 255, 0.42), transparent 30%),
    linear-gradient(130deg, rgba(7, 22, 40, 0.98), rgba(7, 17, 32, 1) 42%, rgba(11, 35, 66, 1) 100%);
}

.hero::before,
.page-hero::before,
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 108px 108px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent 88%);
  pointer-events: none;
}

.hero-copy,
.hero-panel-wrap,
.page-hero-copy,
.page-hero > * {
  position: relative;
  z-index: 1;
}

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

.hero-panel-wrap {
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.eyebrow,
.card-kicker,
.mini-label {
  margin: 0 0 14px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Orbitron", sans-serif;
}

.hero-title,
.page-hero h1,
.section-intro h2,
.cta-banner h2,
.feature-hero h2,
.product-card h3,
.detail-card h3,
.metric-card h3,
.briefing-side h2,
.briefing-form-card h2,
.hero-panel h2,
.promo-card h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.hero-title {
  max-width: 10ch;
  font-size: clamp(3.25rem, 6.6vw, 6.35rem);
}

.hero-summary,
.page-hero p,
.section-copy,
.feature-list li,
.detail-card p,
.metric-card p,
.footer,
.story-card p,
.product-card p,
.cta-banner p,
.hero-panel p {
  line-height: 1.65;
}

.hero-summary {
  max-width: 58ch;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.3vw, 1.17rem);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin: 32px 0 28px;
}

.badge-list,
.feature-list,
.inline-list,
.product-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.badge-list li,
.feature-list li,
.inline-list li,
.product-points li {
  position: relative;
  padding-left: 18px;
}

.badge-list li::before,
.feature-list li::before,
.inline-list li::before,
.product-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.badge-list li {
  color: rgba(255, 255, 255, 0.9);
}

.hero-panel,
.hero-product-card,
.hero-stat,
.promo-card,
.detail-card,
.metric-card,
.story-card,
.product-card,
.feature-hero,
.briefing-side,
.briefing-form-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
}

.hero-panel,
.hero-product-card,
.hero-stat {
  border-color: var(--line-strong);
}

.hero-panel {
  padding: 30px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(15, 143, 255, 0.12));
  backdrop-filter: blur(14px);
}

.hero-panel h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
  margin-bottom: 18px;
}

.hero-panel p,
.hero-panel .feature-list li {
  color: rgba(255, 255, 255, 0.84);
}

.hero-product-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-product-card img {
  width: min(100%, 330px);
  display: block;
  margin: 4px auto 6px;
  padding: 14px 18px;
  box-sizing: border-box;
  border: 1px solid rgba(146, 209, 255, 0.28);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(233, 245, 255, 0.94));
  box-shadow:
    0 16px 28px rgba(4, 18, 36, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.product-logo-stacked {
  width: min(100%, 220px);
}

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

.hero-stat {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hero-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.hero-stat p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.55;
}

.spotlight-strip {
  width: min(calc(100% - (var(--page-gutter) * 2)), calc(var(--content-width) + 44px));
  margin: clamp(-64px, -6vw, -42px) auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px rgba(8, 28, 58, 0.18);
}

.promo-card {
  min-height: 100%;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, #ffffff, #f0f8ff);
  box-shadow: none;
}

.promo-card + .promo-card {
  border-left: 1px solid var(--line);
}

.promo-card h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.14;
}

.section,
.page-hero,
.cta-banner {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.98));
  border-top: 1px solid rgba(10, 42, 76, 0.05);
}

.section.alt {
  background: linear-gradient(180deg, #f6fbff, #edf6ff);
}

.page-hero {
  min-height: clamp(400px, 48vw, 560px);
  display: grid;
  align-items: end;
  align-content: end;
  gap: clamp(18px, 2.5vw, 28px);
  padding-top: clamp(88px, 11vw, 132px);
  padding-bottom: clamp(56px, 8vw, 88px);
  background:
    radial-gradient(circle at top right, rgba(77, 201, 255, 0.32), transparent 24%),
    linear-gradient(135deg, #091b33, #12335a 72%, #0e5ca0 100%);
}

.page-hero-copy {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  width: min(100%, 1040px);
  max-width: 1040px;
}

.page-hero h1 {
  max-width: 13.5ch;
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: 1.04;
}

.page-hero .eyebrow {
  margin-bottom: 4px;
}

.page-hero .section-copy,
.page-hero p {
  color: rgba(255, 255, 255, 0.84);
}

.page-hero .section-copy {
  max-width: 56ch;
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}

.section-intro {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(24px, 3vw, 34px);
  max-width: 940px;
}

.section-intro.split {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.section-intro h2,
.cta-banner h2 {
  max-width: 14ch;
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
}

.section-copy,
.detail-card p,
.metric-card p,
.story-card p,
.product-card p {
  color: var(--text-soft);
}

.text-link,
.product-link {
  color: var(--accent-strong);
  font-weight: 700;
}

.product-link {
  margin-top: auto;
}

.grid-2,
.grid-3,
.grid-4,
.product-grid,
.detail-grid,
.metrics-grid,
.story-grid,
.briefing-grid {
  display: grid;
  gap: clamp(18px, 2vw, 24px);
  align-items: stretch;
}

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

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

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

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

.detail-card,
.metric-card,
.story-card,
.product-card,
.briefing-form-card,
.feature-hero,
.briefing-side {
  min-height: 100%;
}

.detail-card,
.metric-card,
.story-card,
.product-card,
.briefing-form-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: var(--surface);
}

.feature-hero,
.briefing-side {
  padding: 30px;
  color: var(--text-inverse);
  background:
    radial-gradient(circle at top right, rgba(131, 214, 255, 0.22), transparent 28%),
    linear-gradient(155deg, #0c2240, #0d5b9d);
}

.feature-hero img {
  width: min(100%, 360px);
  display: block;
  margin: 4px auto 6px;
  padding: 14px 18px;
  box-sizing: border-box;
  border: 1px solid rgba(146, 209, 255, 0.28);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(233, 245, 255, 0.94));
  box-shadow:
    0 16px 28px rgba(4, 18, 36, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.feature-hero p,
.briefing-side p,
.briefing-side .feature-list li {
  color: rgba(255, 255, 255, 0.86);
}

.metric-card {
  background: linear-gradient(180deg, #ffffff, #f3f9ff);
}

.metric-value {
  margin: 0 0 6px;
  color: var(--accent-strong);
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 2.9vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.story-card {
  background: linear-gradient(180deg, #ffffff, #f6fbff);
}

.product-card {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.product-card img {
  width: min(100%, 360px);
}

.product-tag {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 143, 255, 0.1);
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.cta-banner {
  position: relative;
  display: grid;
  gap: 16px;
  background:
    radial-gradient(circle at top left, rgba(77, 201, 255, 0.25), transparent 22%),
    linear-gradient(135deg, #091b33, #12345e);
  color: var(--text-inverse);
}

.cta-banner p {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  margin-top: 32px;
  padding-top: clamp(42px, 6vw, 68px);
  padding-bottom: clamp(28px, 4vw, 44px);
  background: #080c14;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(160px, 1fr));
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 16px;
}

.footer-brand-image {
  width: min(100%, 230px);
  height: auto;
  filter: invert(1) brightness(1.7);
  opacity: 0.92;
}

.footer-tagline,
.footer-disclaimer,
.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.footer-column {
  display: grid;
  gap: 14px;
}

.footer-column h3,
.footer-links-title {
  margin: 0;
  color: var(--text-inverse);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Orbitron", sans-serif;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-meta-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover,
.footer-meta-links a:hover {
  color: var(--text-inverse);
}

.footer-base {
  display: grid;
  gap: 18px;
  margin-top: clamp(28px, 4vw, 40px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-copyright {
  font-size: 0.94rem;
}

.legal-grid,
.policy-list,
.sitemap-grid {
  display: grid;
  gap: 20px;
}

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

.legal-card {
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.legal-card h3,
.policy-content h2,
.policy-callout h3,
.sitemap-group h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.legal-card p,
.policy-content p,
.policy-content li,
.policy-callout p,
.sitemap-group a {
  color: var(--text-soft);
  line-height: 1.65;
}

.legal-card-arrow {
  color: var(--accent-strong);
  font-size: 1.45rem;
  font-weight: 700;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.policy-content,
.policy-callout,
.sitemap-group {
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
}

.policy-content {
  display: grid;
  gap: 22px;
  background: var(--surface);
}

.policy-section {
  display: grid;
  gap: 10px;
}

.policy-list {
  padding-left: 18px;
}

.policy-callout {
  display: grid;
  gap: 14px;
  background: linear-gradient(160deg, #0a2341, #12416f);
  color: var(--text-inverse);
}

.policy-callout p,
.policy-callout li {
  color: rgba(255, 255, 255, 0.84);
}

.policy-callout .feature-list li::before {
  background: var(--accent-soft);
}

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

.sitemap-group {
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.sitemap-links {
  display: grid;
  gap: 10px;
}

.sitemap-group a {
  text-decoration: none;
}

.briefing-note {
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.briefing-form {
  display: grid;
  gap: 22px;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.field span {
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--text);
  font: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 143, 255, 0.16);
  background: var(--surface);
}

.form-helper,
.form-status {
  color: var(--text-soft);
}

.form-helper {
  max-width: 42ch;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(15, 143, 255, 0.08);
  border: 1px solid rgba(15, 143, 255, 0.16);
}

.form-status.is-visible {
  display: block;
}

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

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

@media (max-width: 1180px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-panel-wrap {
    max-width: none;
    margin-left: 0;
  }

  .spotlight-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .product-grid,
  .detail-grid,
  .metrics-grid,
  .story-grid,
  .briefing-grid,
  .hero-metrics,
  .legal-grid,
  .policy-layout,
  .sitemap-grid,
  .form-grid.two-column {
    grid-template-columns: 1fr;
  }

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

  .promo-card + .promo-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section-intro.split {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 920px) {
  .site-header {
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
    flex-wrap: wrap;
  }

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

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-left: 0;
    margin-top: 8px;
    padding: 16px;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-cta {
    order: 4;
  }

  .hero,
  .section,
  .page-hero,
  .cta-banner {
    padding-top: clamp(48px, 8vw, 64px);
    padding-bottom: clamp(48px, 8vw, 64px);
  }

  .spotlight-strip {
    margin-top: -24px;
  }
}

@media (max-width: 640px) {
  .utility-bar,
  .site-header,
  .hero,
  .section,
  .page-hero,
  .cta-banner,
  .footer {
    padding-inline: 18px;
  }

  .utility-bar {
    padding-top: 12px;
    padding-bottom: 12px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .utility-links {
    justify-content: center;
  }

  .brand-logo-image {
    width: min(78vw, 300px);
  }

  .brand-company {
    padding: 0;
  }

  .brand-company-logo {
    width: auto;
    height: clamp(38px, 9vw, 46px);
    transform: translateY(-2px);
  }

  .hero-title,
  .page-hero h1,
  .section-intro h2,
  .cta-banner h2 {
    max-width: none;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .spotlight-strip {
    width: calc(100% - 36px);
  }

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

  .detail-card,
  .metric-card,
  .story-card,
  .product-card,
  .briefing-form-card,
  .feature-hero,
  .briefing-side,
  .hero-panel,
  .hero-product-card,
  .hero-stat,
  .promo-card,
  .legal-card,
  .policy-content,
  .policy-callout,
  .sitemap-group {
    padding: 22px;
  }
}
