/* styles.css */
:root {
  --bg-fall: #101111;
  --asphalt: #333333;
  --concrete: #a9a9a9;
  --smoke: #f8f9fa;
  --safety-orange: #ff6700;
  --vested-yellow: #d7df23;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: var(--bg-fall);
  color: var(--smoke);
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Hero with fade into #101111 */
.hero {
  min-height: 100vh;
  background: linear-gradient(
      to bottom,
      rgba(16, 17, 17, 0) 55%,
      rgba(16, 17, 17, 0.75) 75%,
      var(--bg-fall) 100%
    ),
    url("OSCS_WelcomePage_Background.png") center top / cover no-repeat;
  display: flex;
  flex-direction: column;
}

/* Top brand lockup */
.brand {
  padding: 60px 0 0;
  display: flex;
  justify-content: center;
}

.brand .logo {
  width: 70%;
  max-width: 400px;
}

@media (min-width: 768px) {
  .brand {
    padding: 220px clamp(16px, 5vw, 64px) 24px;
  }

  .brand .logo {
    width: 70%;
    max-width: 458px;
  }
}

/* Main content column */
.content {
  width: 100%;
  max-width: 100ch;
  padding: 40px clamp(16px, 5vw, 64px) 96px;
}
.eyebrow {
  margin: 8px 0 30px;
  font-family: "Roboto Slab", serif;
  font-weight: 600;
  letter-spacing: 0;
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--smoke);
  opacity: 0.9;
}
.content p {
  margin: 0 0 30px 0;
  color: var(--smoke);
  font-weight: 300;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.75;
}
.content strong {
  font-weight: 600;
}

/* Lead form */
.lead-form-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.lead-form {
  max-width: 440px;
  margin: 0 0 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.lead-form input[type="email"] {
  flex: 1 1 240px;
  min-width: 240px;
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: var(--smoke);
  font-size: 16px;
  outline: none;
}
.lead-form input::placeholder {
  color: #cfd2d4;
}
.lead-form .btn {
  flex: 0 0 auto;
  padding: 14px 18px;
  border: 0;
  border-radius: 6px;
  background: var(--vested-yellow);
  color: #121212;
  font-weight: 700;
  font-size: 16px;
  text-transform: none;
  cursor: pointer;
}
.lead-form .btn:focus-visible,
.lead-form input[type="email"]:focus-visible {
  outline: 2px solid var(--vested-yellow);
  outline-offset: 2px;
}
.lead-form .hp {
  position: absolute;
  left: -5000px;
}
.mc-responses {
  margin-top: 6px;
  font-size: 14px;
  color: var(--concrete);
}
.response {
  min-height: 1em;
}

/* Bottom orange headline */
.cta {
  margin: 40px 0 0;
  font-family: "DIN Condensed", Impact, sans-serif;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.95;
  letter-spacing: 0.06em;
  color: var(--safety-orange);
  font-size: clamp(40px, 5.5vw, 54px);
}

/* Utilities */
.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* Larger screens, give the column more breathing room */
@media (min-width: 1100px) {
  .content {
    padding-left: 96px;
  }
  .content p {
    padding-bottom: 20px;
    line-height: 1.9;
  }
  .brand {
    padding-left: 96px;
  }
}
