:root {
  --navy-950: #07111e;
  --navy-900: #101d2d;
  --navy-800: #17283a;
  --blue-500: #36a0b7;
  --blue-300: #84d5e5;
  --white: #ffffff;
  --muted: #aebdca;
  --line: rgb(255 255 255 / 18%);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--navy-950);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  background: var(--navy-950);
}

button,
a {
  font: inherit;
}

.page-backdrop {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(7 17 30 / 96%) 0%, rgb(7 17 30 / 82%) 46%, rgb(7 17 30 / 42%) 100%),
    linear-gradient(0deg, rgb(7 17 30 / 60%), transparent 55%),
    url("./assets/aio-industrial-hero.jpg") center / cover no-repeat;
  transform: scale(1.015);
}

.page-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgb(255 255 255 / 16%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 16%) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000, transparent 68%);
}

.page-frame {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.site-header {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.company-logo {
  display: block;
  width: 264px;
  height: 72px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
}

.header-label,
.section-kicker,
.panel-index,
.detail-label,
.site-footer {
  font-family: Orbitron, Inter, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.18em;
}

.header-label {
  color: var(--blue-300);
}

.contact-layout {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
  padding: 72px 0;
}

.intro-panel {
  max-width: 610px;
}

.section-kicker {
  margin: 0 0 20px;
  color: var(--blue-300);
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 7.6rem);
  font-weight: 620;
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.role {
  margin: 28px 0 0;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 530;
}

.credentials {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.contact-details {
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.detail-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.detail-label {
  padding-top: 4px;
  color: var(--blue-300);
  font-size: 0.61rem;
}

.detail-row a,
.detail-row p {
  margin: 0;
  color: var(--white);
  line-height: 1.55;
  text-decoration: none;
}

.detail-row a:hover {
  color: var(--blue-300);
}

.action-panel {
  position: relative;
  padding: clamp(30px, 5vw, 50px);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 2px;
  background: linear-gradient(145deg, rgb(16 29 45 / 94%), rgb(23 40 58 / 86%));
  box-shadow: 0 30px 80px rgb(0 0 0 / 32%);
  backdrop-filter: blur(18px);
}

.action-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 92px;
  height: 4px;
  background: var(--blue-500);
}

.panel-index {
  color: var(--blue-300);
}

h2 {
  margin: 28px 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.status {
  min-height: 66px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.actions {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action {
  width: 100%;
  min-height: 58px;
  padding: 14px 22px;
  border-radius: 1px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.primary-action {
  color: var(--navy-950);
  border: 1px solid var(--blue-300);
  background: var(--blue-300);
}

.secondary-action {
  color: var(--white);
  border: 1px solid rgb(255 255 255 / 42%);
  background: transparent;
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-1px);
}

.primary-action:hover {
  background: #a9e8f2;
}

.secondary-action:hover {
  border-color: var(--white);
  background: rgb(255 255 255 / 8%);
}

.primary-action:focus-visible,
.secondary-action:focus-visible,
a:focus-visible {
  outline: 3px solid var(--blue-300);
  outline-offset: 4px;
}

.privacy-note {
  margin: 18px 0 0;
  color: #93a6b7;
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 860px) {
  .page-backdrop {
    background:
      linear-gradient(180deg, rgb(7 17 30 / 66%) 0%, rgb(7 17 30 / 96%) 48%, var(--navy-950) 100%),
      url("./assets/aio-industrial-hero.jpg") 58% top / auto 52vh no-repeat;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 48px;
    padding: 58px 0;
  }

  .intro-panel {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .page-frame {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    min-height: 104px;
  }

  .company-logo {
    width: 200px;
    height: auto;
  }

  .header-label {
    display: none;
  }

  h1 {
    font-size: clamp(3.7rem, 21vw, 5.4rem);
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
    line-height: 1.6;
  }
}

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