:root {
  color-scheme: dark;
  --background: #101114;
  --surface: #191b20;
  --surface-raised: #22252b;
  --text: #f7f7f5;
  --muted: #a8adb7;
  --line: #353941;
  --red: #c70812;
  --yellow: #f3d51f;
  --blue: #3996d9;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--background); color: var(--text); }
a { color: inherit; }

.site-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(16, 17, 20, 0.96);
}

.wordmark { display: flex; align-items: center; gap: 12px; color: var(--text); font-size: 19px; font-weight: 800; text-decoration: none; }
.wordmark small { color: var(--muted); font-size: 10px; }
.wordmark-mark { width: 34px; height: 34px; display: block; object-fit: contain; }
nav { display: flex; gap: 24px; }
nav a { color: var(--muted); font-size: 13px; font-weight: 700; text-decoration: none; }
nav a:hover, nav a:focus-visible { color: var(--text); }

main > section { padding: 72px max(5vw, calc((100vw - 1180px) / 2)); }
.company { min-height: 540px; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(290px, 0.6fr); align-items: center; gap: 72px; }
.eyebrow { margin: 0 0 14px; color: var(--yellow); font-size: 12px; font-weight: 900; letter-spacing: 0; }
.company-logo { display: block; width: clamp(120px, 16vw, 216px); height: auto; margin: 0 0 24px; }
h1 { max-width: 760px; margin: 0; font-size: clamp(52px, 9vw, 112px); line-height: 0.9; letter-spacing: 0; }
h2 { margin: 0; font-size: clamp(28px, 4vw, 46px); line-height: 1.05; letter-spacing: 0; }
.lead { max-width: 690px; margin: 30px 0; color: #d4d7dc; font-size: clamp(18px, 2vw, 24px); line-height: 1.55; }
.company-facts { display: flex; flex-wrap: wrap; gap: 34px; }
.company-facts div { display: grid; gap: 5px; }
.company-facts span, .identity-label { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.company-facts strong { font-size: 16px; }
.identity-panel { border-left: 4px solid var(--red); background: var(--surface); padding: 30px; }
.identity-panel strong { display: block; margin: 18px 0 12px; font-size: 23px; line-height: 1.25; }
.identity-panel p { margin: 0; color: var(--muted); line-height: 1.7; }

.products { border-block: 1px solid var(--line); background: #0b0c0e; }
.section-heading { margin-bottom: 32px; }
.product { min-height: 470px; display: grid; grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr); overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.product-visual { position: relative; min-height: 460px; display: grid; place-items: end center; overflow: hidden; background: #050506; }
.product-visual::before { content: ""; position: absolute; inset: 10%; border: 1px solid #282b31; transform: rotate(12deg); }
.product-visual img { position: relative; z-index: 1; width: min(92%, 520px); height: auto; max-height: 520px; object-fit: contain; object-position: bottom; }
.product-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 6vw, 72px); }
.ofr-logo { width: min(260px, 75%); height: auto; margin-bottom: 24px; }
.product-copy p { max-width: 640px; margin: 0 0 18px; color: #d3d6dc; font-size: 17px; line-height: 1.7; }
.product-copy ul { margin: 0 0 28px; padding-left: 20px; color: var(--muted); line-height: 2; }
.product-link { width: fit-content; border-bottom: 2px solid var(--red); padding: 8px 0; font-weight: 800; text-decoration: none; }
.product-link:hover, .product-link:focus-visible { color: var(--yellow); }

.details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 80px; }
.details > div { border-top: 3px solid var(--blue); padding-top: 24px; }
.details h2 { margin-bottom: 20px; font-size: 28px; }
.details address, .details p { margin: 0 0 18px; color: var(--muted); font-style: normal; line-height: 1.8; }
.details a { font-weight: 800; text-decoration-color: var(--red); text-underline-offset: 5px; }

footer { min-height: 84px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px 36px; padding: 20px 5vw; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
footer a { margin-left: auto; }

@media (max-width: 760px) {
  .site-header { min-height: 64px; padding-inline: 18px; }
  nav { gap: 14px; }
  nav a { font-size: 11px; }
  nav a:nth-child(2) { display: none; }
  main > section { padding: 50px 20px; }
  .company { min-height: auto; grid-template-columns: 1fr; gap: 42px; }
  .company-facts { gap: 22px; }
  .product { grid-template-columns: 1fr; }
  .product-visual { min-height: 350px; }
  .product-copy { padding: 32px 24px 40px; }
  .details { grid-template-columns: 1fr; gap: 52px; }
  footer { padding-inline: 20px; }
  footer a { margin-left: 0; }
}

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