@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/manrope-variable.woff2") format("woff2");
}

@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/dm-serif-display.woff2") format("woff2");
}

:root {
  --ink: #08111b;
  --surface: #0e1a27;
  --surface-raised: #132334;
  --line: rgba(197, 210, 220, 0.16);
  --text: #f2eee5;
  --text-muted: #aab5bd;
  --text-faint: #74828c;
  --accent: #c6a66a;
  --accent-hover: #d7b978;
  --status: #35bfa5;
  --warning: #d99545;
  --danger: #c6665b;
  --font-display: "DM Serif Display", Georgia, serif;
  --font-sans: "Manrope", "Segoe UI", sans-serif;
  --container: 75rem;
  --radius: 0.5rem;
  --radius-btn: 0.375rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ink);
  font: 400 16px/1.65 var(--font-sans);
  font-variant-numeric: lining-nums tabular-nums;
  -webkit-font-smoothing: antialiased;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.section {
  padding-block: 4rem;
}
.eyebrow {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.display {
  margin: 0;
  font: 400 clamp(2.625rem, 6vw, 4.75rem)/0.98 var(--font-display);
  letter-spacing: -0.02em;
}
.heading {
  margin: 0;
  font: 400 clamp(2rem, 4vw, 3.25rem)/1.05 var(--font-display);
  letter-spacing: -0.02em;
}
.subheading {
  margin: 0;
  font: 400 clamp(1.25rem, 2vw, 1.5rem)/1.2 var(--font-display);
}
.lead {
  max-width: 65ch;
  margin: 1.25rem 0 0;
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.7;
}
.muted {
  color: var(--text-muted);
}
.faint {
  color: var(--text-faint);
}
.text-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.text-link:hover {
  color: var(--accent-hover);
}
.text-link--arrow::after {
  content: " →";
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: -4rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--ink);
}
.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  z-index: 5;
  top: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(8, 17, 27, 0.96);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font: 400 1.25rem/1 var(--font-display);
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}
.brand-logo {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}
.brand-name {
  line-height: 1;
}
.nav {
  display: none;
  gap: 1.5rem;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 600;
}
.nav a {
  text-decoration: none;
}
.nav a:hover {
  color: var(--text);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  color: inherit;
  font: inherit;
}
.nav-dropdown summary::-webkit-details-marker {
  display: none;
}
.nav-dropdown summary::after {
  margin-left: 0.35rem;
  color: var(--text-faint);
  content: "▾";
  font-size: 0.7em;
}
.nav-dropdown[open] summary {
  color: var(--text);
}
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  z-index: 30;
  min-width: 11rem;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.35);
}
.nav-dropdown-panel a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: calc(var(--radius) - 2px);
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: none;
}
.nav-dropdown-panel a:hover {
  color: var(--text);
  background: rgb(255 255 255 / 0.04);
}
.header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.lang-select select {
  min-height: 2.75rem;
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  color: var(--text-muted);
  background: var(--surface);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  color-scheme: dark;
}
.lang-select select option {
  background: var(--surface-raised);
  color: var(--text);
}
.lang-select select:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.menu-toggle {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: transparent;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 1.1rem;
  height: 1px;
  background: currentColor;
  content: "";
}
.menu-toggle span {
  display: block;
  margin-block: 0.28rem;
}
.mobile-nav {
  display: none;
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid var(--line);
}
.mobile-nav.is-open {
  display: grid;
  gap: 1rem;
}
.mobile-nav a {
  color: var(--text-muted);
  font-weight: 700;
  text-decoration: none;
}
.mobile-nav-label {
  margin: 0.5rem 0 0;
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  min-height: 2.75rem;
  min-width: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: #11100c;
  background: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
}
.btn-quiet {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}
.btn-quiet:hover {
  border-color: var(--text-faint);
  background: var(--surface);
}
.btn-block {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}
.hero-map {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-map::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 17, 27, 0.88) 0%,
    rgba(8, 17, 27, 0.5) 38%,
    rgba(8, 17, 27, 0.12) 65%,
    transparent 100%
  );
  content: "";
}
.hero-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 48%;
  opacity: 0.88;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: end;
  min-height: 32rem;
  padding-block: 5rem 4rem;
}
.hero-copy {
  max-width: 34rem;
}
.home-spotlight {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, rgba(8, 17, 27, 0.72));
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.3;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.home-spotlight:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 16%, rgba(8, 17, 27, 0.82));
}
.home-spotlight__label {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.home-spotlight__title {
  font-weight: 600;
}
.home-spotlight__arrow {
  color: var(--accent);
  font-weight: 700;
}
.insight--featured {
  display: flex;
  flex-direction: column;
  padding: 0;
  border: none;
  border-bottom: none;
  margin-bottom: 0;
  background: transparent;
}
.insight--featured .insight-link {
  flex: 1;
  height: 100%;
  padding: 1.25rem 1.35rem;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
}
.insight--featured .insight-meta time {
  color: var(--accent);
}
.hero-copy .display {
  max-width: 13ch;
  margin-top: 1rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  margin-top: 2.25rem;
}
.workflow-panel {
  max-width: 15rem;
  margin-left: auto;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 17, 27, 0.72);
}
.workflow-title {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.workflow-list {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}
.workflow-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.1rem;
  color: var(--text-faint);
  font-size: 0.78rem;
  line-height: 1.5;
}
.workflow-list li::before {
  position: absolute;
  left: 0;
  color: var(--status);
  content: "✓";
  font-size: 0.7rem;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.trust-item {
  display: flex;
  min-height: 5.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.trust-item:hover {
  color: var(--text);
  background: var(--surface-raised);
}
.trust-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(198, 166, 106, 0.4);
  border-radius: 50%;
  color: var(--accent);
}
.trust-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.section-head-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
}
.cards {
  display: grid;
  gap: 1rem;
}
.card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}
.card:hover {
  border-color: rgba(198, 166, 106, 0.45);
  background: var(--surface-raised);
  transform: translateY(-2px);
}
.card-icon {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--accent);
}
.card-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}
.card--compliance {
  border-color: var(--line);
  background: var(--surface);
}
.card--compliance:hover {
  border-color: rgba(198, 166, 106, 0.45);
}
.step-number {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
}
.card p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.card .text-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.82rem;
}

