:root {
  --bg-top: #fbfcfd;
  --bg: #f7f9fb;
  --surface: #ffffff;
  --surface-soft: #f4f7f9;
  --surface-clear: rgba(255, 255, 255, 0.58);
  --glow-a: rgba(150, 201, 222, 0.22);
  --glow-b: rgba(213, 233, 242, 0.34);
  --bubble-a: rgba(113, 171, 196, 0.14);
  --bubble-b: rgba(150, 197, 214, 0.1);
  --bubble-c: rgba(200, 227, 236, 0.16);
  --line: #dbe4ea;
  --line-strong: #c7d3db;
  --text: #173042;
  --muted: #667b89;
  --brand: #235874;
  --brand-soft: #edf4f7;
  --accent: #6a8c99;
  --accent-strong: #235874;
  --button-text: #ffffff;
  --shadow: 0 8px 24px rgba(23, 48, 66, 0.035);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --max: 100%;
  --content-max: 1600px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg-top: #0d151c;
  --bg: #121d25;
  --surface: #18242d;
  --surface-soft: #1d2b35;
  --surface-clear: rgba(20, 31, 40, 0.62);
  --glow-a: rgba(59, 98, 116, 0.22);
  --glow-b: rgba(86, 132, 153, 0.14);
  --bubble-a: rgba(134, 174, 190, 0.12);
  --bubble-b: rgba(91, 129, 146, 0.12);
  --bubble-c: rgba(167, 198, 210, 0.08);
  --line: #2d3b47;
  --line-strong: #40515f;
  --text: #ecf3f7;
  --muted: #a6b8c4;
  --brand: #86aebe;
  --brand-soft: #243540;
  --accent: #9fb7c2;
  --accent-strong: #86aebe;
  --button-text: #0d151c;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

body {
  position: relative;
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -8%, var(--glow-b) 0, transparent 28%),
    radial-gradient(circle at 88% 8%, var(--glow-a) 0, transparent 24%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg) 58%, color-mix(in srgb, var(--bg) 92%, #000 8%) 100%);
  transition: background-color 180ms ease, color 180ms ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body::before {
  content: none;
}

body::after {
  content: none;
}

.site-shell {
  position: relative;
  z-index: 1;
}

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

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  text-shadow: none;
}

h1,
h2,
h3,
.brand-text strong,
.stat-card strong,
.meta-item strong {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  text-shadow: none;
}

.brand-text small,
.nav a,
.button,
.button-secondary,
.button-light,
.theme-toggle,
.panel-label,
.eyebrow,
.text-link,
.footer-links a,
.footer-meta a,
.footer-meta span,
.tag-list li,
.clean-list li,
.detail-item strong,
.field label,
.field input,
.field textarea {
  text-shadow: none;
}

.site-shell {
  width: 100%;
  margin: 0 auto;
  padding: 18px 0 56px;
}

.topbar,
.hero-shell,
.page-hero-shell,
.summary-panel,
.surface-panel,
.card,
.stat-card,
.cta-band,
.footer {
  background: var(--surface);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

.topbar,
main,
.footer {
  width: min(calc(100% - 48px), var(--content-max));
  margin-left: auto;
  margin-right: auto;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(18, 40, 54, 0.08);
  background: var(--surface-clear);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

html[data-theme="dark"] .topbar {
  background: var(--surface);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  user-select: none;
  -webkit-user-drag: none;
}

img.brand-logo {
  padding: 0;
}

svg.brand-logo {
  overflow: hidden;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.77rem;
  letter-spacing: 0.02em;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav a {
  position: relative;
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: transparent;
  transition: background 180ms ease;
}

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

.nav a:hover::after,
.nav a.active::after {
  background: var(--brand);
}

.button,
.button-secondary,
.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button {
  border: 1px solid var(--brand);
  background: var(--brand);
  color: var(--button-text);
}

.button-secondary,
.button-light {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--brand);
}

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

.button:hover {
  box-shadow: 0 0 0 1px rgba(35, 88, 116, 0.14), 0 10px 28px rgba(35, 88, 116, 0.24);
}

.button-secondary:hover,
.button-light:hover {
  box-shadow: 0 0 0 1px rgba(35, 88, 116, 0.1), 0 10px 24px rgba(35, 88, 116, 0.12);
}

.button-small {
  min-height: 40px;
  padding: 0 15px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  position: relative;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.theme-toggle:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--brand-soft);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(35, 88, 116, 0.1), 0 10px 24px rgba(35, 88, 116, 0.12);
}

.theme-toggle-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1rem;
  line-height: 1;
  transition: opacity 180ms ease, transform 180ms ease;
}

html[data-theme="light"] .theme-toggle-sun {
  opacity: 1;
  transform: scale(1);
}

html[data-theme="light"] .theme-toggle-moon {
  opacity: 0;
  transform: scale(0.7);
}

html[data-theme="dark"] .theme-toggle-sun {
  opacity: 0;
  transform: scale(0.7);
}

html[data-theme="dark"] .theme-toggle-moon {
  opacity: 1;
  transform: scale(1);
}

main {
  display: grid;
  gap: 52px;
  padding-top: 34px;
}

.hero-shell,
.page-hero-shell {
  padding: 54px 0 28px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.page-hero-shell-compact {
  padding-bottom: 10px;
}

.hero-grid,
.page-hero-grid,
.two-column,
.footer-grid {
  display: grid;
  gap: 40px;
}

.hero-side,
.page-side-stack {
  position: relative;
  display: grid;
  gap: 22px;
  align-content: start;
}

.hero-art {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.72) 0, rgba(255, 255, 255, 0.18) 18%, transparent 46%),
    radial-gradient(circle at 62% 64%, var(--bubble-c) 0, var(--bubble-a) 44%, rgba(255, 255, 255, 0.06) 74%, transparent 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 8px rgba(255, 255, 255, 0.22),
    0 18px 50px rgba(75, 126, 150, 0.12);
  opacity: 0.92;
}

.hero-art-globe {
  top: -28px;
  right: -24px;
  width: 124px;
  height: 124px;
  animation: orbFloatOne 18s ease-in-out infinite;
}

.hero-art-orb {
  bottom: 112px;
  left: -34px;
  width: 76px;
  height: 76px;
  opacity: 0.72;
  animation: orbFloatTwo 22s ease-in-out infinite;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.92fr);
  align-items: start;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.9fr);
  align-items: start;
}

