@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600&display=swap');

/* ─── TOKENS ──────────────────────────────────────── */
:root {
  --pink:        #D9048E;
  --pink-soft:   #F04BA8;
  --pink-dim:    rgba(217,4,142,0.12);
  --pink-glow:   rgba(217,4,142,0.25);
  --bg:          #05040F;
  --bg-surface:  rgba(255,255,255,0.03);
  --bg-elevated: rgba(255,255,255,0.055);
  --border:      rgba(255,255,255,0.07);
  --border-pink: rgba(217,4,142,0.4);
  --text:        #FFFFFF;
  --text-muted:  rgba(255,255,255,0.45);
  --text-dim:    rgba(255,255,255,0.25);
  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --font-head:   'Syne', sans-serif;
  --font-body:   'Outfit', sans-serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ───────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--pink);
  top: 0; left: 0;
}
.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(217,4,142,0.5);
  top: 0; left: 0;
  transition: width 0.25s var(--ease-out),
              height 0.25s var(--ease-out),
              border-color 0.25s;
}
.cursor-ring.hovered {
  width: 52px;
  height: 52px;
  border-color: var(--pink);
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring,
body:has(input:hover) .cursor-ring,
body:has(select:hover) .cursor-ring,
body:has(label:hover) .cursor-ring {
  width: 52px;
  height: 52px;
  border-color: var(--pink);
}

/* ─── NOISE GRAIN ─────────────────────────────────── */
.noise {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100%{transform:translate(0,0)}
  10%{transform:translate(-2%,-3%)}
  20%{transform:translate(3%,1%)}
  30%{transform:translate(-1%,4%)}
  40%{transform:translate(4%,-2%)}
  50%{transform:translate(-3%,3%)}
  60%{transform:translate(1%,-4%)}
  70%{transform:translate(-4%,2%)}
  80%{transform:translate(2%,3%)}
  90%{transform:translate(-2%,-1%)}
}

/* ─── AMBIENT ORBS ────────────────────────────────── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(217,4,142,0.18) 0%, transparent 65%);
  top: -20%; left: -15%;
  animation: orbDrift1 30s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(181,3,110,0.14) 0%, transparent 65%);
  bottom: -10%; right: -10%;
  animation: orbDrift2 25s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(240,75,168,0.1) 0%, transparent 65%);
  top: 50%; left: 55%;
  animation: orbDrift3 20s ease-in-out infinite;
}
@keyframes orbDrift1 {
  0%,100%{transform:translate(0,0)}
  33%{transform:translate(40px,-25px)}
  66%{transform:translate(-30px,20px)}
}
@keyframes orbDrift2 {
  0%,100%{transform:translate(0,0)}
  50%{transform:translate(-35px,35px)}
}
@keyframes orbDrift3 {
  0%,100%{transform:translate(0,0)}
  50%{transform:translate(-50px,-30px)}
}

/* ─── CANVAS ──────────────────────────────────────── */
#webgl-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

/* ─── PROGRESS BAR ────────────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--pink-soft));
  z-index: 9998;
  transition: width 0.2s linear;
  box-shadow: 0 0 12px var(--pink);
}

/* ─── PAGE LAYOUT ─────────────────────────────────── */
.page-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 100vh;
}

/* ─── LEFT JOB PANEL ──────────────────────────────── */
.job-panel {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 64px 56px 64px 72px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  scrollbar-width: none;
}
.job-panel::-webkit-scrollbar { display: none; }

/* top row */
.job-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  cursor: none;
}
.back-link:hover { color: var(--pink-soft); }
.back-link svg { transition: transform 0.2s; }
.back-link:hover svg { transform: translateX(-3px); }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: var(--pink-dim);
  border: 1px solid var(--border-pink);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-soft);
}
.live-dot {
  width: 6px; height: 6px;
  background: var(--pink-soft);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--pink-soft);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:0.4;transform:scale(1.4)}
}

/* title block */
.job-title-block {
  flex: 0 0 auto;
}

.job-index {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

.job-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
}

/* decorative line */
.title-rule {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), transparent);
  border-radius: 2px;
  margin-top: 24px;
}

/* chips */
.job-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  cursor: none;
}
.chip:hover {
  border-color: var(--border-pink);
  color: var(--text);
  background: var(--pink-dim);
}
.chip-icon {
  color: var(--pink);
  font-size: 0.85rem;
}

/* divider */
.panel-divider {
  height: 1px;
  background: var(--border);
  border: none;
}

