


@font-face {
  font-family: 'Twemoji Country Flags';
  src: url('https://cdn.jsdelivr.net/npm/country-flag-emoji-polyfill@2.0.0/dist/TwemojiCountryFlags.woff2') format('woff2');
  font-display: swap;
  unicode-range: U+1F1E6-1F1FF, U+1F3F4, U+E0062-E0063, U+E0065, U+E0067, U+E006C, U+E006E, U+E0073, U+E0074, U+E0077, U+E007F;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Twemoji Country Flags', var(--fb, 'Work Sans'), sans-serif !important;
}


:root {
  --bg:      #020817;
  --bg2:     #0F1423;
  --bg3:     #0d1224;
  --card:    #0a0f1e;
  --card2:   #0c1120;

  --border:  rgba(255, 255, 255, 0.07);
  --border2: rgba(102, 69, 235, 0.3);

  --purple:  #441284;
  --purple2: #6645eb;
  --purple3: #8b5cf6;
  --pink:    #d445eb;

  --text:    #DDDDDD;
  --muted:   #A8A8A8;
  --dim:     #666;
  --white:   #fff;

  --r:  8px;
  --r2: 12px;

  --t: 0.24s cubic-bezier(0.4, 0, 0.2, 1);

  --fh:       'Work Sans', sans-serif;
  --fb:       'Work Sans', sans-serif;
  --f-accent: 'Space Grotesk', sans-serif;
}


html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  font-size: 14px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}


.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}


[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}


@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}


.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow-x: clip;
  overflow-y: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(102, 69, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 69, 235, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.orb1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(68, 18, 132, 0.45), transparent 70%);
  top: -200px;
  left: -100px;
  animation: orb 9s ease-in-out infinite alternate;
}

.orb2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 152, 236, 0.18), transparent 70%);
  bottom: -80px;
  right: 10%;
  animation: orb 12s ease-in-out infinite alternate-reverse;
}

@keyframes orb {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(30px, 30px); }
}

.particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  animation: twinkle var(--dur, 4s) ease-in-out infinite var(--delay, 0s);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.1; }
  50%       { opacity: 0.8; }
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  padding: 80px 0 80px 60px;
  text-align: left;
}


.hero-info-card {
  flex: 1;
  max-width: 560px;
  background: rgba(10, 15, 30, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.hero-info-card h3 {
  font-family: var(--f-accent);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.hero-info-card p {
  font-family: var(--fb);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-info-card p.highlight-text {
  color: var(--purple3);
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 20px;
}


.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--purple2);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(102, 69, 235, 0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(102, 69, 235, 0); }
}


.hero-title {
  font-family: var(--f-accent);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.hero-accent {
  display: block;
  background: linear-gradient(90deg, var(--purple2), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding-right: 0.15em;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-sub em {
  color: var(--text);
  font-style: normal;
}


.hero-globe {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  z-index: 1;
  pointer-events: none;
}

.globe-ring {
  position: absolute;
  border-radius: 50%;
}

.ring1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid rgba(102, 69, 235, 0.2);
  animation: rspin 20s linear infinite;
}

.ring2 {
  width: 72%;
  height: 72%;
  top: 14%;
  left: 14%;
  border: 1px solid rgba(102, 69, 235, 0.15);
  animation: rspin 14s linear infinite reverse;
}

.ring3 {
  width: 45%;
  height: 45%;
  top: 27.5%;
  left: 27.5%;
  border: 1px solid rgba(212, 69, 235, 0.2);
  animation: rspin 9s linear infinite;
}

@keyframes rspin {
  to { transform: rotate(360deg); }
}

.globe-core {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle at 35% 35%,
    rgba(102, 69, 235, 0.6),
    rgba(68, 18, 132, 0.3),
    rgba(2, 8, 23, 0.5)
  );
  border-radius: 50%;
  box-shadow:
    0 0 40px rgba(102, 69, 235, 0.3),
    0 0 80px rgba(102, 69, 235, 0.15);
  animation: gpulse 4s ease-in-out infinite;
}

@keyframes gpulse {
  0%, 100% {
    box-shadow:
      0 0 40px rgba(102, 69, 235, 0.3),
      0 0 80px rgba(102, 69, 235, 0.15);
  }
  50% {
    box-shadow:
      0 0 60px rgba(102, 69, 235, 0.5),
      0 0 120px rgba(102, 69, 235, 0.2);
  }
}


.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
  z-index: 2;
}

.scroll-dot {
  width: 4px;
  height: 4px;
  background: var(--purple3);
  border-radius: 50%;
  animation: sdot 2s ease-in-out infinite;
}

@keyframes sdot {
  0%   { transform: translateY(0);    opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}


.btn-primary {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 11px 26px;
  border-radius: 6px;
  font-family: var(--fb);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #6645eb, #441284);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(102, 69, 235, 0.4);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-ghost {
  display: inline-block;
  border: 1px solid var(--border2);
  color: var(--purple3);
  padding: 10px 22px;
  border-radius: var(--r);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--t);
}

.btn-ghost:hover {
  background: rgba(102, 69, 235, 0.1);
}


.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.section-title {
  font-family: var(--fh);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.title-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border2), transparent);
}

