/* Paralead jobs — standalone subdomain site */

:root {
  --bg: #030408;
  --bg-deep: #010206;
  --bg-card: rgba(12, 14, 24, 0.88);
  --bg-card-hover: rgba(18, 20, 34, 0.95);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-gold: rgba(196, 165, 116, 0.38);
  --text: #f0eeeb;
  --text-muted: #8a8798;
  --text-dim: #4e4b58;
  --gold: #c4a574;
  --gold-light: #e8dcc8;
  --cyan: #3db8d1;
  --gradient-gold: linear-gradient(135deg, #c4a574 0%, #e8dcc8 50%, #c4a574 100%);
  --font: "Outfit", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --mono: "IBM Plex Mono", monospace;
  --header-h: 88px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.45s var(--ease);
  --shadow-heavy: 0 40px 100px rgba(0, 0, 0, 0.65);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -20%, rgba(91, 95, 199, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 30%, rgba(196, 165, 116, 0.06), transparent 50%),
    var(--bg);
  z-index: -3;
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.35s var(--ease);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 10000;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--bg-deep);
}

.skip-link:focus {
  left: 24px;
  top: 24px;
}

.display {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

.display em {
  font-style: italic;
  font-weight: 400;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.display--sm {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 20px;
}

.eyebrow--gold {
  color: var(--gold);
}

.section-index {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  margin-bottom: -1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.site-header.is-scrolled {
  background: rgba(3, 4, 8, 0.92);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-logo {
  width: auto;
  height: 40px;
  filter: drop-shadow(0 4px 20px rgba(196, 165, 116, 0.2));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 16px;
  transition: var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--gold-light);
}

.nav-contact-link {
  margin-left: 8px;
  padding: 10px 20px !important;
  border: 1px solid var(--border-gold);
  color: var(--gold-light) !important;
}

.nav-contact-link:hover,
.nav-contact-link.is-active {
  background: rgba(196, 165, 116, 0.1);
  color: var(--text) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--border-strong);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold-light);
  transition: var(--transition);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-heavy {
  padding: 18px 36px;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--bg-deep);
  box-shadow: 0 12px 40px rgba(196, 165, 116, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(196, 165, 116, 0.3);
  color: var(--bg-deep);
}

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

.btn-ghost:hover {
  border-color: var(--border-gold);
  background: rgba(196, 165, 116, 0.06);
  color: var(--gold-light);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 72px) 0 96px;
  overflow: hidden;
}

.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 88px) 0 96px;
  overflow: hidden;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.page-hero .display {
  font-size: clamp(3rem, 7vw, 5.4rem);
  margin-bottom: 28px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  pointer-events: none;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-detail {
  position: absolute;
  object-fit: contain;
  opacity: 0.17;
  filter: blur(2px) saturate(1.1);
  max-width: none;
}

.hero-detail--1 {
  width: 55%;
  right: -10%;
  top: 10%;
}

.hero-detail--2 {
  width: 45%;
  left: -5%;
  bottom: 15%;
  opacity: 0.12;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 165, 116, 0.08);
  top: 50%;
  right: 10%;
  transform: translate(20%, -50%);
}

.hero-ring--1 {
  width: 520px;
  height: 520px;
  animation: ring-pulse 12s ease-in-out infinite;
}

.hero-ring--2 {
  width: 680px;
  height: 680px;
  border-color: rgba(91, 95, 199, 0.06);
  animation: ring-pulse 12s ease-in-out infinite 2s;
}