/* description */
.job-desc-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.job-desc-content {
  color: white;
  font-size: 18px;
  line-height: 1.85;
  font-weight: 400;
}
.job-desc-content h1,
.job-desc-content h2,
.job-desc-content h3 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text);
  margin: 1.4em 0 0.5em;
  font-size: 1.05rem;
}
.job-desc-content ul {
  padding-left: 1.2em;
  margin: 0.8em 0;
}
.job-desc-content li { margin: 0.35em 0; }
.job-desc-content strong { color: var(--text); font-weight: 600; }
.job-desc-content p { margin: 0.8em 0; }

/* ─── RIGHT FORM PANEL ────────────────────────────── */
.form-panel {
  background: rgba(255,255,255,0.018);
  border-left: 1px solid var(--border);
  padding: 64px 56px 80px 64px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.form-header {
  margin-bottom: 48px;
}

.form-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}

.form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}
.form-title span {
  color: var(--pink);
}

.form-subtitle {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ─── FORM FIELDS ─────────────────────────────────── */
.fields-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

/* ── Floating Label Fields ── */
.field-wrap {
  position: relative;
  padding: 12px 0 4px;
}

.field-wrap input,
.field-wrap textarea,
.field-wrap select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  padding: 14px 0 10px;
  outline: none;
  transition: border-color 0.3s;
  caret-color: var(--pink);
  appearance: none;
  -webkit-appearance: none;
}

.field-wrap input::placeholder,
.field-wrap textarea::placeholder {
  color: transparent;
}

/* floating label */
.field-label {
  position: absolute;
  left: 0;
  top: 28px;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.25s var(--ease-out);
  transform-origin: left;
}

.field-wrap input:focus + .field-label,
.field-wrap input:not(:placeholder-shown) + .field-label,
.field-wrap textarea:focus + .field-label,
.field-wrap textarea:not(:placeholder-shown) + .field-label {
  top: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}

/* animated underline */
.field-line {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--pink);
  transition: width 0.35s var(--ease-out);
  box-shadow: 0 0 8px rgba(217,4,142,0.4);
}
.field-wrap:focus-within .field-line { width: 100%; }
.field-wrap:focus-within input,
.field-wrap:focus-within textarea,
.field-wrap:focus-within select {
  border-color: transparent;
}

/* required star */
.field-label.req::after {
  content: ' *';
  color: var(--pink);
}

/* textarea */
.field-wrap textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.7;
}

/* ── Select Fields ── */
.select-wrap {
  position: relative;
  padding: 6px 0 4px;
  margin-top: 6px;
}

.select-wrap-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
  transition: color 0.25s;
}
.select-wrap-label.req::after {
  content: ' *';
  color: var(--pink);
}
.select-wrap:focus-within .select-wrap-label {
  color: var(--pink);
}

.select-wrap select {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 14px 44px 14px 16px;
  outline: none;
  cursor: none;
  appearance: none;
  transition: border-color 0.3s, background 0.3s;
}
.select-wrap select:focus {
  border-color: var(--border-pink);
  background: var(--pink-dim);
}
.select-wrap select option { background: #12101E; color: #fff; }

.select-arrow {
  position: absolute;
  right: 14px;
  bottom: 18px;
  pointer-events: none;
  color: var(--text-muted);
  transition: color 0.3s;
}
.select-wrap:focus-within .select-arrow { color: var(--pink); }

/* ── Radio / Checkbox ── */
.choice-wrap {
  padding: 6px 0 4px;
  margin-top: 6px;
}

.choice-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.choice-label.req::after {
  content: ' *';
  color: var(--pink);
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-option {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: none;
  transition: all 0.25s var(--ease-out);
  user-select: none;
}
.choice-option:hover {
  border-color: var(--border-pink);
  background: var(--pink-dim);
}

.choice-option input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.choice-custom {
  width: 16px; height: 16px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.choice-option.is-checkbox .choice-custom {
  border-radius: 4px;
}

.choice-option input:checked ~ .choice-custom {
  border-color: var(--pink);
  background: var(--pink);
  box-shadow: 0 0 12px rgba(217,4,142,0.5);
}

.choice-custom::after {
  content: '';
  width: 6px; height: 6px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s var(--ease-spring);
}
.choice-option.is-checkbox .choice-custom::after {
  content: '✓';
  border-radius: 0;
  background: none;
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: auto; height: auto;
}
.choice-option input:checked ~ .choice-custom::after {
  opacity: 1;
  transform: scale(1);
}

.choice-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.choice-option:has(input:checked) {
  border-color: var(--border-pink);
  background: var(--pink-dim);
}
.choice-option:has(input:checked) .choice-text {
  color: var(--pink-soft);
}

/* ── File Upload ── */
.file-wrap {
  padding: 6px 0 4px;
  margin-top: 6px;
}

.file-label-top {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.file-label-top.req::after {
  content: ' *';
  color: var(--pink);
}

.file-drop {
  position: relative;
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  cursor: none;
  transition: all 0.35s var(--ease-out);
  background: var(--bg-surface);
  overflow: hidden;
}
.file-drop::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(217,4,142,0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
}
.file-drop:hover::before,
.file-drop.drag-over::before { opacity: 1; }

.file-drop:hover,
.file-drop.drag-over {
  border-color: var(--border-pink);
  border-style: solid;
  transform: translateY(-2px);
}

.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.file-icon {
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 10px;
  display: block;
  opacity: 0.8;
}

.file-main-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.file-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.file-name-display {
  display: none;
  margin-top: 14px;
  padding: 10px 16px;
  background: var(--pink-dim);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--pink-soft);
  letter-spacing: 0.02em;
}

/* ─── SUBMIT BUTTON ───────────────────────────────── */
.submit-wrap {
  margin-top: 44px;
}

.submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background: var(--pink);
  border: none;
  border-radius: 100px;
  color: white;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: none;
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 0 0 0 rgba(217,4,142,0.4);
}

.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--pink) 100%);
  opacity: 0;
  transition: opacity 0.35s;
}
.submit-btn:hover::before { opacity: 1; }

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(217,4,142,0.35),
              0 0 0 1px rgba(217,4,142,0.5);
}
.submit-btn:active {
  transform: translateY(-1px);
}

