* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #07131b;
  --bg-alt: #0d1b24;
  --surface: rgba(10, 22, 31, 0.84);
  --surface-strong: rgba(17, 34, 47, 0.96);
  --line: rgba(255, 255, 255, 0.09);
  --text: #f3f5f4;
  --muted: #b6c1c6;
  --accent: #d4a24b;
  --accent-2: #79b9ab;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(121, 185, 171, 0.13), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(212, 162, 75, 0.16), transparent 24%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.04), transparent 20%),
    linear-gradient(180deg, #061018 0%, #09141d 44%, #05090d 100%);
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

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

a:hover {
  color: var(--accent);
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.45rem);
}

h3 {
  font-size: 1.2rem;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  transform: translateY(-160%);
  transition: transform 180ms ease;
  z-index: 1000;
}

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

.page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 42px;
}

.header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(7, 17, 25, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  color: #07131b;
  background: linear-gradient(135deg, var(--accent), #f4d38f);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

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

.brand-copy span {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav a {
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav a:hover {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

.hero,
.section {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  padding: 30px;
  align-items: center;
}

.hero::before,
.section-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(121, 185, 171, 0.08), transparent 42%),
    linear-gradient(300deg, rgba(212, 162, 75, 0.08), transparent 38%);
}

.hero-copy,
.hero-media,
.section,
.contact-card,
.footer {
  position: relative;
  z-index: 1;
}

.eyebrow,
.product-eyebrow,
.panel-label {
  margin-bottom: 12px;
  color: var(--accent-2);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-lead,
.section-heading p,
.info-card p,
.product-body p,
.split-panel p,
.application-card span,
.contact-card p,
.footer {
  color: var(--muted);
}

.hero-lead {
  max-width: 62ch;
  margin-top: 18px;
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), #f0cb74);
  border-color: transparent;
  color: #07131b;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
}

.hero-image-card,
.info-card,
.product-card,
.application-card,
.split-panel,
.contact-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-image-card {
  margin: 0;
  background: var(--surface-strong);
}

.hero-image-card img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
}

.hero-image-card figcaption,
.application-card figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
}

.hero-image-card figcaption {
  font-size: 0.96rem;
}

.section {
  margin-top: 24px;
  padding: 28px;
}

.section-soft {
  background: rgba(10, 20, 29, 0.9);
}

.section-heading {
  max-width: 72ch;
  margin-bottom: 24px;
}

.section-heading.narrow {
  max-width: 68ch;
}

.section-heading p {
  margin-top: 16px;
  font-size: 1.02rem;
}

.card-grid {
  display: grid;
  gap: 16px;
}

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

.info-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.info-card h3 {
  margin-bottom: 10px;
}

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

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-body,
.split-panel {
  padding: 20px;
}

.product-body h3 {
  margin-bottom: 10px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 20px;
  align-items: start;
}

.split-copy {
  padding: 6px 4px;
}

.feature-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding: 15px 16px 15px 48px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.03);
}

.panel-label {
  margin-bottom: 10px;
}

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

.application-card {
  margin: 0;
  background: rgba(255, 255, 255, 0.03);
}

.application-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.application-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.application-card.featured {
  grid-column: span 6;
}

.application-card:nth-child(2) {
  grid-column: span 6;
}

.application-card:nth-child(3),
.application-card:nth-child(4) {
  grid-column: span 6;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  background: rgba(17, 34, 47, 0.84);
}

.contact-card h2 {
  max-width: 16ch;
}

.contact-card p {
  max-width: 62ch;
  margin-top: 16px;
}

address.contact-address {
  font-style: normal;
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

address.contact-address a {
  color: var(--accent);
}

address.contact-address a:hover {
  color: var(--text);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 4px 0;
  font-size: 0.92rem;
}

@media (max-width: 1040px) {
  .hero,
  .split-section,
  .contact-card {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .application-card.featured,
  .application-card:nth-child(2),
  .application-card:nth-child(3),
  .application-card:nth-child(4) {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .section {
    padding: 20px;
    border-radius: 24px;
  }

  .hero-image-card img {
    min-height: 320px;
  }

  .four-up,
  .product-grid,
  .application-grid {
    grid-template-columns: 1fr;
  }

  .application-card.featured,
  .application-card:nth-child(2),
  .application-card:nth-child(3),
  .application-card:nth-child(4) {
    grid-column: auto;
  }

  .contact-card,
  .footer {
    display: grid;
  }
}