.media-frame {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(219, 228, 234, 0.72);
  border-radius: 28px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  box-shadow: 0 28px 80px rgba(19, 37, 52, 0.12);
}

.media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transform: translate3d(0, var(--parallax-shift, 0px), 0) scale(var(--parallax-scale, 1.08));
  transition: transform 120ms linear;
  will-change: transform;
}

.media-frame-hero {
  height: clamp(440px, 46vw, 560px);
}

.media-frame-page {
  height: clamp(380px, 40vw, 480px);
}

.media-frame-careers {
  height: clamp(320px, 30vw, 380px);
}

@keyframes orbFloatOne {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-10px, -18px, 0) scale(1.04);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes orbFloatTwo {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(14px, -12px, 0) scale(0.97);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.hero-copy,
.section-header,
.section-copy,
.summary-panel,
.surface-panel,
.card,
.footer-block {
  display: grid;
  gap: 14px;
}

.motion-ready .reveal-ready {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
}

.motion-ready .reveal-ready.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.eyebrow,
.panel-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--accent);
}

.panel-label {
  color: var(--brand);
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.page-hero-shell h1 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 5vw, 3.9rem);
}

h2 {
  max-width: 18ch;
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 58ch;
  font-size: 1.06rem;
}

.trust-note,
.form-disclaimer {
  max-width: 62ch;
  font-size: 0.92rem;
}

.trust-note {
  color: var(--text);
}