@keyframes ring-pulse {
  0%,
  100% { opacity: 0.5; transform: translate(20%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(20%, -50%) scale(1.03); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-badge img {
  border-radius: 50%;
}

.hero-badge-line {
  width: 48px;
  height: 1px;
  background: var(--gradient-gold);
}

.hero .display {
  max-width: 680px;
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  margin-bottom: 32px;
}

.lead {
  max-width: 54ch;
  margin: 0 0 44px;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.focus-panel {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-heavy);
}

.focus-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.focus-head span,
.focus-list span,
.apply-contact-card span,
.form-note {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.focus-head strong {
  display: block;
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1.1;
  color: var(--gold-light);
}

.focus-list {
  display: grid;
  gap: 14px;
  padding-top: 24px;
}

.focus-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border);
}

.focus-list img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section--alt {
  background: rgba(0, 0, 0, 0.35);
  border-block: 1px solid var(--border);
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  pointer-events: none;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 760px;
  margin-bottom: 64px;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-lead {
  max-width: 60ch;
  margin: 0;
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
}

.section-lead--center {
  margin-inline: auto;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.job-card,
.process-card,
.apply-form,
.apply-contact-card,
.verify-panel,
.security-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.job-card {
  min-height: 420px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.job-card:hover,
.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-heavy);
}

.job-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 20px;
}

.cap-num,
.process-card > span {
  display: block;
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.job-card h3,
.process-card h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.15;
}

.job-card p,
.process-card p {
  margin: 0 0 22px;
  color: var(--text-muted);
  font-weight: 300;
}

.job-card ul {
  margin: auto 0 0;
  padding: 20px 0 0 18px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.role-list {
  display: grid;
  gap: 28px;
}

.role-detail {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-heavy);
}

.role-detail-main h2,
.apply-preview h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
}

.role-detail-main p,
.apply-preview li {
  color: var(--text-muted);
  font-weight: 300;
}

.role-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.role-detail-grid > div {
  padding: 24px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border);
}

.role-detail-grid h3,
.expectation-card h3,
.faq-item summary {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 1.45rem;
}

.role-detail-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.role-detail-grid li + li {
  margin-top: 8px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.timeline {
  display: grid;
  gap: 22px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.timeline-item > span {
  font-family: var(--display);
  font-size: 3rem;
  line-height: 1;
  color: rgba(196, 165, 116, 0.5);
}

.timeline-item h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 2rem;
}

.timeline-item p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
}

.expectations-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.expectations-grid .section-head {
  grid-column: 1 / -1;
  margin-bottom: 28px;
}

.expectation-card,
.faq-item {
  padding: 30px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.expectation-card p,
.faq-item p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
}

.process-card {
  padding: 32px 28px;
}

.apply-section {
  overflow: hidden;
}

.apply-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.verify-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.verify-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  gap: 48px;
  align-items: end;
}

.verify-hero-card {
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(196, 165, 116, 0.14), rgba(8, 10, 18, 0.86)),
    var(--bg-card);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-heavy);
}

.verify-hero-card img {
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
}

.verify-hero-card span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.verify-hero-card strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.05;
  color: var(--gold-light);
  font-weight: 500;
}

.verify-hero-card p {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-weight: 300;
}

.apply-contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  padding: 20px;
}

.apply-contact-card img {
  width: 44px;
  height: 44px;
}

.apply-contact-card a {
  display: block;
  margin-top: 4px;
  color: var(--gold-light);
}

.apply-contact-card strong {
  display: block;
  margin-top: 4px;
  color: var(--gold-light);
  font-weight: 500;
}

.apply-form {
  padding: 36px;
  box-shadow: var(--shadow-heavy);
}

.verify-panel {
  padding: 38px;
  box-shadow: var(--shadow-heavy);
}

.instruction-list {
  display: grid;
  gap: 18px;
  margin: 30px 0;
  padding-left: 24px;
  color: var(--text-muted);
  font-weight: 300;
}

.instruction-list li::marker {
  font-family: var(--mono);
  color: var(--gold);
}

.instruction-list strong {
  color: var(--gold-light);
  font-weight: 500;
}

.verify-step-list {
  display: grid;
  gap: 16px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.verify-step-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid var(--border);
}

.verify-step-list li > span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--gold-light);
  background: rgba(196, 165, 116, 0.1);
  border: 1px solid var(--border-gold);
}

.verify-step-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-weight: 500;
}

.verify-step-list p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
}

.verify-step-list code,
.command-detail-card code,
.command-os-hint code {
  font-family: var(--mono);
  font-size: 0.82em;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  padding: 0.08rem 0.35rem;
}

.detected-os-label {
  margin: 18px 0 0;
  padding: 12px 14px;
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(196, 165, 116, 0.08);
  border: 1px solid var(--border-gold);
}

