/* Shared styles for the main page and the role pages. */
:root {
  /* Burn Boot Camp palette (from burnbootcamp.com) */
  --accent: #00b1e1;        /* Burn blue */
  --accent-dark: #0099c7;
  --accent-tint: rgba(0,177,225,.12);
  --yellow: #fdda13;        /* Burn yellow */
  --ink: #0b0b0c;           /* black background */
  --ink-2: #2a2a2e;
  --muted: #6b6b73;
  --line: #e4e4e8;
  --bg: #ffffff;
  --bg-soft: #f2f2f2;
  --radius: 14px;
  --display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --body: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .brand {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1;
  margin: 0;
}
a { color: inherit; }
.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* Placeholder text you still need to fill in. Highlighted so it can't be missed. */
.fill { background: #fff1a8; color: #111; padding: 0 .25em; border-radius: 3px; }

/* ---------- Header ---------- */
header {
  position: absolute; inset: 0 0 auto 0; z-index: 10;
  padding: 18px 0;
}
header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.brand { color: #fff; font-size: 28px; text-decoration: none; }
.brand small {
  display: block; font-family: var(--body); text-transform: uppercase; color: var(--accent);
  font-size: 12px; font-weight: 700; letter-spacing: .08em; margin-top: 2px;
}
/* To use your logo instead: <a class="brand" href="#"><img src="logo.png" alt="Burn Boot Camp" height="40"></a> */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: var(--ink); text-decoration: none; border: 0;
  font: 400 22px/1 var(--display); letter-spacing: .06em; text-transform: uppercase;
  padding: 15px 28px 13px; border-radius: 999px; cursor: pointer;
  transition: background .15s, transform .15s;
}
.btn:hover { background: var(--accent-dark); }
.btn:active { transform: scale(.98); }
.btn-sm { padding: 10px 18px 8px; font-size: 18px; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(0,177,225,.30), transparent 60%),
    radial-gradient(800px 400px at -10% 110%, rgba(0,56,101,.55), transparent 60%),
    var(--ink);
  color: #fff;
  padding: 120px 0 64px;
}
.eyebrow {
  display: inline-block; font-weight: 700; font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink);
  background: var(--yellow); border: 0;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(56px, 15vw, 104px); max-width: 14ch; }
.hero h1 span { color: var(--accent); }
.hero p.lead { font-size: 18px; color: #d4d4da; max-width: 560px; margin: 18px 0 26px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 30px; padding: 0; list-style: none; }
.chips li {
  font-size: 14px; font-weight: 600; padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
}
.hero .note { font-size: 14px; color: #a0a0a8; margin-top: 14px; }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
.section-head { margin-bottom: 28px; }
.section-head h2 { font-size: clamp(40px, 9vw, 58px); }
.section-head p { color: var(--muted); margin: 10px 0 0; max-width: 560px; }
.kicker { display:block; font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 8px; }

.grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px;
}
.card h3 { font-size: 28px; margin-bottom: 6px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.card .icon {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: var(--accent-tint); color: var(--accent); margin-bottom: 14px; font-size: 20px;
}
.soft { background: var(--bg-soft); }
.tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; margin-bottom: 12px;
}
.tag-ft { background: var(--yellow); color: var(--ink); }
.tag-pt { background: var(--accent-tint); color: #006d8f; }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.checklist li::before {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* ---------- Form ---------- */
#apply { background: var(--ink); color: #fff; }
#apply .section-head p { color: #b4b4bc; }
#apply .kicker { color: var(--yellow); }
.form-card {
  background: #fff; color: var(--ink); border-radius: 20px;
  padding: 24px 20px; max-width: 720px; margin: 0 auto;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
@media (min-width: 640px) { .form-card { padding: 36px; } }
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .full { grid-column: 1 / -1; } }

.field label, .field .label {
  display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px;
}
.field .opt { font-weight: 500; color: var(--muted); }
.field .req { color: var(--accent); }
.field .hint { font-size: 13px; color: var(--muted); margin-top: 6px; }
input[type=text], input[type=email], input[type=tel], select, textarea {
  width: 100%; font: 16px/1.4 var(--body); color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 13px 14px; transition: border-color .15s, box-shadow .15s;
  appearance: none; -webkit-appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6b73' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 18px;
  padding-right: 40px;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(0,177,225,.2);
}
.prefix { position: relative; }
.prefix span { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); font-weight: 600; }
.prefix input { padding-left: 32px; }

/* Resume drop zone: the real file input covers the box, so tap and drag-drop both work */
.drop {
  position: relative; border: 2px dashed #cfcfd6; border-radius: 12px;
  padding: 26px 16px; text-align: center; background: var(--bg-soft);
  transition: border-color .15s, background .15s;
}
.drop:hover, .drop.drag { border-color: var(--accent); background: #eaf8fc; }
.drop input[type=file] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.drop .big { font-weight: 700; font-size: 16px; }
.drop .small { font-size: 13px; color: var(--muted); margin-top: 4px; }
.drop.has-file { border-style: solid; border-color: #1f9d55; background: #f0faf4; }
.drop.has-file .big { color: #1f7a45; }
.drop.bad { border-color: #d93025; background: #fdf1f0; }

.hidden-field { display: none; }
.submit-row { margin-top: 26px; }
.submit-row .btn { width: 100%; font-size: 26px; padding: 18px 18px 15px; }
.btn[disabled] { opacity: .7; cursor: wait; }
.fine { font-size: 13px; color: var(--muted); text-align: center; margin: 14px 0 0; }
.error-box {
  display: none; margin-top: 16px; padding: 14px; border-radius: 10px;
  background: #fdf1f0; color: #a3261c; font-size: 15px; border: 1px solid #f5c6c2;
}
.error-box.show { display: block; }

/* ---------- Footer ---------- */
footer { padding: 36px 0 110px; font-size: 13px; color: var(--muted); text-align: center; }
footer p { margin: 6px 0; }
@media (min-width: 900px) { footer { padding-bottom: 40px; } }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 20;
  transition: transform .25s, opacity .25s;
}
.sticky-cta .btn { width: 100%; box-shadow: 0 10px 30px rgba(0,0,0,.3); padding: 16px 16px 13px; font-size: 24px; }
.sticky-cta.hide { transform: translateY(140%); opacity: 0; pointer-events: none; }
@media (min-width: 900px) { .sticky-cta { display: none; } }