.section-sub {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 32px;
}

.hero-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.hero-title-text {
  white-space: nowrap;
  line-height: 1;
}

.hero-logo-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.hero-logo {
  display: block;
  
  width: 0.76em;
  height: 0.76em;
  flex-shrink: 0;
  border-radius: 0.12em;
}

.section-logo {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}


.who-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.who-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--t);
}

.who-card:hover {
  border-color: var(--border2);
}

.who-card--hl {
  background: linear-gradient(135deg, rgba(68, 18, 132, 0.2), var(--card));
  border-color: rgba(102, 69, 235, 0.25);
}

.who-card-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(102, 69, 235, 0.12);
  border: 1px solid rgba(102, 69, 235, 0.2);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--purple3);
}

.who-card h3 {
  font-family: var(--fh);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.who-card p {
  font-size: 0.8rem;
  color: var(--muted);
}


.benefits {
  background: var(--bg2);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 16px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--t);
}

.benefit-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 32px;
  height: 32px;
  background: rgba(102, 69, 235, 0.1);
  border: 1px solid rgba(102, 69, 235, 0.18);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--purple3);
}

.benefit-card span {
  font-family: var(--fh);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
}

.benefit-card p {
  font-size: 0.72rem;
  color: var(--dim);
}


.apply {
  background: var(--bg);
}

.app-form {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.form-block {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 24px;
  margin-bottom: 2px;
  transition: var(--t);
}

.form-block:hover {
  border-color: rgba(102, 69, 235, 0.15);
}


.block-label {
  font-family: var(--fh);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.bhint {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--dim);
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}

.req {
  color: #c084fc;
  font-weight: 600;
}

.fhint {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--dim);
  margin-left: 4px;
}


.frow {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.frow:last-of-type {
  margin-bottom: 0;
}

.frow.two {
  grid-template-columns: 1fr 1fr;
}

.frow.one {
  grid-template-columns: 1fr;
}


.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fl {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}


.fg input[type="text"],
.fg input[type="email"],
.fg input[type="tel"],
.fg input[type="url"],
.fg input[type="date"] {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  color: var(--white);
  font-family: var(--fb);
  font-size: 0.88rem;
  padding: 11px 14px;
  outline: none;
  transition: var(--t);
  color-scheme: dark;
}

.fg input:focus {
  border-color: rgba(102, 69, 235, 0.55);
  background: rgba(102, 69, 235, 0.06);
  box-shadow: 0 0 0 3px rgba(102, 69, 235, 0.1);
}

.fg input.err {
  border-color: #f87171;
}

.fg input::placeholder {
  color: var(--dim);
}


.fg textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  color: var(--white);
  font-family: var(--fb);
  font-size: 0.88rem;
  padding: 11px 14px;
  outline: none;
  resize: vertical;
  min-height: 90px;
  transition: var(--t);
}

.fg textarea:focus {
  border-color: rgba(102, 69, 235, 0.55);
  background: rgba(102, 69, 235, 0.06);
  box-shadow: 0 0 0 3px rgba(102, 69, 235, 0.1);
}

.fg textarea.err {
  border-color: #f87171;
}

.fg textarea::placeholder {
  color: var(--dim);
}


.sw {
  position: relative;
}

.sw select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  color: var(--white);
  font-family: var(--fb);
  font-size: 0.88rem;
  padding: 11px 36px 11px 14px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: var(--t);
  color-scheme: dark;
}

.sw select option:disabled {
  display: none;
}

.sw select:focus {
  border-color: rgba(102, 69, 235, 0.55);
  background: rgba(102, 69, 235, 0.06);
  box-shadow: 0 0 0 3px rgba(102, 69, 235, 0.1);
}

.sw select option {
  background: #0d1224;
  color: var(--white);
}

.sw.err select {
  border-color: #f87171;
}

.sa {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}


.char-count {
  font-size: 0.72rem;
  color: var(--dim);
  text-align: right;
  margin-top: 3px;
}


.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ro {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r);
  cursor: pointer;
  transition: var(--t);
}

.ro input[type="radio"] {
  display: none;
}

.ro span {
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 500;
  transition: var(--t);
}

.ro:has(input:checked) {
  background: rgba(102, 69, 235, 0.18);
  border-color: var(--purple2);
}

.ro:has(input:checked) span {
  color: var(--white);
}

.ro:hover {
  border-color: rgba(102, 69, 235, 0.3);
}


