/* Jobora public marketing — static HTML, crawlable without JS */
:root {
  --primary: #EA580C;
  --primary-dark: #C2410C;
  --primary-deep: #9A3412;
  --primary-mid: #F97316;
  --primary-soft: #FFEDD5;
  --primary-pale: #FFF7ED;
  --ink: #1C1917;
  --ink-soft: #292524;
  --text: #1C1917;
  --muted: #57534E;
  --text-on-dark: #FAFAF9;
  --text-on-dark-muted: #A8A29E;
  --cream: #FFFBEB;
  --canvas: #FAFAF9;
  --surface: #FFFFFF;
  --border: #E7E5E4;
  --success: #059669;
  --success-soft: #D1FAE5;
  --danger: #DC2626;
  --shadow: 0 12px 32px rgba(28, 25, 23, 0.1);
  --radius: 16px;
  --max: 70rem;
  --font: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--canvas);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; }
a { color: var(--primary-dark); }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 250, 249, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.8rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  font-size: 1.15rem;
}
.brand:hover { text-decoration: none; }
.brand small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.nav-toggle { display: none; }
.burger {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.nav-links a:hover { color: var(--primary-dark); }
.nav-links a[aria-current="page"] { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 0;
  cursor: pointer;
  text-decoration: none !important;
}
.btn-primary {
  background: var(--primary);
  color: #fff !important;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-line {
  background: #fff;
  color: var(--ink) !important;
  border: 1.5px solid var(--border);
}
.btn-lg { padding: 0.85rem 1.35rem; font-size: 1rem; }

.hero {
  background:
    radial-gradient(ellipse 50% 70% at 100% 0%, rgba(234, 88, 12, 0.18), transparent 55%),
    linear-gradient(180deg, #1C1917 0%, #292524 100%);
  color: var(--text-on-dark);
  padding: 3.4rem 0 3.6rem;
}
.hero .eyebrow {
  display: inline-block;
  color: var(--primary-mid);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.4vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 18ch;
}
.hero .lead {
  margin: 0 0 1.5rem;
  max-width: 40rem;
  color: var(--text-on-dark-muted);
  font-size: 1.08rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.section { padding: 3.2rem 0; }
.section.alt { background: var(--primary-pale); }
.section-head { max-width: 42rem; margin-bottom: 1.8rem; }
.kicker {
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.prose p { margin: 0 0 1rem; color: var(--muted); max-width: 46rem; }
.prose p.strong { color: var(--text); font-weight: 600; }
.prose ul, .prose ol { margin: 0 0 1.2rem; padding-left: 1.2rem; max-width: 46rem; }
.prose li { margin: 0.35rem 0; color: var(--text); }
.prose h2 { margin-top: 2rem; }

.grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 760px) {
  .grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
  box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 0.45rem; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.card a { font-weight: 700; }

.steps { list-style: none; padding: 0; margin: 0; max-width: 46rem; }
.steps li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
}
.step-n {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.steps h3 { margin: 0 0 0.25rem; font-size: 1.05rem; }
.steps p { margin: 0; color: var(--muted); }

.check {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  max-width: 46rem;
}
.check li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.8rem;
  border-bottom: 1px solid var(--border);
}
.check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
}
.check.no li::before {
  content: "–";
  color: var(--muted);
}
.note {
  background: var(--cream);
  border-left: 4px solid var(--primary);
  padding: 0.9rem 1rem;
  border-radius: 0 12px 12px 0;
  max-width: 46rem;
  color: var(--ink-soft);
}
.note strong { color: var(--ink); }

.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 0.7rem;
  border-left: 4px solid var(--primary);
}
.faq summary {
  padding: 1rem 1.15rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p {
  margin: 0;
  padding: 0 1.15rem 1.05rem;
  color: var(--muted);
}

.cta {
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 2.2rem 1.5rem;
  text-align: center;
}
.cta h2 { color: #fff; }
.cta p { color: var(--text-on-dark-muted); margin: 0 auto 1.2rem; max-width: 36rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }

footer {
  background: var(--ink);
  color: var(--text-on-dark-muted);
  padding: 2.2rem 1.25rem;
  text-align: center;
  font-size: 0.88rem;
}
footer a { color: #FDBA74; }
footer .brand { justify-content: center; color: #fff; margin-bottom: 0.8rem; }
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  justify-content: center;
  margin: 1rem 0;
}

@media (max-width: 860px) {
  .burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.2rem;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