.error-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(136, 181, 225, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(136, 181, 225, 0.2), rgba(136, 181, 225, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 36px rgba(54, 111, 161, 0.16);
  color: var(--accent-strong);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.error-visual-frame {
  display: grid;
  place-items: center;
  min-height: clamp(420px, 44vw, 560px);
  padding: clamp(22px, 3vw, 38px);
  background:
    radial-gradient(circle at 50% 38%, rgba(136, 181, 225, 0.24), transparent 54%),
    linear-gradient(145deg, rgba(249, 253, 255, 0.92), rgba(224, 242, 249, 0.44));
}

html[data-theme="dark"] .error-visual-frame {
  background:
    radial-gradient(circle at 50% 40%, rgba(69, 179, 226, 0.26), transparent 58%),
    linear-gradient(145deg, rgba(13, 32, 44, 0.96), rgba(5, 16, 24, 0.9));
}

.error-visual-frame img {
  width: min(96%, 560px);
  height: auto;
  min-height: 0;
  object-fit: contain;
  filter: drop-shadow(0 34px 52px rgba(42, 134, 187, 0.24));
}

.error-visual-title {
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 4vw, 42px);
  z-index: 2;
  color: color-mix(in srgb, var(--accent-strong) 78%, var(--text));
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 5.4vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-align: center;
  text-shadow: 0 16px 34px rgba(27, 94, 132, 0.2);
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0.9;
  mix-blend-mode: multiply;
}

html[data-theme="dark"] .error-visual-title {
  color: rgba(210, 237, 250, 0.9);
  mix-blend-mode: normal;
  text-shadow: 0 20px 44px rgba(69, 179, 226, 0.28);
}

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

.tag-list,
.clean-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list li {
  padding: 8px 12px;
  border: 1px solid rgba(219, 228, 234, 0.88);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.summary-panel,
.surface-panel,
.card,
.stat-card,
.cta-band,
.footer {
  border: 0;
  border-radius: 28px;
}

.summary-panel,
.surface-panel,
.card,
.cta-band,
.footer {
  box-shadow: 0 18px 48px rgba(17, 35, 48, 0.05);
}

.summary-panel,
.surface-panel {
  padding: 28px;
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
}

.summary-panel {
  background: color-mix(in srgb, var(--surface) 84%, transparent);
}

.panel-note {
  font-size: 0.96rem;
}

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

.meta-item {
  padding: 14px;
  border: 1px solid rgba(219, 228, 234, 0.72);
  border-radius: var(--radius-md);
  background: transparent;
}

.meta-item span,
.stat-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta-item strong {
  font-size: 1rem;
}

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

.stat-row-compact {
  padding-top: 6px;
}

.stat-card {
  padding: 24px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  border: 1px solid rgba(219, 228, 234, 0.72);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.34rem;
}

.section {
  display: grid;
  gap: 28px;
  padding: 14px 0;
}

.section-header {
  max-width: 780px;
}

.grid-3,
.grid-4,
.contact-grid,
.visual-grid {
  display: grid;
  gap: 24px;
}

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

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: start;
}

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

.two-column {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  align-items: start;
}

.card {
  padding: 26px;
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  border: 1px solid rgba(219, 228, 234, 0.58);
}

.media-card {
  padding: 20px;
  overflow: hidden;
  gap: 16px;
}

.media-card .media-frame {
  border-radius: 22px;
  min-height: 260px;
}

.media-card-body {
  display: grid;
  gap: 10px;
  padding: 0;
}

.contact-hero-shell {
  padding-top: 44px;
}

.contact-hero-center {
  display: grid;
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.contact-hero-center h1,
.contact-hero-center h2,
.contact-hero-center .lead {
  max-width: none;
}

.contact-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 44px;
  align-items: start;
}

.contact-showcase-copy {
  display: grid;
  gap: 18px;
  padding-top: 8px;
}

.contact-showcase-side {
  display: grid;
  gap: 24px;
}

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

.contact-inline-item {
  display: grid;
  gap: 6px;
}

.media-frame-contact {
  min-height: 280px;
}

.table-shell {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: grid;
  gap: 16px;
}

.table-meta {
  display: grid;
  gap: 6px;
  max-width: 760px;
}

.product-search-shell {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.product-search-label {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.product-search-field {
  position: relative;
}

.product-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  color: var(--muted);
  transform: translateY(-50%);
  pointer-events: none;
}

.product-search-input {
  width: 100%;
  min-height: 56px;
  padding: 15px 18px 15px 48px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-search-input::placeholder {
  color: var(--muted);
}

.product-search-input:hover {
  border-color: rgba(136, 181, 225, 0.32);
}

.product-search-input:focus {
  outline: none;
  border-color: rgba(136, 181, 225, 0.52);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(103, 162, 224, 0.14);
}

.product-search-status {
  color: var(--muted);
  font-size: 0.92rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.product-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.product-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
}

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

.product-table th {
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--surface-soft);
}

.product-table td {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.product-table tbody tr:nth-child(even) td {
  background: rgba(127, 154, 167, 0.04);
}

.product-table tbody tr:hover td {
  background: rgba(127, 154, 167, 0.08);
}

.product-table tbody tr:last-child td {
  border-bottom: 0;
}

.product-table tbody tr[hidden] {
  display: none;
}

.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;
}

.card p,
.surface-panel p,
.detail-item p,
.cta-band p,
.footer p {
  font-size: 0.98rem;
}

.text-link {
  display: inline-flex;
  color: var(--brand);
  font-weight: 700;
}

.text-link:hover,
.footer a:hover {
  color: var(--accent);
}

.protected-media {
  user-select: none;
  -webkit-user-select: none;
}

.detail-list {
  display: grid;
}

.detail-item {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.detail-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.detail-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.clean-list {
  display: grid;
  gap: 12px;
}

.clean-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 20px;
  align-items: center;
  padding: 32px;
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  border: 1px solid rgba(219, 228, 234, 0.58);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
}

.legal-content {
  max-width: 780px;
}

.page-hero-grid.legal-content {
  grid-template-columns: 1fr;
}

.surface-panel.legal-content {
  max-width: 780px;
}

.footer {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(219, 228, 234, 0.48);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.9fr) minmax(240px, 1fr);
  align-items: start;
}

.footer-block strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.footer-links,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-content: start;
}

