/* Scout Mission Critical – Scout Surface color scheme (light), same as Scout Power Solutions */
:root {
  --color-bg: #f8f9fa;
  --color-surface: #ffffff;
  --color-surface-alt: #eef0f2;
  --color-surface-elevated: #ffffff;
  --color-text: #1a1d21;
  --color-text-muted: #5c636a;
  --color-accent: #0066b2;
  --color-accent-hover: #004d8c;
  --font-sans: "Montserrat", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  --max-width: 720px;
  --max-width-wide: 1000px;
  --space: 1.5rem;
  --radius: 6px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: var(--space);
  padding: 0.5rem 1rem;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  z-index: 100;
  transition: top 0.2s;
}
.skip-link:focus {
  top: var(--space);
}

/* Header – Scout Surface style */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-heading);
}
.logo:hover {
  color: var(--color-accent);
}

/* Landing – full-page datacenter background, content centered */
.landing {
  position: relative;
  flex: 1;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem var(--space);
  text-align: center;
  overflow: hidden;
}
.landing-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1a1d21;
}
.landing-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.landing-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(248, 249, 250, 0.92) 100%
  );
}
.landing-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
}
.landing h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  color: #1a1d21;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
}
.landing-tagline {
  font-size: 1.125rem;
  color: #2d3238;
  margin: 0;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Footer – Scout Surface style */
.site-footer {
  background: var(--color-surface-elevated);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.5rem var(--space);
  text-align: center;
  margin-top: auto;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space);
}
.footer-brand {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}
.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  opacity: 0.85;
}
.site-footer a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}
.site-footer a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 640px) {
  .site-header {
    padding: 1.25rem 0;
  }
}