.security-note,
.verify-status {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.security-note {
  padding: 20px;
}

.security-note img {
  width: 42px;
  height: 42px;
}

.security-note span,
.verify-status span {
  display: block;
  margin-bottom: 6px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.security-note p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
}

.verification-callout {
  background: rgba(196, 165, 116, 0.07);
  border-color: var(--border-gold);
}

.verification-callout strong {
  color: var(--gold-light);
  font-weight: 500;
}

.verify-form {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.verify-status {
  display: block;
  margin-bottom: 26px;
  padding: 20px;
  background: rgba(196, 165, 116, 0.08);
  border: 1px solid var(--border-gold);
}

.verify-status[data-state="approved"] {
  background: rgba(106, 171, 90, 0.1);
  border-color: rgba(106, 171, 90, 0.55);
}

.verify-status[data-state="approved"] span {
  color: #9bd487;
}

.verify-status[data-state="error"] {
  background: rgba(210, 80, 80, 0.1);
  border-color: rgba(210, 80, 80, 0.48);
}

.verify-status[data-state="error"] span {
  color: #e99b9b;
}

.verify-status strong {
  display: block;
  color: var(--text);
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1.15;
  font-weight: 500;
}

.verify-status p {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-weight: 300;
}

.verify-command-panel {
  display: grid;
  gap: 20px;
}

.simulated-code-card {
  padding: 22px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border);
}

.simulated-code-card span,
.command-card-head span {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.simulated-code-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1;
  letter-spacing: 0.22em;
  color: var(--gold-light);
}

.command-card {
  overflow: hidden;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid var(--border-gold);
}

.command-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.command-click-hint {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.command-os-tabs {
  display: flex;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
}

.command-os-tab {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.75rem;
  padding: 8px 12px;
  cursor: pointer;
  transition: var(--transition);
}

.command-os-tab:hover,
.command-os-tab.is-active {
  color: var(--gold-light);
  border-color: var(--border-gold);
  background: rgba(196, 165, 116, 0.08);
}

.command-os-hint {
  margin: 0;
  padding: 10px 18px;
  color: var(--text-muted);
  font-size: 0.86rem;
  border-bottom: 1px solid var(--border);
}

.command-detail-card {
  padding: 18px 20px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border);
}

.command-detail-card span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.command-detail-card p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
}

.command-block {
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
  -webkit-user-select: none;
}

.command-block:hover {
  background: rgba(196, 165, 116, 0.06);
}

.command-block:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.command-block.copied {
  background: rgba(106, 171, 90, 0.12);
}

.command-block.is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.command-block pre {
  margin: 0;
  padding: 20px;
  overflow-x: auto;
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.command-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(26, 42, 26, 0.95);
  color: #d4ffb0;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  z-index: 1000;
  border: 1px solid #6aab5a;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

.command-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.verification-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 3, 8, 0.76);
  backdrop-filter: blur(6px);
}

.verification-modal-backdrop[hidden] {
  display: none !important;
}

.verification-modal {
  position: relative;
  width: min(760px, 100%);
  max-height: min(88vh, 940px);
  overflow: auto;
  background: rgba(8, 10, 18, 0.97);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-heavy);
}

.verification-modal-body {
  padding: 28px;
}

.verification-modal-eyebrow {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.verification-modal h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
}

.verification-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.verification-modal-close:hover {
  color: var(--gold-light);
  border-color: var(--border-gold);
}

.verification-modal-panel {
  padding: 18px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.26);
}

.verification-modal-panel p {
  margin: 0 0 14px;
  color: var(--text-muted);
}

.verification-instruction {
  margin: 0 0 14px;
  color: var(--text-muted);
}

.verification-status-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.verification-state-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--border-gold);
  background: rgba(196, 165, 116, 0.1);
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verification-state-pill[data-state="success"] {
  border-color: rgba(106, 171, 90, 0.7);
  background: rgba(106, 171, 90, 0.18);
  color: #c5f2b5;
}

.verification-state-pill[data-state="error"] {
  border-color: rgba(210, 80, 80, 0.6);
  background: rgba(210, 80, 80, 0.15);
  color: #f3c0c0;
}

