/* Jason's Recruiter Service — dark editorial theme */

:root {
  --bg-deep: #0a0e12;
  --bg-elevated: #121922;
  --bg-card: rgba(22, 30, 42, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8edf4;
  --muted: #9aa8b8;
  --accent: #2ee6d6;
  --accent-dim: rgba(46, 230, 214, 0.15);
  --accent-hot: #7cf9ff;
  --warn: #f4c15a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle at 20% 0%, rgba(46, 230, 214, 0.12), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(124, 249, 255, 0.08), transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #041014;
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 100;
}

.skip-link:focus {
  left: 0.75rem;
  outline: 2px solid var(--accent-hot);
  outline-offset: 2px;
}

a {
  color: var(--accent-hot);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

h1,
h2,
h3,
.page-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.25rem, 4vw, 3.35rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

strong {
  font-weight: 650;
  color: #fff;
}

code {
  font-size: 0.9em;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.1em 0.35em;
  border-radius: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 14, 18, 0.82);
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  font: inherit;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  align-items: center;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
}

.nav-cta {
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--accent-dim);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.5rem);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 220px;
  }

  .nav.is-open {
    display: flex;
  }
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 4rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    padding-top: 4.5rem;
  }
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(46, 230, 214, 0.22), transparent),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(124, 249, 255, 0.12), transparent);
  pointer-events: none;
}

.hero-wrap {
  position: relative;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font: inherit;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-hot);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #1bc4b8);
  color: #041014;
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.proof-strip div {
  padding: 0.75rem 0;
}

.proof-strip strong {
  display: block;
  font-size: 1.35rem;
  font-family: var(--font-display);
  color: var(--accent-hot);
}

.proof-strip span {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.hero-panel ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.hero-panel li {
  margin-bottom: 0.5rem;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}

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

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

.split-2 {
  display: grid;
  gap: 1.25rem;
}

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

.path-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem 1.35rem;
  background: rgba(18, 25, 34, 0.65);
}

.path-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.path-card ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.grid-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  background: rgba(15, 20, 28, 0.85);
}

.card p:last-child {
  margin-bottom: 0;
}

.card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

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

@media (min-width: 720px) {
  .timeline {
    grid-template-columns: repeat(5, 1fr);
  }
}

.step {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  background: var(--bg-elevated);
}

.step .num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
}

.expect-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .expect-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.expect-card {
  border-left: 3px solid var(--accent);
  padding: 1rem 1rem 1rem 1.15rem;
  background: rgba(46, 230, 214, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.expect-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

/* Testimonial carousel */
.carousel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(12, 17, 24, 0.9);
  box-shadow: var(--shadow);
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 2rem 1.5rem 2.25rem;
}

@media (min-width: 640px) {
  .carousel-slide {
    padding: 2.25rem 2.5rem 2.5rem;
  }
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.45;
  margin: 0 0 1.25rem;
}

.testimonial-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonial-meta strong {
  color: var(--text);
}

.testimonial-blurb {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.carousel-nav {
  display: flex;
  gap: 0.5rem;
}

.icon-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.icon-btn:focus-visible {
  outline: 2px solid var(--accent-hot);
  outline-offset: 2px;
}

.carousel-dots {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.carousel-dot[aria-current="true"] {
  background: var(--accent);
  width: 22px;
}

.sample-note {
  font-size: 0.9rem;
  color: var(--warn);
  margin-top: 1rem;
}

.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--border);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 600;
  background: var(--bg-elevated);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item div {
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  background: rgba(10, 14, 18, 0.5);
}

.cta-band {
  max-width: var(--max);
  margin: 0 auto 0;
  padding: 3rem 1.25rem 4rem;
  text-align: center;
}

.cta-inner {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  background: linear-gradient(145deg, rgba(46, 230, 214, 0.12), rgba(18, 25, 34, 0.95));
}

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

.page-title {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 0.5rem;
  font-size: clamp(2rem, 3vw, 2.5rem);
}

.page-intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 1.5rem;
  color: var(--muted);
}

.split {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 960px) {
  .split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
}

.form-card h2 {
  font-size: 1.35rem;
}

.hint,
.disclaimer {
  font-size: 0.92rem;
  color: var(--muted);
}

.disclaimer {
  border-left: 3px solid var(--accent);
  padding-left: 0.85rem;
  margin: 0 0 1.25rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
}

.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: rgba(46, 230, 214, 0.45);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.fieldset-plain {
  border: 0;
  padding: 0;
  margin: 0 0 1rem;
}

.legend-plain {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  padding: 0;
}

.checkbox,
.radio-row {
  margin: 0.75rem 0 1rem;
}

.checkbox label,
.radio-option {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
}

.checkbox input,
.radio-option input {
  margin-right: 0.5rem;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.interest-grid {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-actions {
  margin-top: 1.25rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.25rem 3rem;
  background: #070a0d;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent-hot);
}

.muted {
  color: var(--muted);
  font-size: 0.92rem;
}
