:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg2: #0c1729;
  --card: rgba(9, 16, 31, 0.72);
  --line: rgba(255, 255, 255, 0.08);
  --text: #eaf2ff;
  --muted: rgba(234, 242, 255, 0.72);
  --accent: #35d0ba;
  --accent-2: #8ce1ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(53, 208, 186, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(140, 225, 255, 0.16), transparent 28%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 34px 34px;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.7;
  pointer-events: none;
}

.orb-a {
  width: 320px;
  height: 320px;
  top: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(53, 208, 186, 0.45), transparent 68%);
}

.orb-b {
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(140, 225, 255, 0.42), transparent 65%);
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.hero {
  width: min(720px, 100%);
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 18px 0 14px;
  font-family: 'Russo One', sans-serif;
  font-size: clamp(40px, 8vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.lead {
  margin: 0 0 24px;
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.panel label {
  display: block;
  margin-bottom: 16px;
}

.panel span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--muted);
}

.panel input,
.panel select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
  font: inherit;
}

.panel input::placeholder {
  color: rgba(234, 242, 255, 0.45);
}

.panel input:focus,
.panel select:focus {
  border-color: rgba(140, 225, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(53, 208, 186, 0.12);
}

.panel button {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 16px;
  color: #061019;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.panel button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.position-block {
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.position-block .position-input,
.position-block .city-input {
  margin-bottom: 0;
}

.position-block label {
  margin-bottom: 12px;
}

.position-block label:last-child {
  margin-bottom: 0;
}

.position-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.position-block-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.remove-position-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.remove-position-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.add-position-btn {
  width: 100%;
  height: 48px;
  margin-bottom: 20px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: transparent;
  color: var(--accent-2);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.add-position-btn:hover {
  border-color: var(--accent-2);
  color: var(--text);
}

.status {
  min-height: 24px;
  margin-top: 18px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .panel {
    padding: 18px;
    border-radius: 22px;
  }

  .lead {
    font-size: 15px;
  }
}