.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sc {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r);
  cursor: pointer;
  transition: var(--t);
  user-select: none;
}

.sc input[type="checkbox"] {
  display: none;
}

.sc span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  transition: var(--t);
}

.sc:hover {
  border-color: rgba(102, 69, 235, 0.3);
}

.sc:hover span {
  color: var(--text);
}

.sc:has(input:checked) {
  background: rgba(102, 69, 235, 0.18);
  border-color: var(--purple2);
}

.sc:has(input:checked) span {
  color: var(--white);
}


.file-drop {
  position: relative;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--r);
  overflow: visible;        
  transition: var(--t);
  cursor: pointer;
}

.file-drop:hover {
  border-color: rgba(102, 69, 235, 0.45);
}

.file-drop.has-file {
  border-color: var(--purple2);
  border-style: solid;
}

.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;               
}

.file-drop-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  color: var(--muted);
  font-size: 0.85rem;
  pointer-events: none;
}

.file-drop.has-file .file-drop-inner {
  color: var(--purple3);
}


.submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.btn-submit {
  background: linear-gradient(90deg, var(--purple), var(--purple2));
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 13px 44px;
  font-family: var(--fh);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(68, 18, 132, 0.4);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 69, 235, 0.5);
}

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

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.spin-icon {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


.success-wrap {
  text-align: center;
  padding: 60px 0;
}

.success-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.success-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(102, 69, 235, 0.2);
  border: 2px solid var(--purple2);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: var(--purple3);
  animation: pop 0.5s ease;
}

@keyframes pop {
  0%   { transform: scale(0);   opacity: 0; }
  80%  { transform: scale(1.1);             }
  100% { transform: scale(1);   opacity: 1; }
}

.success-box h3 {
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.success-box p {
  color: var(--muted);
  max-width: 360px;
}


.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  text-align: center;
  font-size: 0.82rem;
  color: var(--dim);
}

.footer-inner a {
  color: var(--purple3);
  border-bottom: 1px solid rgba(139, 92, 246, 0.3);
  transition: var(--t);
}

.footer-inner a:hover {
  color: var(--white);
}




@media (min-width: 1200px) {
  .container {
    max-width: 1100px;
  }
  .hero-content {
    padding: 100px 0 100px 80px;
  }
}


@media (max-width: 1024px) {
  .hero-content {
    padding: 80px 0 80px 40px;
    max-width: 420px;
  }
  .hero-globe {
    width: 340px;
    height: 340px;
    right: -30px;
  }
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}


@media (max-width: 900px) {
  .section {
    padding: 56px 0;
  }

  
  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-content {
    padding: 64px 28px 48px;
    max-width: 100%;
    text-align: left;
  }
  .hero-globe {
    display: none;
  }
  .hero-scroll {
    display: none;
  }

  
  .who-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  
  .accel-content p {
    font-size: 0.9rem;
  }

  
  .frow.two {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }

  
  .container {
    padding: 0 20px;
  }

  
  .hero-content {
    padding: 56px 20px 40px;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-eyebrow {
    font-size: 0.68rem;
  }
  .hero-sub {
    font-size: 0.88rem;
  }

  
  .section-title {
    font-size: 1.1rem;
    white-space: normal;
  }

  
  .who-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .benefit-card {
    padding: 14px 12px;
  }

  
  .accel-content {
    gap: 10px;
  }

  
  .frow.two {
    grid-template-columns: 1fr;
  }
  .frow.three {
    grid-template-columns: 1fr;
  }
  .form-block {
    padding: 18px 16px;
  }
  .block-label {
    font-size: 0.72rem;
  }

  
  .radio-group {
    flex-direction: column;
    gap: 6px;
  }
  .ro {
    width: 100%;
    justify-content: flex-start;
  }

  
  .submit-row {
    justify-content: stretch;
  }
  .btn-submit {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }

  
  .skills-grid {
    gap: 6px;
  }
  .sc {
    padding: 7px 12px;
  }
}


@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }

  .container {
    padding: 0 16px;
  }

  
  .hero-content {
    padding: 48px 16px 36px;
  }
  .hero-title {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
    line-height: 1.1;
  }
  .btn-primary {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  
  .who-cards {
    grid-template-columns: 1fr;
  }
  .who-card {
    padding: 16px 14px;
  }

  
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .benefit-card {
    padding: 12px 10px;
  }
  .benefit-card span {
    font-size: 0.72rem;
  }
  .benefit-card p {
    font-size: 0.65rem;
  }

  
  .section-header {
    gap: 8px;
    flex-wrap: nowrap;
  }
  .section-title {
    font-size: 1rem;
  }

  
  .form-block {
    padding: 16px 14px;
    border-radius: 8px;
  }
  .fg input[type="text"],
  .fg input[type="email"],
  .fg input[type="tel"],
  .fg input[type="url"],
  .fg input[type="date"],
  .fg textarea,
  .sw select {
    font-size: 0.85rem;
    padding: 10px 12px;
  }
  .sw select {
    padding-right: 32px;
  }
}


