:root {
  --navy: #000000;
  --navy-deep: #050505;
  --coral: #ff6347;
  --coral-soft: #ff8d71;
  --cream: #f5f7fb;
  --ink: #000000;
  --muted: rgba(0, 0, 0, 0.68);
  --line: rgba(0, 0, 0, 0.12);
  --surface: rgba(255, 255, 255, 0.84);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
  --pointer-x: 50%;
  --pointer-y: 40%;
  --scroll-progress: 0;
  --anchor-offset: 112px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 38%, rgba(0, 0, 0, 0.08) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.46)),
    url("./assets/hero-wire-macro.png");
  background-size: cover;
  background-position: center right;
  background-attachment: fixed;
}

body {
  margin: 0;
  color: #fff;
  background: transparent;
  font-family: "Bahnschrift", "Segoe UI", system-ui, sans-serif;
  overflow-x: hidden;
}

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

.page-shell {
  width: 100%;
  position: relative;
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 233, 201, 0.34), transparent 16%),
    radial-gradient(circle at calc(var(--pointer-x) + 7%) calc(var(--pointer-y) + 8%), rgba(255, 99, 71, 0.2), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.015), transparent 34%);
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 180ms ease;
  opacity: 0.92;
  z-index: 10;
}

.page-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), transparent 30%, transparent 60%, rgba(0, 0, 0, 0.25));
  pointer-events: none;
  z-index: 9;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(0, 0, 0, 0.86);
  color: #fff;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
  mask-image: radial-gradient(circle at center, #000 0%, #000 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, #000 70%, transparent 100%);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.topnav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
}

.topnav a {
  position: relative;
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.topnav a:hover {
  color: #fff;
}

.topnav a:hover::after {
  transform: scaleX(1);
}

.button-header {
  min-height: 42px;
  padding-inline: 18px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100svh - 80px);
  scroll-margin-top: var(--anchor-offset);
  padding: clamp(30px, 5vw, 72px);
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  color: #fff;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 760px;
  position: relative;
  z-index: 3;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.hero-copy .lead {
  max-width: 56ch;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 159, 133, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.2vw, 5.6rem);
  max-width: 15ch;
  text-wrap: balance;
}

.lead {
  margin: 22px 0 0;
  max-width: 58ch;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.76);
}

.hero-actions,
.company-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(180deg, var(--coral-soft), var(--coral));
  color: white;
  box-shadow: 0 16px 30px rgba(255, 99, 71, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.button-tertiary {
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section {
  padding: clamp(72px, 7vw, 112px) clamp(20px, 4vw, 56px);
  scroll-margin-top: var(--anchor-offset);
  position: relative;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-bottom: 34px;
}

.section-intro {
  margin: 0;
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  font-size: 1.02rem;
}

.launch-note {
  max-width: 760px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 99, 71, 0.28);
  border-radius: 16px;
  background: rgba(255, 99, 71, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.65;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #ffffff;
}

.section-products {
  background: transparent;
}

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

.product-card {
  display: grid;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
}

.product-visual {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #111111;
}

.product-visual::before,
.product-visual::after {
  display: none;
}

.product-visual img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 70%;
  transition:
    transform 320ms ease,
    filter 320ms ease;
}

.product-card:hover .product-visual img {
  transform: scale(1.035);
  filter: contrast(1.04) saturate(1.04);
}

.product-body {
  padding: 28px 28px 30px;
}

.product-body h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--navy);
}

.product-body p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.product-body ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.product-body li {
  position: relative;
  padding-left: 22px;
  color: rgba(0, 0, 0, 0.82);
  line-height: 1.6;
}

.product-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 99, 71, 0.12);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.inline-link {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-cta-row,
.reference-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.detail-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 99, 71, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 253, 0.92));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.08);
}

.detail-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -18% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 99, 71, 0.1), transparent 68%);
  pointer-events: none;
}

.detail-head {
  display: grid;
  gap: 10px;
}

.detail-head h3 {
  margin: 0;
  font-size: 1.7rem;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.detail-head p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.75;
}

.detail-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.detail-stats > div {
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-label {
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 700;
}

.detail-stats strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.45;
}

.detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.detail-columns h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1rem;
}

.detail-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.detail-columns li {
  position: relative;
  padding-left: 18px;
  color: rgba(0, 0, 0, 0.82);
  line-height: 1.6;
}

.detail-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--navy);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}

.process-banner {
  margin-top: 24px;
  padding: 26px 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 99, 71, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.94), rgba(10, 10, 10, 0.98));
  color: #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.process-banner h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.process-banner p:not(.eyebrow) {
  margin: 10px 0 0;
  max-width: 76ch;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.spec-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.spec-card {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.spec-card strong {
  display: block;
  margin-top: 2px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.45;
}

.spec-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.other-products-section {
  padding: clamp(72px, 7vw, 112px) clamp(20px, 4vw, 56px);
  background: transparent;
  scroll-margin-top: var(--anchor-offset);
}

.other-products-section h3 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #ffffff;
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.other-products-section p {
  margin: 0 0 24px;
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  font-size: 1.02rem;
}

.reference-section {
  margin-top: 28px;
  scroll-margin-top: var(--anchor-offset);
}

.reference-section .section-intro {
  color: rgba(255, 255, 255, 0.72);
}

.reference-head {
  margin-bottom: 20px;
}

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

.reference-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.08);
}

