/* Drive 417 — marketing + apply
   Palette: #E4002B red · #494949 charcoal · #FFFFFF white
   Local. Direct. Not Turo cute. Not Vegas tourist. */

:root {
  --red: #E4002B;
  --red-dark: #b80022;
  --charcoal: #494949;
  --white: #ffffff;
  --ink: #141414;
  --black: #0b0b0b;
  --muted: #6e6e6e;
  --line: #e4e4e4;
  --paper: #f4f4f4;
  --paper-2: #ececec;
  --ok: #1f7a3a;
  --max: 1120px;
  --radius: 10px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  --font: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--red-dark); }
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--red); color: var(--white); padding: 8px 12px; z-index: 100;
}
.skip:focus { left: 8px; top: 8px; }

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--black);
  border-bottom: 3px solid var(--red);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 1rem;
}
.logo-link { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.logo-link img { height: 42px; width: auto; }
.nav { display: flex; align-items: center; gap: 1.25rem; }
.nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.nav a:hover { color: var(--red); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  background: var(--red); color: var(--white);
  font-weight: 700; letter-spacing: 0.02em;
  border: 0; border-radius: 6px;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--red-dark); color: var(--white); }
.btn:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); color: var(--white); }
.btn-block { width: 100%; }
.nav .btn { padding: 0.65rem 1rem; font-size: 0.85rem; }

/* Hero */
.hero {
  background:
    linear-gradient(180deg, rgba(11,11,11,0.55) 0%, rgba(11,11,11,0.88) 100%),
    repeating-linear-gradient(
      -18deg,
      #0b0b0b 0 18px,
      #121212 18px 19px
    );
  color: var(--white);
  padding: 3.5rem 0 3.25rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; right: -80px; bottom: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(228,0,43,0.28), transparent 70%);
  pointer-events: none;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white);
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 3px; background: var(--red);
}
.hero h1 {
  font-size: clamp(2.15rem, 6vw, 4.1rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  font-weight: 800;
  font-style: italic;
  max-width: 16ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--red);
  font-weight: 800;
}
.hero .lede {
  font-size: 1.12rem;
  max-width: 38rem;
  color: #e9e9e9;
  margin: 0 0 1.75rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.hero-actions .mail {
  color: #ddd; font-size: 0.95rem; text-decoration: none;
}
.hero-actions .mail:hover { color: var(--white); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
}
.hero-card .price {
  font-size: 3.1rem;
  font-weight: 800;
  font-style: italic;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-card .price-sub {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-top: 0.25rem;
}
.hero-card ul {
  list-style: none; margin: 1.1rem 0 0; padding: 0;
}
.hero-card li {
  display: flex; gap: 0.55rem; align-items: flex-start;
  padding: 0.38rem 0;
  font-weight: 600;
  font-size: 0.95rem;
}
.hero-card li::before {
  content: "";
  flex: 0 0 16px; height: 16px; margin-top: 3px;
  background: var(--red);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='white' d='M6.2 12.2 2.5 8.5l1.4-1.4 2.3 2.3 5.9-5.9 1.4 1.4z'/></svg>") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='white' d='M6.2 12.2 2.5 8.5l1.4-1.4 2.3 2.3 5.9-5.9 1.4 1.4z'/></svg>") center / contain no-repeat;
}

/* Strip */
.strip {
  background: var(--red);
  color: var(--white);
  padding: 0.95rem 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.strip .wrap {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem; justify-content: space-between;
}
.strip span { display: inline-flex; align-items: center; gap: 0.45rem; }
.strip span::before { content: "●"; font-size: 0.55rem; }

/* Sections */
section { padding: 4rem 0; }
.section-kicker {
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin: 0 0 0.5rem;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}
.sub {
  color: var(--charcoal);
  max-width: 40rem;
  margin: 0 0 2rem;
}
.alt { background: var(--paper); }
.dark {
  background: var(--black);
  color: var(--white);
}
.dark .sub { color: #cfcfcf; }
.dark h2 { color: var(--white); }

.steps, .cards, .include, .faq {
  display: grid; gap: 1rem;
}
.steps { grid-template-columns: repeat(3, 1fr); }
.cards { grid-template-columns: repeat(2, 1fr); }
.include { grid-template-columns: repeat(2, 1fr); }

.step, .card, .inc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem;
}
.dark .step, .dark .inc {
  background: #141414;
  border-color: #2a2a2a;
}
.num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--red); color: var(--white);
  font-weight: 800; font-style: italic;
  border-radius: 4px;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}
