:root {
  --bg: #0b0b0c;
  --bg-2: #121214;
  --card: #18181b;
  --ink: #f6f4ee;
  --muted: #a8a59b;
  --line: rgba(246, 244, 238, 0.1);
  --yellow: #ffdf20;
  --yellow-2: #f0c800;
  --radius: 22px;
  --font: "Manrope", "Segoe UI", sans-serif;
  --max: 1120px;
  --header: 68px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(255, 223, 32, 0.16), transparent 55%),
    radial-gradient(700px 380px at 0% 30%, rgba(255, 223, 32, 0.05), transparent 50%),
    var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 80;
  background: var(--yellow);
  color: #111;
  padding: 0.6rem 1rem;
  font-weight: 800;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(11, 11, 12, 0.78);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.55rem;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 223, 32, 0.12);
}

.logo-text em {
  font-style: normal;
  color: var(--yellow);
}

.partner-chip {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
}

@media (max-width: 720px) {
  .partner-chip {
    display: none;
  }
  .header .btn {
    margin-left: auto;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.02em;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--yellow);
  color: #111;
}

.btn-primary:hover {
  background: #ffe86a;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-sm {
  height: 2.4rem;
  padding: 0 1rem;
  font-size: 0.9rem;
}

.btn-lg {
  height: 3.15rem;
  padding: 0 1.35rem;
  font-size: 1rem;
}

.btn-xl {
  height: 3.5rem;
  padding: 0 1.6rem;
  font-size: 1.05rem;
  width: 100%;
  max-width: 360px;
}

.marquee-wrap {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #111113;
}

.marquee {
  display: flex;
  gap: 0.7rem;
  width: max-content;
  padding: 0.55rem 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--yellow);
  animation: marquee 28s linear infinite;
}

.marquee span:nth-child(even) {
  color: var(--muted);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    animation: none;
  }
}

.hero {
  padding: 1.5rem 0 2.2rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    padding: 1.2rem 0 2rem;
  }
}

@media (max-width: 899px) {
  .pass {
    display: none;
  }
  .hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }
  .hero-lead {
    font-size: 1rem;
    margin-top: 0.7rem;
  }
  .hero-actions .btn-lg {
    width: 100%;
  }
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-lead {
  margin: 1.1rem 0 0;
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 36rem;
}

.hero-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1.25rem 0 0;
}

.hero-pills li {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.15rem;
}

.hero-trust {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 34rem;
}

.city {
  margin-top: 1.15rem;
}

.city label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

.city input {
  width: 100%;
  max-width: 28rem;
  height: 3rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #111113;
  color: var(--ink);
  padding: 0 0.95rem;
  font: inherit;
  font-weight: 600;
}

.city input:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 1px;
}

.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.55rem;
}