.table-shell {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.reference-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 16px;
}

.reference-card-head strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1.2;
}

.metric-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
}

.reference-card table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    filter 180ms ease;
  will-change: opacity, transform;
}

.reference-card.is-updating table {
  opacity: 0.38;
  transform: translateY(6px) scale(0.995);
  filter: blur(0.4px);
}

.reference-card thead th {
  padding: 8px 10px;
  background: linear-gradient(180deg, #ff8a42, #f06d1c);
  color: #fff;
  text-align: center;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: normal;
  word-break: break-word;
}

.reference-card thead th:first-child {
  border-radius: 0;
}

.reference-card tbody td {
  padding: 7px 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  color: rgba(0, 0, 0, 0.85);
  text-align: center;
  font-variant-numeric: tabular-nums;
  white-space: normal;
  word-break: break-word;
}

.reference-card tbody tr:nth-child(odd) td {
  background: rgba(0, 0, 0, 0.025);
}

.reference-card tbody tr:hover td {
  background: rgba(240, 109, 28, 0.06);
}

.section-process,
.section-facilities {
  background: transparent;
}

.media-grid {
  display: grid;
  gap: 22px;
}

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

.media-figure {
  position: relative;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.media-figure img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition:
    transform 320ms ease,
    filter 320ms ease;
}

.media-figure:hover img {
  transform: scale(1.035);
  filter: contrast(1.04) saturate(1.04);
}

.media-figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 22px 16px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.section-applications {
  background: transparent;
}

.application-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.app-chip {
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.application-note {
  margin: 18px 0 0;
  max-width: 78ch;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.section-quality {
  background: transparent;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.quality-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.quality-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

.quality-card strong {
  display: block;
  font-size: 1.5rem;
  color: var(--navy);
}

.quality-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.quality-cert-button {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--coral-soft), var(--coral));
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(255, 99, 71, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.quality-cert-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 99, 71, 0.32);
}

.quality-spec-buttons {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quality-spec-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--coral-soft), var(--coral));
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(255, 99, 71, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.quality-spec-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 99, 71, 0.32);
}

.section-contact {
  background: transparent;
}

.rfq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 20px;
  align-items: start;
}

.rfq-form,
.rfq-sidebar {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.08);
}

.rfq-form {
  padding: 26px;
}

.rfq-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.rfq-row-wide {
  grid-template-columns: 1fr;
}

.rfq-form label {
  display: grid;
  gap: 8px;
}

.rfq-form span {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
}

.rfq-form input,
.rfq-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
  color: var(--navy);
  font: inherit;
}

.rfq-form input::placeholder,
.rfq-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.rfq-form input:focus,
.rfq-form textarea:focus {
  outline: 2px solid rgba(255, 99, 71, 0.35);
  border-color: rgba(255, 99, 71, 0.4);
}

.rfq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.rfq-actions .button-secondary {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.14);
  color: #000000;
}

.rfq-sidebar {
  padding: 20px;
  display: grid;
  gap: 16px;
  background:
    radial-gradient(circle at top right, rgba(255, 99, 71, 0.05), transparent 28%),
    rgba(255, 255, 255, 0.92);
}

.rfq-card {
  padding: 18px 18px 20px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.rfq-card strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.45;
}

.rfq-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.rfq-checklist {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.55;
}

.rfq-checklist li {
  position: relative;
  padding-left: 18px;
}

.rfq-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 99, 71, 0.12);
}

.section-company {
  background: transparent;
}

.company-panel {
  max-width: 900px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(241, 241, 241, 0.86)),
    rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
}

.company-panel .eyebrow {
  color: var(--coral);
}

.company-panel h2 {
  color: #000000;
}

.company-panel p:not(.eyebrow) {
  color: rgba(0, 0, 0, 0.72);
}

.company-panel p:not(.eyebrow) {
  max-width: 70ch;
  font-size: 1.04rem;
  line-height: 1.8;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #000000;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: 28px clamp(20px, 4vw, 56px) 40px;
  background: #060606;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-brand p,
.footer-note {
  margin: 8px 0 0;
  max-width: 78ch;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.footer-links span {
  display: block;
  margin-bottom: 10px;
  color: #ff9f85;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}

.footer-links a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.footer-note {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.92rem;
}

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

  .product-grid,
  .quality-grid,
  .detail-grid,
  .detail-stats,
  .detail-columns,
  .spec-band,
  .media-grid-2,
  .reference-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --anchor-offset: 16px;
  }

  .topbar {
    position: relative;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }

  .topbar-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .topnav {
    gap: 14px 18px;
    justify-content: flex-start;
    font-size: 0.88rem;
  }

  .brand-copy span {
    display: none;
  }

  .button-header {
    width: 100%;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 36px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 13vw, 4.1rem);
  }

  .section {
    padding-inline: 16px;
  }

  .product-body,
  .quality-card,
  .rfq-form {
    padding: 22px;
  }

  .rfq-grid,
  .footer-links,
  .rfq-row {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 12px;
  }

  .reference-card-head {
    padding: 18px 16px 12px;
  }

  .reference-card thead th {
    padding: 7px 6px;
    font-size: 0.6rem;
    letter-spacing: 0.03em;
  }

  .reference-card tbody td {
    padding: 7px 6px;
    font-size: 0.72rem;
  }
}