.footer-links a,
.footer-meta a,
.footer-meta span {
  color: var(--muted);
  font-size: 0.94rem;
}

@media (min-width: 1400px) {
  .hero-grid,
  .page-hero-grid,
  .two-column,
  .footer-grid {
    gap: 48px;
  }

  .stat-row,
  .grid-3,
  .grid-4,
  .contact-grid,
  .visual-grid {
    gap: 28px;
  }
}

@media (max-width: 1100px) {
  .topbar {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav {
    flex-wrap: wrap;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-grid,
  .page-hero-grid,
  .two-column,
  .footer-grid,
  .contact-layout,
  .contact-showcase {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .contact-grid,
  .stat-row,
  .visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta-band {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .hero-art-globe {
    top: -10px;
    right: -4px;
    width: 88px;
    height: 88px;
  }

  .hero-art-orb {
    bottom: 88px;
    left: -10px;
    width: 54px;
    height: 54px;
    opacity: 0.58;
  }

  .site-shell {
    padding-top: 12px;
  }

  .topbar,
  main,
  .footer {
    width: min(calc(100% - 16px), var(--content-max));
  }

  .topbar {
    position: static;
    padding: 16px;
  }

  .nav {
    width: 100%;
    order: 3;
    gap: 14px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    white-space: nowrap;
  }

  .header-actions {
    order: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-shell,
  .page-hero-shell,
  .summary-panel,
  .surface-panel,
  .cta-band,
  .footer {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-hero-shell {
    padding-top: 28px;
  }

  .contact-showcase {
    gap: 28px;
  }

  .media-frame-contact {
    min-height: 220px;
  }

  h1,
  .page-hero-shell h1 {
    max-width: none;
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  h2 {
    max-width: none;
  }

  .meta-grid,
  .grid-3,
  .grid-4,
  .contact-grid,
  .stat-row,
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button,
  .hero-actions .button-secondary {
    flex: 1 1 100%;
  }

  .header-actions .button,
  .header-actions .theme-toggle {
    width: 100%;
  }

  .media-frame-hero,
  .media-frame-page,
  .media-card .media-frame {
    min-height: 240px;
  }

  .error-visual-frame {
    min-height: 340px;
  }

  .error-visual-frame img {
    width: min(104%, 420px);
  }

  .error-visual-title {
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .motion-ready .reveal-ready,
  .motion-ready .reveal-ready.is-visible,
  .media-frame img,
  .hero-art {
    opacity: 1 !important;
    transform: none !important;
  }
}
