:root {
  --red: #b82f3b;
  --red-dark: #7f1d29;
  --red-soft: #fff1f2;
  --graphite: #4b5153;
  --graphite-dark: #171b1d;
  --ink: #202426;
  --muted: #667174;
  --line: rgba(24, 28, 30, 0.1);
  --soft: #f5f6f4;
  --cream: #faf8f3;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(23, 27, 29, 0.12);
  --shadow-soft: 0 14px 40px rgba(23, 27, 29, 0.07);
  --font-primary: "Manrope", "Avenir Next", "Segoe UI Variable", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Manrope", "Avenir Next", "Segoe UI Variable", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-primary);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
.table-wrap:focus-visible {
  outline: 2px solid rgba(184, 47, 59, 0.7);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 14px;
  padding: 10px 14px;
  border-radius: 2px;
  background: var(--red);
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, rgba(17, 21, 22, 0.34), rgba(17, 21, 22, 0));
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: blur(0);
  transition:
    min-height 260ms var(--ease-premium),
    padding 260ms var(--ease-premium),
    background 260ms var(--ease-premium),
    border-color 260ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium),
    color 260ms var(--ease-premium),
    backdrop-filter 260ms var(--ease-premium);
}

.site-header.is-scrolled,
.site-header.menu-open {
  min-height: 72px;
  padding-top: 13px;
  padding-bottom: 13px;
  color: var(--graphite);
  background: rgba(250, 248, 243, 0.9);
  border-bottom-color: rgba(24, 28, 30, 0.08);
  box-shadow: 0 10px 34px rgba(23, 27, 29, 0.045);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(202px, 48vw);
}

.brand img,
.site-footer img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 32px);
  color: currentColor;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0;
}

.nav-links a,
.text-link,
.site-footer a {
  text-decoration: none;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-header.is-scrolled .menu-toggle,
.site-header.menu-open .menu-toggle {
  border-color: var(--line);
  background: var(--white);
}

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

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

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

.hero {
  position: relative;
  height: min(900px, 100svh);
  min-height: 680px;
  overflow: hidden;
  background: var(--graphite);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.075) 34%, transparent 52%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-38%);
  animation: hero-light-pass 10s var(--ease-premium) 1.1s both;
}

.hero picture,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 62% center;
  animation: hero-drift 28s var(--ease-premium) both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 21, 22, 0.78) 0%, rgba(17, 21, 22, 0.56) 43%, rgba(17, 21, 22, 0.14) 78%),
    radial-gradient(circle at 72% 22%, rgba(184, 47, 59, 0.12), transparent 30%),
    linear-gradient(0deg, rgba(17, 21, 22, 0.34), rgba(17, 21, 22, 0.03));
}

.hero-content {
  position: absolute;
  bottom: clamp(34px, 7vh, 72px);
  left: clamp(18px, 7vw, 96px);
  width: min(780px, calc(100% - 36px));
  margin: 0;
  color: var(--white);
}

.hero-content .eyebrow,
.hero-content h1,
.hero-accent,
.hero-lead,
.hero-actions {
  animation: hero-copy-in 900ms var(--ease-premium) both;
}

.hero-content .eyebrow {
  animation-delay: 120ms;
}

.hero-content h1 {
  animation-delay: 260ms;
}

.hero-accent {
  position: relative;
  width: min(210px, 46vw);
  height: 18px;
  margin: -2px 0 22px;
  animation-delay: 440ms;
}

.hero-accent span {
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 1px;
  overflow: visible;
  background: linear-gradient(90deg, rgba(184, 47, 59, 0.84), rgba(184, 47, 59, 0.22));
  transform: scaleX(0);
  transform-origin: left;
  animation: hero-line-draw 1100ms var(--ease-premium) 600ms both;
}

.hero-accent span::before,
.hero-accent span::after {
  position: absolute;
  top: 50%;
  content: "";
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}

.hero-accent span::before {
  right: -13px;
  width: 10px;
  height: 16px;
  background: rgba(184, 47, 59, 0.86);
}

.hero-accent span::after {
  right: -18px;
  width: 7px;
  height: 12px;
  background: rgba(255, 255, 255, 0.36);
}

.hero-lead {
  animation-delay: 560ms;
}

.hero-actions {
  animation-delay: 720ms;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffffff;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 5vw, 4.85rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 14px;
  color: var(--graphite-dark);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
}