.step h3, .card h3, .inc h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}
.step p, .card p, .inc p {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.95rem;
}
.dark .step p, .dark .inc p { color: #c8c8c8; }

.card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}
.card .mark {
  width: 28px; height: 28px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 0.85rem;
}

.inc { border-top: 3px solid var(--red); }
.not-claims {
  margin-top: 1.25rem;
  padding: 1.1rem 1.2rem;
  background: #141414;
  color: #ddd;
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
}
.not-claims strong { color: var(--white); }

/* FAQ */
.faq { grid-template-columns: 1fr 1fr; }
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
}
details summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-weight: 800;
}
details[open] summary::after { content: "–"; }
details p {
  margin: 0.65rem 0 0;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.cta-band {
  background: var(--red);
  color: var(--white);
  padding: 2.5rem 0;
}
.cta-band h2 { margin-bottom: 0.4rem; }
.cta-band p { margin: 0 0 1.1rem; max-width: 36rem; }
.cta-band .btn {
  background: var(--white);
  color: var(--ink);
}
.cta-band .btn:hover { background: #f0f0f0; color: var(--ink); }
.cta-band a.plain { color: var(--white); }

/* Footer */
.site-footer {
  background: var(--black);
  color: #cfcfcf;
  padding: 2.4rem 0 1.6rem;
  font-size: 0.92rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { color: var(--red); }
.site-footer h3 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0.28rem 0; }
.foot-brand img { height: 46px; margin-bottom: 0.7rem; }
.foot-legal {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a2a;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: #8a8a8a; font-size: 0.8rem;
}
.shield {
  width: 72px; height: auto; opacity: 0.9;
}

/* Apply */
.apply-hero {
  background: var(--black);
  color: var(--white);
  padding: 2.2rem 0 1.8rem;
}
.apply-hero h1 {
  font-style: italic;
  letter-spacing: -0.03em;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 0.4rem;
}
.apply-layout {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 1.5rem;
  padding: 2.2rem 0 3.5rem;
  align-items: start;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
}
.side {
  position: sticky; top: 92px;
}
.side ul { margin: 0.4rem 0 0; padding: 0 0 0 1.1rem; color: var(--charcoal); }
.side li { margin: 0.35rem 0; }
.side .note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

fieldset {
  border: 0;
  margin: 0 0 1.35rem;
  padding: 0;
}
legend {
  font-weight: 800;
  font-size: 1.02rem;
  margin-bottom: 0.85rem;
  padding: 0;
  display: block;
  width: 100%;
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.35rem;
}
label.field {
  display: block;
  font-weight: 650;
  font-size: 0.88rem;
  margin: 0 0 0.85rem;
}
label.field span.req { color: var(--red); }
.hint {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.28rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="week"],
select,
textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
  border-color: var(--red);
}
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.check {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-weight: 600;
  font-size: 0.92rem;
  margin: 0.45rem 0;
}
.check input { margin-top: 0.2rem; accent-color: var(--red); width: 1.05rem; height: 1.05rem; }
.file-box {
  border: 1px dashed #bbb;
  border-radius: 8px;
  padding: 1rem;
  background: var(--paper);
  margin-top: 0.4rem;
}
.file-box input { width: 100%; }
.file-list {
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--charcoal);
}
.file-list li {
  padding: 0.2rem 0;
  border-bottom: 1px solid var(--line);
}
.form-error {
  background: #fde8ec;
  color: #8a1022;
  border: 1px solid #f5b7c2;
  padding: 0.7rem 0.85rem;
  border-radius: 6px;
  margin: 0 0 1rem;
  display: none;
}
.form-error.show { display: block; }
.success {
  display: none;
  text-align: left;
  padding: 1.5rem 0 3rem;
}
.success.show { display: block; }
.success h2 { color: var(--ink); }
.success-mark {
  width: 48px; height: 48px;
  background: var(--ok);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}
.busy .btn[type="submit"] { opacity: 0.7; pointer-events: none; }

/* Mobile */
@media (max-width: 860px) {
  .hero-grid, .apply-layout, .steps, .cards, .include, .faq, .foot-grid, .row-2 {
    grid-template-columns: 1fr;
  }
  .nav a:not(.btn) { display: none; }
  .side { position: static; }
  .hero { padding: 2.4rem 0 2.2rem; }
  .logo-link img { height: 34px; }
  .shield { width: 56px; }
  .hero-card { order: -1; }
}

.gig-other-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem 1rem;
  margin-top: 0.35rem;
}
.gig-other-row .gig-other-field {
  flex: 1 1 12rem;
  margin: 0;
}
.gig-other-row .gig-other-field input:disabled {
  opacity: 0.55;
}