.city-chips button {
  background: #111113;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.city-chips button:hover,
.city-chips button.is-on {
  border-color: var(--yellow);
  color: var(--yellow);
}

.city-status {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.next-path {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  margin: 0.95rem 0 0;
}

.next-path li {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
}

.next-path li:not(:last-child)::after {
  content: "→";
  margin-left: 0.45rem;
  color: var(--yellow);
}

.cta-objections {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.3rem;
  max-width: 32rem;
  text-align: left;
  display: grid;
  gap: 0.4rem;
}

.cta-objections li {
  color: var(--ink);
  font-size: 0.92rem;
  padding-left: 1.1rem;
  position: relative;
}

.cta-objections li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.pass {
  position: relative;
  display: grid;
  place-items: center;
}

.pass-glow {
  position: absolute;
  inset: 10% 12%;
  background: radial-gradient(circle, rgba(255, 223, 32, 0.28), transparent 70%);
  filter: blur(24px);
}

.pass-card {
  position: relative;
  width: min(100%, 380px);
  background: linear-gradient(180deg, #222226, #141416);
  border: 1px solid rgba(255, 223, 32, 0.22);
  border-radius: 28px;
  padding: 1.4rem 1.5rem 1.2rem;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.pass-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pass-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 10px #3ddc84;
}

.pass-role {
  margin: 1.4rem 0 0.3rem;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pass-pay {
  margin: 0;
  color: var(--yellow);
  font-size: 1.35rem;
  font-weight: 800;
}

.pass-meta {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.pass-meta li::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--yellow);
}

.pass-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
}

.section {
  padding: 4.2rem 0;
}

.section-alt {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.8rem;
}

.section-head h2,
.quiz-panel h3,
.cta-inner h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.section-head p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.quiz {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.4rem 1.2rem 1.5rem;
  box-shadow: var(--shadow);
}

@media (min-width: 720px) {
  .quiz {
    padding: 1.8rem 1.8rem 1.7rem;
  }
}

.quiz-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.quiz-bar i {
  display: block;
  height: 100%;
  width: 50%;
  background: var(--yellow);
  transition: width 0.25s ease;
}

.quiz-count {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.quiz-panel {
  display: none;
  padding-top: 0.6rem;
}

.quiz-panel.is-on {
  display: block;
}

.quiz-opts {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

@media (min-width: 720px) {
  .quiz-opts {
    grid-template-columns: 1fr 1fr;
  }
}

.quiz-opt {
  text-align: left;
  background: #111113;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.05rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.quiz-opt strong {
  display: block;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.quiz-opt span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.quiz-opt:hover,
.quiz-opt:focus-visible {
  border-color: var(--yellow);
  background: #1c1c16;
  transform: translateY(-1px);
}

.quiz-back {
  margin-top: 1rem;
  background: none;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  padding: 0;
}

.quiz-back:hover {
  color: var(--ink);
}

.result-pay {
  margin: 0.45rem 0 0;
  color: var(--yellow);
  font-size: 1.25rem;
  font-weight: 800;
}

.result-text {
  color: var(--muted);
  margin: 0.8rem 0 0;
  max-width: 36rem;
}

.result-list {
  margin: 1rem 0 1.3rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.result-list li {
  padding-left: 1rem;
  position: relative;
}

.result-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.result-note {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0.9rem 0 0;
}

.jobs {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .jobs {
    grid-template-columns: 1fr 1fr;
  }
}

.job {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.job-hot {
  border-color: rgba(255, 223, 32, 0.35);
  background: linear-gradient(180deg, #1d1c14, #18181b);
}

.job-tag {
  margin: 0;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.job h3 {
  margin: 0;
  letter-spacing: -0.03em;
  font-size: 1.3rem;
}

.job-pay {
  margin: 0;
  font-weight: 800;
  font-size: 1.15rem;
}

.job p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.job ul {
  margin: 0.4rem 0 0.9rem;
  padding-left: 1.1rem;
  color: var(--ink);
}

.job .btn {
  margin-top: auto;
  align-self: start;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
}

.steps span {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #111;
  font-weight: 800;
}

.steps h3 {
  margin: 0;
  font-size: 1.05rem;
}

.steps p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.why {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .why {
    grid-template-columns: 1fr 1fr;
  }
}

.why article {
  padding: 1.2rem;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
}

.why h3 {
  margin: 0;
}

.why p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.faq-wrap {
  max-width: 760px;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 0.9rem 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.faq p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.cta-block {
  padding: 4rem 0 5.5rem;
}

.cta-inner {
  text-align: center;
  background: linear-gradient(180deg, #221f12, #151513);
  border: 1px solid rgba(255, 223, 32, 0.28);
  border-radius: 28px;
  padding: 2.2rem 1.3rem;
}

.cta-inner p {
  color: var(--muted);
  max-width: 36rem;
  margin: 0.8rem auto 1.3rem;
}

.cta-disclaimer {
  font-size: 0.82rem !important;
}

.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  transform: translateY(110%);
  transition: transform 0.25s ease;
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: 0.7rem 0 calc(0.7rem + env(safe-area-inset-bottom));
}

.sticky.is-on {
  transform: none;
}

.sticky-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.sticky p {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sticky span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.footer {
  padding: 2rem 0 7rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer p + p {
  margin-top: 0.7rem;
}

.footer-copy {
  color: #7d7a72;
}

@supports (content-visibility: auto) {
  .section:not(.hero):not(.quiz-section) {
    content-visibility: auto;
    contain-intrinsic-size: auto 520px;
  }
}
