:root {
  --orange: #f59e0b;
  --blue: #3b82f6;
  --blue2: #60a5fa;
  --bg: #fff;
  --ink: #0b1220;
  --muted: rgba(11, 18, 32, 0.66);
  --line: rgba(11, 18, 32, 0.12);
  --card: rgba(255, 255, 255, 0.86);
  --danger: #b42318;
  --success: #08754a;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
  --radius: 18px;
  --max: 1180px;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(1200px 700px at 12% 10%, rgba(59, 130, 246, 0.16), transparent 55%),
    radial-gradient(1000px 650px at 92% 14%, rgba(245, 158, 11, 0.14), transparent 55%),
    radial-gradient(900px 650px at 55% 110%, rgba(96, 165, 250, 0.10), transparent 55%),
    var(--bg);
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.hidden { display: none !important; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 22px 18px 90px; }

.navshell {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 15px 0;
  border-bottom: 1px solid rgba(11, 18, 32, 0.06);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
}
.nav { position: relative; width: 100%; height: 100px; }
.brand { position: absolute; top: 50%; left: 100px; display: flex; align-items: center; transform: translateY(-50%); }
.logo { display: flex; align-items: center; height: 125px; }
.logo img { display: block; width: auto; height: 100%; object-fit: contain; }
.navlinks { position: absolute; top: 50%; right: 24px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; transform: translateY(-50%); }
.pill {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(11, 18, 32, 0.74);
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  white-space: nowrap;
  transition: transform 0.12s ease, background 0.12s ease;
}
.pill:hover { background: rgba(255, 255, 255, 0.92); transform: translateY(-1px); }
.pill.active {
  color: #071022;
  border-color: rgba(59, 130, 246, 0.26);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.92), rgba(96, 165, 250, 0.85));
  box-shadow: 0 18px 52px rgba(59, 130, 246, 0.16);
}

.panel {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}
.glow {
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    radial-gradient(900px 360px at 15% 0%, rgba(59, 130, 246, 0.18), transparent 60%),
    radial-gradient(800px 340px at 100% 30%, rgba(245, 158, 11, 0.15), transparent 60%);
}
.content { position: relative; max-width: 850px; margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(59, 130, 246, 0.16);
  border-radius: 999px;
  color: #215eb3;
  background: rgba(59, 130, 246, 0.09);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
h1 { margin: 16px 0 12px; font-size: clamp(34px, 5vw, 58px); line-height: 1.04; letter-spacing: -1.2px; }
.accent {
  color: transparent;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  background-clip: text;
  -webkit-background-clip: text;
}
.sub { max-width: 73ch; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }

.formCard {
  margin-top: 28px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(59, 130, 246, 0.20);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.08), rgba(255, 255, 255, 0.84));
}
.formCard h2 { margin: 0; font-size: 21px; letter-spacing: -0.3px; }
.formIntro { margin: 8px 0 18px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.field { display: grid; gap: 7px; margin-top: 16px; }
.field label { font-size: 12px; font-weight: 900; }
.field input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus { border-color: rgba(59, 130, 246, 0.68); box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12); }
.fieldHint { color: var(--muted); font-size: 11px; line-height: 1.45; }
.actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid rgba(59, 130, 246, 0.20);
  border-radius: 14px;
  color: #071022;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.92), rgba(96, 165, 250, 0.85));
  box-shadow: 0 18px 52px rgba(59, 130, 246, 0.14);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.12s ease, filter 0.12s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.03); }
.btn:disabled { cursor: wait; filter: grayscale(0.35); opacity: 0.68; transform: none; }
.btn.secondary { border-color: var(--line); color: rgba(11, 18, 32, 0.78); background: rgba(255, 255, 255, 0.76); box-shadow: none; }
.textLink { color: #245da8; font-size: 13px; font-weight: 850; }
.status { display: none; margin-top: 18px; padding: 13px 14px; border-radius: 12px; font-size: 13px; line-height: 1.5; }
.status.show { display: block; }
.status.info { color: #174b91; border: 1px solid rgba(59, 130, 246, 0.18); background: rgba(59, 130, 246, 0.08); }
.status.success { color: var(--success); border: 1px solid rgba(8, 117, 74, 0.18); background: rgba(8, 117, 74, 0.08); }
.status.error { color: var(--danger); border: 1px solid rgba(180, 35, 24, 0.18); background: rgba(180, 35, 24, 0.07); }
.note { margin-top: 18px; padding: 14px 16px; border: 1px solid rgba(245, 158, 11, 0.20); border-radius: 14px; color: rgba(11, 18, 32, 0.68); background: rgba(245, 158, 11, 0.08); font-size: 13px; line-height: 1.55; }
footer { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); color: rgba(11, 18, 32, 0.52); font-size: 12.5px; }
.mono { font-family: var(--mono); }

@media (max-width: 900px) {
  .brand { left: 18px; }
  .navlinks { right: 18px; }
  .logo { height: 92px; }
  .nav { height: 86px; }
}
@media (max-width: 640px) {
  .nav { display: flex; align-items: center; flex-direction: column; gap: 10px; height: auto; padding: 10px 16px 14px; }
  .brand, .navlinks { position: static; justify-content: center; transform: none; }
  .logo { height: 82px; }
  .pill { font-size: 12.5px; }
  .panel { padding: 28px 18px; }
  .actions { align-items: stretch; flex-direction: column; }
  .actions .btn { width: 100%; }
}
