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

:root {
  --orange: #F1491F;
  --orange-dim: rgba(241, 73, 31, 0.12);
  --black: #000000;
  --ink: #141210;
  --white: #FFFFFF;
  --bg: #F7F6F4;
  --bg-tint: #EFECE6;
  --text: #1A1816;
  --text-2: #5C5752;
  --text-3: #9C9790;
  --w-text: #FFFFFF;
  --w-text-2: rgba(255, 255, 255, 0.72);
  --w-text-3: rgba(255, 255, 255, 0.45);
  --border: rgba(0, 0, 0, 0.09);
  --w-border: rgba(255, 255, 255, 0.14);
  --radius: 14px;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--white);
  color: var(--black);
  padding: 12px 20px;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ BUTTONS ============ */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(241, 73, 31, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(241, 73, 31, 0.7); }
.btn-primary:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.btn-ghost {
  background: transparent;
  color: var(--w-text);
  border: 1px solid var(--w-border);
  padding: 11px 20px;
  font-size: 14px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.35); }
.btn-lg { padding: 18px 34px; font-size: 16px; margin-top: 8px; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* ============ HERO ============ */
.hero {
  background:
    radial-gradient(ellipse 900px 500px at 80% -10%, rgba(241, 73, 31, 0.22), transparent 60%),
    linear-gradient(180deg, var(--black) 0%, var(--ink) 100%);
  position: relative;
  overflow: hidden;
}
.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
}
.nav-logo { height: 30px; width: auto; display: block; }
.nav-cta { display: none; }
@media (min-width: 640px) { .nav-cta { display: inline-flex; } }

.hero-body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "top"
    "video"
    "bottom";
  gap: 32px;
  padding: 40px 28px 64px;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .hero-body {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
      "top    video"
      "bottom video";
    align-items: center;
    gap: 28px 56px;
    padding: 48px 28px 88px;
  }
}
.hero-top { grid-area: top; }
.hero-visual { grid-area: video; }
.hero-bottom { grid-area: bottom; }

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--orange);
  border: 1px solid rgba(241, 73, 31, 0.4);
  background: rgba(241, 73, 31, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--w-text);
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.5px;
}
.hero-sub {
  color: var(--w-text-2);
  font-size: 16.5px;
  max-width: 500px;
  margin-top: 20px;
}
.hero-ctas { margin-top: 30px; }
.hero-note {
  font-size: 12.5px;
  color: var(--w-text-3);
  margin-top: 16px;
  max-width: 460px;
  line-height: 1.6;
}
.hero-stats { margin-top: 36px; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--w-text);
  font-size: 17px;
}
.stat-lbl {
  display: block;
  font-size: 12.5px;
  color: var(--w-text-3);
  margin-top: 4px;
}

.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.2px;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 10px 24px -8px rgba(241, 73, 31, 0.65);
}
.video-frame {
  width: 100%;
  max-width: 540px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(241, 73, 31, 0.5);
  box-shadow:
    0 0 0 1px rgba(241, 73, 31, 0.15),
    0 0 60px -6px rgba(241, 73, 31, 0.45),
    0 30px 70px -20px rgba(0, 0, 0, 0.75);
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-caption {
  font-size: 12.5px;
  color: var(--w-text-3);
  text-align: center;
  max-width: 380px;
}

@media (max-width: 640px) {
  .hero-visual { margin: 0 -28px; }
  .video-badge { margin: 0 28px; text-align: center; }
  .video-frame { max-width: none; border-radius: 0; border-left: none; border-right: none; }
  .video-caption { padding: 0 28px; }
}

/* ============ SECTIONS ============ */
.section { padding: 88px 0; }
.section-dark { background: var(--ink); }
.section-dark h2, .section-dark .eyebrow { color: var(--w-text); }
.section-tint { background: var(--bg-tint); }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--orange); }

.section h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.3px;
  max-width: 720px;
  margin-bottom: 44px;
}

/* ============ CARDS (why us) ============ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .card-grid { grid-template-columns: 1fr 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.card-accent { border-color: rgba(241, 73, 31, 0.35); background: var(--orange-dim); }
.card-icon { font-size: 26px; display: block; margin-bottom: 14px; }
.card h3 { font-family: var(--font-head); font-size: 18px; margin-bottom: 10px; }
.card p { color: var(--text-2); font-size: 14.5px; }

/* ============ VALUES ============ */
.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 28px;
}
@media (min-width: 700px) { .value-grid { grid-template-columns: 1fr 1fr; } }
.value-num {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--orange);
  font-size: 30px;
  display: block;
  margin-bottom: 8px;
}
.value h4 { font-family: var(--font-head); color: var(--w-text); font-size: 18px; margin-bottom: 8px; }
.value p { color: var(--w-text-2); font-size: 14.5px; max-width: 380px; }

/* ============ GROWTH PATH ============ */
.path { display: flex; flex-direction: column; gap: 0; max-width: 720px; }
.path-step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.path-step:last-child { border-bottom: none; }
.path-dot {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.path-title { font-family: var(--font-head); font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.path-txt { color: var(--text-2); font-size: 14.5px; }

/* ============ CHECKLIST ============ */
.checklist { display: flex; flex-direction: column; gap: 14px; max-width: 640px; margin-bottom: 40px; }
.chk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.ck {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ============ HIRING PROCESS ============ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange-dim);
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 16px;
}
.process-card h3 { font-family: var(--font-head); font-size: 16.5px; margin-bottom: 8px; }
.process-card p { color: var(--text-2); font-size: 14px; }

/* ============ FAQ ============ */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.qa {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
}
.qa summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa-ic { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.qa-ic::before, .qa-ic::after {
  content: "";
  position: absolute;
  background: var(--orange);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.qa-ic::before { width: 14px; height: 2px; }
.qa-ic::after { width: 2px; height: 14px; transition: transform .2s ease; }
.qa[open] .qa-ic::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.qa p { color: var(--text-2); font-size: 14.5px; margin-top: 12px; }

/* ============ FINAL CTA ============ */
.final-cta {
  background:
    radial-gradient(ellipse 900px 500px at 20% 110%, rgba(241, 73, 31, 0.25), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--black) 100%);
  text-align: center;
  padding: 100px 0;
}
.final-cta h2 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--w-text);
  font-size: clamp(28px, 5vw, 44px);
  max-width: 640px;
  margin: 0 auto 18px;
}
.final-cta p { color: var(--w-text-2); font-size: 16px; margin-bottom: 30px; }
.final-tagline { color: var(--w-text-3); font-style: italic; margin-top: 26px; font-size: 14px; }

.cta-inline { margin-top: 8px; }

/* ============ FOOTER ============ */
.footer { background: var(--black); padding: 44px 0; }
.footer-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
@media (min-width: 700px) {
  .footer-body { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-logo { height: 28px; width: auto; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--w-text-2); font-size: 14px; }
.footer-links a:hover { color: var(--white); }
.footer-copy { color: var(--w-text-3); font-size: 12.5px; }