.hero-lead {
  width: min(720px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 1.6vw, 1.34rem);
  font-weight: 300;
  line-height: 1.58;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

@keyframes hero-drift {
  from {
    transform: scale(1.025) translate3d(-0.35%, 0, 0);
  }

  to {
    transform: scale(1.058) translate3d(0.55%, -0.25%, 0);
  }
}

@keyframes hero-light-pass {
  0% {
    opacity: 0;
    transform: translateX(-46%);
  }

  20% {
    opacity: 0.28;
  }

  100% {
    opacity: 0;
    transform: translateX(42%);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-line-draw {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: auto;
  padding: 4px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    opacity 240ms var(--ease-premium),
    color 240ms var(--ease-premium),
    transform 240ms var(--ease-premium);
}

.button::before,
.button::after {
  content: "";
  flex: 0 0 auto;
  display: inline-block;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition:
    opacity 240ms var(--ease-premium),
    transform 240ms var(--ease-premium);
}

.button::before {
  order: 2;
  width: 8px;
  height: 13px;
  margin-left: 2px;
  background: rgba(184, 47, 59, 0.78);
}

.button::after {
  order: 3;
  width: 6px;
  height: 10px;
  margin-left: -6px;
  background: currentColor;
  opacity: 0.22;
  transform: translateX(1px);
}

.button:hover,
.button:focus-visible {
  transform: translateX(1px);
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 0.92;
  transform: translateX(1px);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 0.32;
  transform: translateX(2px);
}

.hero-actions .button {
  font-size: 0.94rem;
}

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

.button.primary:hover,
.button.primary:focus-visible {
  color: var(--white);
  opacity: 0.9;
}

.button.secondary {
  color: rgba(255, 255, 255, 0.72);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--white);
}

.hero-actions .button.primary,
.hero-actions .button.secondary {
  color: rgba(255, 255, 255, 0.72);
}

.hero-actions .button.primary::before,
.hero-actions .button.secondary::before {
  background: rgba(184, 47, 59, 0.62);
}

.hero-actions .button.primary:hover,
.hero-actions .button.primary:focus-visible,
.hero-actions .button.secondary:hover,
.hero-actions .button.secondary:focus-visible {
  color: var(--white);
}

.button.dark {
  color: var(--graphite-dark);
}

.button.dark:hover,
.button.dark:focus-visible {
  color: var(--red-dark);
}

.section,
.section-band {
  padding: clamp(78px, 9vw, 132px) 0;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 800ms var(--ease-premium),
    transform 800ms var(--ease-premium);
}

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

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  background: linear-gradient(180deg, var(--cream), #ffffff);
}

.intro-grid,
.contact-grid,
.contact-hero {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.intro-copy,
.section-copy {
  color: var(--graphite);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.66;
}

.intro-copy p:last-child,
.contact-lead,
.section-copy {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(34px, 5vw, 58px);
}

.partner-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 5vw, 72px);
  margin-top: clamp(34px, 5vw, 58px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(184, 47, 59, 0.055), transparent 42%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.partner-panel h3 {
  margin-bottom: 0;
}

.partner-panel p:last-child {
  margin-bottom: 0;
  color: var(--graphite);
}

.feature-card,
.contact-info {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(23, 27, 29, 0.045);
}

.feature-card::before {
  position: absolute;
  top: 0;
  left: 28px;
  width: 44px;
  height: 2px;
  content: "";
  background: var(--red);
}

.feature-card > span {
  display: block;
  margin-bottom: 24px;
  color: rgba(23, 27, 29, 0.34);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 1.08rem;
  font-weight: 400;
}

.feature-card p,
.product-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 300;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 42px;
}

.section-heading.split {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.product-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
  border-top: 1px solid rgba(24, 28, 30, 0.12);
}

.product-panel {
  overflow: hidden;
  display: grid;
  align-content: start;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-panel-head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0 26px;
  border-bottom: 1px solid rgba(24, 28, 30, 0.12);
  background: transparent;
}

.product-panel-head h3,
.panel-label {
  margin-bottom: 0;
}

.product-mark {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-left: 1px solid rgba(184, 47, 59, 0.68);
  color: rgba(127, 29, 41, 0.86);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  background: transparent;
}

.product-list {
  display: grid;
  gap: 0;
}

.product-item {
  position: relative;
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid rgba(24, 28, 30, 0.095);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    padding-left 180ms var(--ease-premium);
}

.product-item::before {
  position: absolute;
  top: 26px;
  left: 0;
  width: 7px;
  height: 12px;
  content: "";
  background: rgba(184, 47, 59, 0.56);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.product-item > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.document-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.product-panel-foot {
  padding: 24px 0 0;
}

.document-callout h3 {
  margin-bottom: 10px;
}

.document-callout p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.product-item:last-child {
  border-bottom: 0;
}

.product-item:hover {
  border-color: rgba(184, 47, 59, 0.2);
  background: rgba(184, 47, 59, 0.025);
  padding-left: 32px;
}

.section-muted {
  background: var(--soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: auto;
  padding: 4px 0;
  border: 0;
  color: rgba(127, 29, 41, 0.9);
  font-weight: 400;
  transition:
    color 220ms var(--ease-premium),
    opacity 220ms var(--ease-premium),
    transform 220ms var(--ease-premium);
}

.document-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  justify-content: flex-end;
}

.text-link::before,
.text-link::after {
  content: "";
  flex: 0 0 auto;
  display: inline-block;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition:
    opacity 220ms var(--ease-premium),
    transform 220ms var(--ease-premium);
}

.text-link::before {
  order: 2;
  width: 7px;
  height: 12px;
  margin-left: 2px;
  background: rgba(184, 47, 59, 0.78);
}

.text-link::after {
  order: 3;
  width: 5px;
  height: 9px;
  margin-left: -5px;
  background: var(--graphite);
  opacity: 0.18;
  transform: translateX(1px);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--red);
  transform: translateX(1px);
}

.text-link:hover::before,
.text-link:focus-visible::before {
  transform: translateX(1px);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  opacity: 0.28;
  transform: translateX(2px);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(24, 28, 30, 0.11);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 248, 243, 0.68)),
    var(--white);
  box-shadow: 0 18px 46px rgba(23, 27, 29, 0.055);
}

