:root {
  --bg: #050505;
  --panel: #111111;
  --panel-strong: #181818;
  --line: #2b2b2b;
  --text: #f4f1e8;
  --muted: #a9a59a;
  --accent: #F2F200;
  --field: #0b0b0b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: min(52vw, 13rem);
  height: auto;
  object-fit: contain;
}

.header-button,
.lead-form button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 0.25rem;
  background: var(--accent);
  color: #080808;
  font-weight: 700;
  line-height: 1;
}

.header-button {
  flex: 0 0 auto;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
}

.hero,
.pilot-section {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 3rem 1rem;
}

.hero {
  display: grid;
  gap: 2.5rem;
  min-height: calc(100svh - 5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.2rem, 18vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h1 span {
  color: var(--accent);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 10vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-text {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-text p {
  margin-bottom: 0.8rem;
}

.hero-text p:last-child,
.pilot-copy p:last-child,
.site-footer p {
  margin-bottom: 0;
}

.phone-panel {
  width: min(100%, 22rem);
  margin: 0 auto;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: var(--panel);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.45);
}

.phone-panel img {
  width: 100%;
  border-radius: 1.15rem;
}

.pilot-section {
  display: grid;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
}

.pilot-copy {
  max-width: 32rem;
}

.pilot-copy p {
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--panel-strong);
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
}

.lead-form span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lead-form input {
  width: 100%;
  min-height: 3rem;
  border: 1px solid #3a3a3a;
  border-radius: 0.25rem;
  background: var(--field);
  color: var(--text);
  font: inherit;
  padding: 0.75rem 0.85rem;
}

.lead-form input:focus {
  border-color: var(--accent);
  outline: 1px solid var(--accent);
  outline-offset: 0;
}

.lead-form button {
  width: 100%;
  margin-top: 0.25rem;
  cursor: pointer;
  font: inherit;
}

.header-button:hover,
.lead-form button:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 1rem 1rem 1.5rem;
  border-top: 1px solid var(--line);
  color: #77736b;
  font-size: 0.75rem;
}

.site-footer p:first-child {
  color: #8f8a80;
  font-weight: 600;
}

@media (min-width: 760px) {
  .site-header {
    padding: 1.25rem 2rem;
  }

  .brand img {
    width: 15rem;
  }

  .hero,
  .pilot-section {
    padding: 4rem 2rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    gap: 3rem;
    align-items: start;
    padding-top: 1.5rem;
  }

  h1 {
    font-size: clamp(3.65rem, 6.8vw, 5.9rem);
  }

  .hero-text {
    font-size: 1.2rem;
  }

  .phone-panel {
    width: min(100%, 25rem);
  }

  .pilot-section {
    grid-template-columns: 0.8fr 1fr;
    align-items: start;
  }

  .lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.25rem;
  }

  .lead-form button {
    grid-column: 1 / -1;
  }

  .site-footer {
    flex-direction: row;
    justify-content: space-between;
    padding-inline: 2rem;
  }
}

@media (min-width: 1100px) {
  .hero {
    gap: 5rem;
  }

  .phone-panel {
    width: min(100%, 27rem);
  }
}