@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .hero-content {
    padding: 40px 12px 28px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .who-cards {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 0.95rem;
  }

  .btn-submit {
    font-size: 0.82rem;
    padding: 12px 16px;
  }
}



.apply-intro {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.apply-intro a { color: var(--purple3); border-bottom: 1px solid rgba(139,92,246,.3); }


.field-helper {
  font-size: .75rem;
  color: var(--dim);
  margin: -3px 0 8px;
  line-height: 1.5;
}


.char-min { color: var(--dim); font-size: .68rem; margin-left: 4px; }
.char-min.met { color: #4ade80; }


.role-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.role-radio {
  display: flex;
  cursor: pointer;
}

.role-radio input[type="radio"] { display: none; }

.role-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  transition: var(--t);
}

.role-card strong {
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--fh);
}

.role-card em {
  font-size: .78rem;
  color: var(--muted);
  font-style: normal;
}

.role-radio:hover .role-card {
  border-color: rgba(102,69,235,.3);
}

.role-radio:has(input:checked) .role-card {
  background: rgba(102,69,235,.15);
  border-color: var(--purple2);
}

.role-radio:has(input:checked) .role-card strong {
  color: var(--white);
}

.role-radio:has(input:checked) .role-card em {
  color: var(--purple3);
}


.skills-group-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 16px 0 8px;
}

.skills-group-label:first-of-type { margin-top: 0; }


.country-search-wrap {
  position: relative;
}

.country-search-wrap input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  color: var(--white);
  font-family: var(--fb);
  font-size: .88rem;
  padding: 11px 14px;
  outline: none;
  transition: var(--t);
}

.country-search-wrap input:focus {
  border-color: rgba(102,69,235,.55);
  background: rgba(102,69,235,.06);
  box-shadow: 0 0 0 3px rgba(102,69,235,.1);
}

.country-search-wrap input::placeholder { color: var(--dim); }
.country-search-wrap input.err { border-color: #f87171; }

.country-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #0d1224;
  border: 1px solid rgba(102,69,235,.3);
  border-radius: var(--r);
  max-height: 220px;
  overflow-y: auto;
  z-index: 50;
  display: none;
}

.country-dropdown.open { display: block; }

.country-option {
  padding: 9px 14px;
  font-size: .85rem;
  color: var(--muted);
  cursor: pointer;
  transition: var(--t);
}

.country-option:hover,
.country-option.highlighted {
  background: rgba(102,69,235,.15);
  color: var(--white);
}


.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
}

.consent-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--purple2);
  margin-top: 2px;
  cursor: pointer;
}

.consent-check input.err { outline: 2px solid #f87171; border-radius: 3px; }


.fg textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  color: var(--white);
  font-family: var(--fb);
  font-size: .88rem;
  padding: 11px 14px;
  outline: none;
  resize: vertical;
  min-height: 90px;
  transition: var(--t);
}
.fg textarea:focus {
  border-color: rgba(102,69,235,.55);
  background: rgba(102,69,235,.06);
  box-shadow: 0 0 0 3px rgba(102,69,235,.1);
}
.fg textarea.err { border-color: #f87171; }
.fg textarea::placeholder { color: var(--dim); }


input[type="date"] {
  color-scheme: dark;
}


.accel-content p { font-size:.9rem;color:var(--muted);line-height:1.8;margin-bottom:12px; }
.accel-highlight { margin-top:16px;padding:14px 18px;background:rgba(102,69,235,.08);border-left:3px solid var(--purple2);border-radius:0 var(--r) var(--r) 0; }
.accel-highlight p { margin:0;color:var(--text); }


.phone-wrap {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  transition: var(--t);
  overflow: hidden;
}
.phone-wrap:focus-within {
  border-color: rgba(102, 69, 235, 0.55);
  background: rgba(102, 69, 235, 0.06);
  box-shadow: 0 0 0 3px rgba(102, 69, 235, 0.1);
}
.phone-wrap:has(input.err) {
  border-color: #f87171;
}
.phone-wrap .sw.phone-code-wrap {
  width: auto;
  min-width: 130px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.phone-wrap .sw.phone-code-wrap select {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: var(--r) 0 0 var(--r);
  color: rgba(255, 255, 255, 0.55);
}
.phone-wrap .sw.phone-code-wrap select.selected {
  color: #ffffff;
}
.phone-wrap input[type="tel"] {
  flex: 1;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 var(--r) var(--r) 0;
}
.phone-wrap input[type="tel"]:focus,
.phone-wrap .sw.phone-code-wrap select:focus {
  border-color: transparent !important;
  box-shadow: none !important;
  background: transparent !important;
}