.verification-countdown {
  font-family: var(--mono);
  font-size: 0.92rem;
  color: var(--gold-light);
}

.verification-code-text {
  margin: 0 0 12px;
  font-family: var(--mono);
  color: var(--text-muted);
}

.verification-code-text strong {
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.verification-steps {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--text-muted);
}

.verification-steps li + li {
  margin-top: 8px;
}

.verification-command-box {
  border: 1px solid rgba(196, 165, 116, 0.7);
  background: rgba(14, 10, 2, 0.38);
  box-shadow: inset 0 0 0 1px rgba(196, 165, 116, 0.2);
}

.verification-command-label {
  margin: 0;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.verification-command-box pre {
  margin: 0;
  padding: 16px;
  color: #ffde9b;
  font-family: var(--mono);
  font-size: 0.86rem;
  line-height: 1.8;
  white-space: pre-wrap;
  word-break: break-word;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
}

.verification-command-box code {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
}

.verification-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.verification-actions .btn {
  padding: 12px 18px;
  font-size: 0.72rem;
}

.verification-modal-note {
  margin: 0;
  min-height: 1.4rem;
  color: var(--gold-light);
  font-size: 0.9rem;
}

.thank-you-section {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 72px) 0 96px;
  overflow: hidden;
}

.thank-you-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.thank-you-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
}

.thank-you-lead {
  margin-inline: auto;
}

.thank-you-actions {
  justify-content: center;
  margin-top: 36px;
}

.sms-code-input {
  font-family: var(--mono);
  font-size: 1.35rem;
  letter-spacing: 0.35em;
  text-align: center;
}

.hidden-field {
  display: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.apply-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.apply-form label > span {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 0;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-dim);
}

.checkbox-row {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  gap: 12px !important;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.checkbox-row span {
  font-family: var(--font) !important;
  font-size: 0.9rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--text-muted) !important;
}

.apply-form button {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  margin: 16px 0 0;
  text-align: center;
}

.apply-preview {
  align-self: start;
}

.apply-preview ul {
  margin: 0 0 28px;
  padding-left: 18px;
}

.apply-preview li + li {
  margin-top: 10px;
}

.faq-list {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.faq-item summary {
  cursor: pointer;
  color: var(--text);
}

.faq-item summary::marker {
  color: var(--gold);
}

.site-footer {
  padding: 72px 0 42px;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}

.footer-desc {
  max-width: 36ch;
  margin: 24px 0 0;
  color: var(--text-muted);
  font-weight: 300;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-label {
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-nav a {
  color: var(--text-muted);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.footer-copy,
.footer-url {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

@media (max-width: 1080px) {
  .hero-grid,
  .verify-hero-grid,
  .apply-layout,
  .verify-layout,
  .role-detail {
    grid-template-columns: 1fr;
  }

  .job-grid,
  .process-grid,
  .expectations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .role-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 72px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .brand-logo {
    height: 32px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    background: rgba(3, 4, 8, 0.98);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-contact-link {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    padding: calc(var(--header-h) + 52px) 0 72px;
  }

  .hero-detail {
    display: none;
  }

  .job-grid,
  .process-grid,
  .expectations-grid,
  .form-grid,
  .footer-inner,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
    padding: calc(var(--header-h) + 56px) 0 72px;
  }

  .role-detail,
  .timeline-item {
    padding: 28px 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .apply-form {
    padding: 28px 20px;
  }

  .verify-panel {
    padding: 28px 20px;
  }

  .verify-hero-card {
    padding: 24px 20px;
  }

  .verify-step-list li {
    grid-template-columns: 1fr;
  }

  .command-card-head {
    align-items: stretch;
    flex-direction: column;
  }

  .command-os-tabs {
    flex-wrap: wrap;
  }

  .verify-form {
    position: static;
  }

  .verification-modal-body {
    padding: 22px 18px;
  }

  .verification-actions {
    flex-direction: column;
  }

  .verification-actions .btn {
    width: 100%;
  }

  .sms-code-input {
    font-size: 1.15rem;
    letter-spacing: 0.22em;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-ring { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