.process-execution {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.process-execution .eyebrow {
  margin-bottom: 1.25rem;
}

.products {
  background: var(--surface);
}
.product-card {
  display: flex;
  min-height: 14rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.product-card:hover {
  border-color: rgba(198, 166, 106, 0.5);
  transform: translateY(-2px);
}
.product-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.product-meta {
  margin: 0;
  color: var(--text-faint);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-footer {
  margin-top: 1rem;
}
.product-footer .text-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
}

.catalog-grid {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.catalog-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
  overflow: hidden;
}
.catalog-card:hover {
  border-color: rgba(198, 166, 106, 0.5);
  transform: translateY(-2px);
}
.catalog-card__media {
  width: 100%;
  aspect-ratio: 600 / 315;
  object-fit: cover;
  background: var(--surface);
}
.catalog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}
.catalog-card__body .subheading {
  margin-top: 0.35rem;
  font-size: 1.15rem;
}
.catalog-card__meta {
  flex: 1;
  margin: 0.65rem 0 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.55;
}
.catalog-card__price {
  margin: 0.75rem 0 0;
  color: var(--text-faint);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.catalog-card .text-link {
  margin-top: 1rem;
  font-size: 0.82rem;
}

.execution-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.execution-flow li {
  position: relative;
  padding: 1rem 1rem 1rem 2.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  counter-increment: step;
}
.execution-flow li::before {
  position: absolute;
  left: 1rem;
  color: var(--accent);
  content: counter(step);
  font-variant-numeric: tabular-nums;
}
.execution-flow li span {
  color: var(--text);
}
.execution-note {
  max-width: 65ch;
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
}

.compliance-band {
  background: var(--surface);
}
.compliance-grid {
  display: grid;
  gap: 2rem;
}
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.75rem;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
}
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--status);
  content: "✓";
}
.notice {
  padding: 1.5rem;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(8, 17, 27, 0.52);
  color: var(--text-muted);
}
.notice strong {
  color: var(--text);
}