.submit-btn-text {
  position: relative;
  z-index: 1;
}

.submit-btn-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  transition: transform 0.3s var(--ease-out);
}
.submit-btn:hover .submit-btn-icon {
  transform: translateX(4px);
}

.submit-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.25);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.submit-btn.loading .spinner { display: block; }
.submit-btn.loading .submit-btn-text { opacity: 0.7; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── NO FIELDS ───────────────────────────────────── */
.no-fields {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  gap: 16px;
  padding: 80px 40px;
}
.no-fields-icon {
  font-size: 3rem;
  color: var(--text-dim);
}
.no-fields-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
}
.no-fields-sub {
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* ─── SUCCESS POPUP ───────────────────────────────── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,4,15,0.8);
  backdrop-filter: blur(12px);
  z-index: 9990;
  align-items: center;
  justify-content: center;
}
.popup-overlay.show { display: flex; }

.popup-card {
  background: linear-gradient(145deg, #0C0A1E, #110D24);
  border: 1px solid var(--border-pink);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative;
  overflow: hidden;
  animation: popIn 0.5s var(--ease-spring) forwards;
  box-shadow: 0 0 80px rgba(217,4,142,0.2),
              0 40px 80px rgba(0,0,0,0.5);
}
.popup-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--pink-soft), transparent);
}

@keyframes popIn {
  0%{ opacity:0; transform: scale(0.85) translateY(20px); }
  100%{ opacity:1; transform: scale(1) translateY(0); }
}

.popup-icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
}
.popup-icon svg { width: 100%; height: 100%; }

.popup-circle {
  stroke: var(--pink);
  stroke-width: 2;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  fill: none;
  animation: drawStroke 0.6s var(--ease-out) forwards;
}
.popup-check {
  stroke: var(--pink-soft);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  fill: none;
  animation: drawStroke 0.4s 0.55s var(--ease-out) forwards;
}
@keyframes drawStroke { to { stroke-dashoffset: 0; } }

.popup-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
}
.popup-msg {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.popup-redirect {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ─── ANIMATIONS ON LOAD ──────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s var(--ease-out) forwards;
}
@keyframes fadeUp {
  to{ opacity:1; transform: translateY(0); }
}

.job-panel-top  { animation-delay: 0.05s; }
.job-title-block{ animation-delay: 0.15s; }
.job-chips      { animation-delay: 0.25s; }
.job-desc-wrap  { animation-delay: 0.35s; }

.form-header    { animation-delay: 0.2s; }
.fields-grid    { animation-delay: 0.3s; }

/* ─── SCROLLBAR ───────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(217,4,142,0.3); border-radius: 2px; }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1100px) {
  .page-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .job-panel {
    position: relative;
    height: auto;
    padding: 48px 36px 40px;
  }
  .form-panel {
    padding: 40px 36px 60px;
    border-left: none;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 640px) {
  .job-panel { padding: 36px 24px 32px; }
  .form-panel { padding: 32px 24px 48px; }
  .job-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }
  .form-title { font-size: 1.8rem; }
  .choice-group { flex-direction: column; }
  .choice-option { border-radius: var(--radius-sm); }
}