.table-hint {
  display: none;
  margin: -20px 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
}

caption {
  padding: 20px 22px;
  color: var(--graphite);
  font-weight: 400;
  text-align: left;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(24, 28, 30, 0.08);
  text-align: left;
  white-space: nowrap;
}

th {
  background: rgba(23, 27, 29, 0.96);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

tbody tr:nth-child(even) {
  background: rgba(245, 246, 244, 0.72);
}

tbody tr:hover {
  background: rgba(184, 47, 59, 0.045);
}

td:first-child {
  color: var(--red-dark);
  font-weight: 500;
}

.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 10%, rgba(184, 47, 59, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(184, 47, 59, 0.08), transparent 42%),
    var(--graphite-dark);
}

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

.contact-hero {
  align-items: end;
  padding-bottom: clamp(32px, 5vw, 54px);
}

.contact-actions {
  justify-content: flex-end;
}

.contact-lead {
  width: min(700px, 100%);
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.12rem, 1.65vw, 1.3rem);
  font-weight: 300;
}

.contact-instruction {
  width: min(720px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.contact-info {
  padding: clamp(26px, 4vw, 38px) 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.74);
}

.main-contact-card {
  margin-top: 28px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.main-contact-card span,
.main-contact-card strong,
.main-contact-card a {
  display: block;
}

.main-contact-card span {
  margin-bottom: 10px;
  color: #ffccd1;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-contact-card strong {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 300;
  line-height: 1.1;
}

.main-contact-card a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.main-contact-card a:hover,
.main-contact-card a:focus-visible {
  color: var(--white);
}

.company-data {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.company-data div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.company-data dt {
  color: #ffccd1;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.company-data dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(24px, 4vw, 44px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-list article {
  min-height: 0;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    border-color 220ms var(--ease-premium),
    opacity 220ms var(--ease-premium),
    transform 220ms var(--ease-premium);
}

.contact-list article:hover {
  border-color: rgba(255, 255, 255, 0.24);
  opacity: 0.92;
  transform: translateX(2px);
}

.contact-list span,
.contact-list strong,
.contact-list a {
  display: block;
}

.contact-list span {
  margin-bottom: 10px;
  color: #ffccd1;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-list strong {
  margin-bottom: 12px;
  font-size: 1.08rem;
  font-weight: 400;
}

.contact-list a {
  overflow-wrap: anywhere;
  text-decoration: none;
  transition: color 180ms var(--ease-premium), opacity 180ms var(--ease-premium);
}

.contact-list a {
  color: rgba(255, 255, 255, 0.82);
}

.contact-list a:hover,
.site-footer a:hover {
  color: #ffffff;
}

.site-footer {
  padding: clamp(42px, 6vw, 70px) 0 22px;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(23, 27, 29, 0.96), #111416),
    var(--graphite-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.85fr 0.9fr;
  gap: clamp(28px, 6vw, 74px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.6;
}

.site-footer img {
  width: 150px;
  margin-bottom: 20px;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 7px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 180ms var(--ease-premium), opacity 180ms var(--ease-premium);
}

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

.footer-bottom {
  margin-top: clamp(28px, 5vw, 54px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 13px 12px;
    border-radius: 4px;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: var(--red-soft);
  }

  .nav-links a::after {
    display: none;
  }

  .intro-grid,
  .contact-grid,
  .contact-hero,
  .partner-panel,
  .product-columns,
  .section-heading.split,
  .document-callout,
  .contact-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }

  .document-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand {
    width: 164px;
  }

  .nav-links {
    top: 68px;
  }

  .hero {
    height: 620px;
    min-height: 580px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(18, 20, 21, 0.82) 0%, rgba(18, 20, 21, 0.52) 54%, rgba(18, 20, 21, 0.12) 100%);
  }

  .hero-content {
    bottom: 24px;
    width: calc(100% - 36px);
  }

  h1 {
    font-size: clamp(2rem, 9.6vw, 2.72rem);
    letter-spacing: 0;
  }

  .hero-lead {
    margin-bottom: 14px;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .button {
    width: auto;
  }

  .section,
  .section-band {
    padding: 58px 0;
  }

  .table-hint {
    display: block;
  }

  .feature-grid,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .product-panel-head,
  .product-item,
  .product-panel-foot,
  .feature-card,
  .partner-panel,
  .document-callout,
  .contact-info,
  .contact-list article {
    padding: 20px;
  }

  .company-data div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  table {
    min-width: 880px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-image,
  .hero-content,
  .hero::after,
  .reveal-on-scroll {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