.insights {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}
.insight {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.insight p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
}
.insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.5rem;
}
.insight time {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.insight-meta span {
  color: var(--text-faint);
  font-size: 0.75rem;
  font-weight: 500;
}
.insight-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.insight-link:hover .subheading {
  color: var(--accent);
}
.blog-list {
  display: grid;
  gap: 0;
}
.blog-card {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.blog-card h2 {
  margin: 0 0 0.65rem;
  font: 400 1.15rem/1.3 var(--font-display);
}
.blog-card h2 a {
  color: var(--text);
  text-decoration: none;
}
.blog-card h2 a:hover {
  color: var(--accent);
}
.blog-card p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}
.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
  margin: 0 0 0.65rem;
  color: var(--text-faint);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-card__meta time {
  color: var(--accent);
}
[data-news-page].section {
  padding-block: 1.5rem 1.25rem;
}
[data-news-page] .heading {
  margin-top: 0.35rem;
  font: 400 clamp(1.25rem, 2.2vw, 1.65rem) / 1.15 var(--font-display);
}
[data-news-page] + .section {
  padding-top: 1.75rem;
}
.news-rotator {
  border-bottom: 1px solid var(--line);
  margin-top: 0.75rem;
}
.news-rotator__slides {
  display: grid;
}
.news-rotator__slides > .blog-card--news {
  grid-area: 1 / 1;
  padding: 0.35rem 0 0.25rem;
  border-bottom: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.news-rotator__slides > .blog-card--news.is-active {
  opacity: 1;
  pointer-events: auto;
}
.blog-card--news .blog-card__meta {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
}
.blog-card--news h2 {
  margin: 0 0 0.4rem;
  font: 400 1rem/1.25 var(--font-display);
}
.blog-card--news p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}
.page-hero--blog {
  padding-block: 2.75rem 1.5rem;
}
.page-hero--blog .display {
  font: 400 clamp(2rem, 4.5vw, 3rem) / 1 var(--font-display);
  max-width: none;
}

.form-wrap {
  display: grid;
  gap: 2rem;
}
.form-panel {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.field-grid {
  display: grid;
  gap: 1rem;
}
.field {
  display: grid;
  gap: 0.45rem;
}
.field--full {
  grid-column: 1 / -1;
}
.optional {
  color: var(--text-faint);
  font-weight: 500;
}
.field label,
.field-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  color: var(--text);
  background: var(--ink);
}
.field textarea {
  min-height: 8rem;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-faint);
}
.form-status {
  margin: 1rem 0 0;
  font-size: 0.9rem;
}
.form-status[data-kind="error"] {
  color: #f0a29a;
}
.form-status[data-kind="success"] {
  color: var(--status);
}
.page-login {
  padding: 2rem 0 4rem;
  max-width: 32rem;
}
.gate-status {
  margin: 1rem 0 0;
  font-size: 0.9rem;
}
.gate-status--error {
  color: #f0a29a;
}
.gate-status--success {
  color: #86d4a8;
}
.gate-status--info {
  color: var(--text-muted);
}
.gate-code-input {
  letter-spacing: 0.35em;
  font-size: 1.25rem;
  text-align: center;
}
.gate-email-badge {
  padding: 0.65rem 0.85rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  background: var(--ink);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.form-stack {
  display: grid;
  gap: 1rem;
}
.form-note {
  margin: 1rem 0 0;
  color: var(--text-faint);
  font-size: 0.75rem;
}

.page-hero {
  padding-block: 4.5rem 3rem;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}
.page-hero .display {
  max-width: 16ch;
  margin-top: 1rem;
}
.breadcrumb {
  margin: 0 0 1rem;
  color: var(--text-faint);
  font-size: 0.8rem;
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--text);
}
.content {
  max-width: 48rem;
}
.content h2 {
  margin: 3rem 0 1rem;
  font: 400 clamp(1.8rem, 3vw, 2.6rem)/1.1 var(--font-display);
}
.content h2:first-child {
  margin-top: 0;
}
.content p,
.content li {
  color: var(--text-muted);
}
.content ul {
  padding-left: 1.25rem;
}
.content li + li {
  margin-top: 0.75rem;
}
.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.content th,
.content td {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.content th {
  color: var(--text);
  background: var(--surface);
  font-weight: 600;
}
.content details {
  margin-top: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.content details summary {
  padding: 0.85rem 1rem;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
}
.content details > div,
.content details > p {
  padding: 0 1rem 1rem;
}
.content .product-hero-media {
  margin: 0 0 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.content .product-hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-fab {
  position: fixed;
  z-index: 4;
  right: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  color: var(--text);
  background: var(--surface);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.contact-fab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.sheet-price {
  margin: 1.25rem 0 0;
  color: var(--warning);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sheet-channels {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.sheet-grid {
  display: grid;
  gap: 1.5rem;
}
.sheet-media {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.sheet-media img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}
.spec-panel {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.spec-panel .subheading {
  margin: 0 0 1rem;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.spec-table th,
.spec-table td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.spec-table thead th {
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.spec-table tbody th {
  color: var(--text);
  font-weight: 600;
}
.spec-table tbody td {
  color: var(--text-muted);
}
.sheet-inquiry {
  background: var(--surface);
}
.sheet-inquiry__inner {
  display: grid;
  gap: 2rem;
}
.sheet-inquiry__copy .heading {
  margin: 0.5rem 0 0;
  font: 400 clamp(1.8rem, 3vw, 2.6rem) / 1.1 var(--font-display);
}
.sheet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.sheet-toc {
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.sheet-toc .subheading {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}
.sheet-toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sheet-toc li + li {
  margin-top: 0.5rem;
}
.sheet-toc a {
  color: var(--text-muted);
  font-size: 0.88rem;
  text-decoration: none;
}
.sheet-toc a:hover {
  color: var(--accent);
}
.sheet-content .check-list li strong {
  color: var(--text);
}
.sheet-faq__item {
  border-bottom: 1px solid var(--line);
}
.sheet-faq__item summary {
  padding: 1rem 0;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.sheet-faq__item summary::-webkit-details-marker {
  display: none;
}
.sheet-faq__item summary::after {
  float: right;
  color: var(--accent);
  content: "+";
  font-weight: 400;
}
.sheet-faq__item[open] summary::after {
  content: "−";
}
.sheet-faq__item p {
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
}
.sheet-related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.sheet-disclaimer {
  margin-top: 2rem;
  color: var(--text-faint);
  font-size: 0.82rem;
}

.site-footer {
  padding-block: 3rem 2rem;
  border-top: 1px solid var(--line);
  background: #060d15;
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
.footer-heading {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.footer-list a {
  text-decoration: none;
}
.footer-list a:hover {
  color: var(--text);
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--text-faint);
  font-size: 0.75rem;
}

@media (max-width: 39.99rem) {
  .header-actions .btn-quiet,
  .lang-select {
    display: none;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-grid {
    align-items: start;
  }
  .workflow-panel {
    max-width: none;
    margin-left: 0;
  }
  .hero-map img {
    object-position: 50% 40%;
    opacity: 0.75;
  }
}

@media (min-width: 40rem) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .trust-item {
    border-bottom: 0;
  }
  .cards--three,
  .cards--process,
  .products-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .field-grid--two {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .execution-flow {
    grid-template-columns: repeat(3, 1fr);
  }
  .insights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  body {
    font-size: 17px;
    line-height: 1.7;
  }
  .container {
    width: min(100% - 4rem, var(--container));
  }
  .section {
    padding-block: 6rem;
  }
  .nav {
    display: flex;
  }
  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }
  .hero-grid {
    grid-template-columns: 1fr auto;
    min-height: 38rem;
    padding-block: 6rem 5rem;
    align-items: end;
  }
  .workflow-panel {
    align-self: end;
    margin-bottom: 0.5rem;
  }
  .section-head {
    flex-direction: row;
    align-items: end;
  }
  .cards--three {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards--process {
    grid-template-columns: repeat(4, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sheet-inquiry__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .sheet-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
  .compliance-grid,
  .form-wrap {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .execution-flow {
    grid-template-columns: repeat(6, 1fr);
  }
}

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