:root {
  --ink: #0f172a;
  --slate: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #ffffff;
  --wash: #f8fafc;
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-soft: rgba(13, 148, 136, 0.12);
  --sky: #0284c7;
  --ok: #059669;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 10% -10%, rgba(13,148,136,.14), transparent 60%),
    radial-gradient(700px 360px at 100% 0%, rgba(2,132,199,.10), transparent 55%),
    var(--wash);
  line-height: 1.55;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }

.topbar {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(248, 250, 252, 0.86);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; letter-spacing: -0.02em; font-size: 1.15rem;
}
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(145deg, var(--teal), var(--sky));
  display: grid; place-items: center; color: #fff; font-size: 15px;
  box-shadow: 0 8px 20px rgba(13,148,136,.28);
}
.nav-links { display: flex; gap: 22px; align-items: center; color: var(--slate); font-size: 0.95rem; }
.nav-links a:hover { color: var(--teal-dark); }
.nav-actions { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 11px 18px; font-weight: 700; font-size: 0.92rem;
  border: 1px solid transparent; cursor: pointer; transition: .2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), #0ea5a4);
  color: #fff; box-shadow: 0 10px 24px rgba(13,148,136,.28);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.04); }
.btn-ghost {
  background: #fff; border-color: var(--line); color: var(--ink);
}
.btn-ghost:hover { border-color: #cbd5e1; background: #fff; }

.hero {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 42px;
  align-items: center; padding: 64px 0 48px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px; background: var(--teal-soft);
  color: var(--teal-dark); font-size: 0.8rem; font-weight: 700; margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.08; letter-spacing: -0.035em; margin-bottom: 16px;
}
.hero h1 span { color: var(--teal-dark); }
.hero p { color: var(--muted); font-size: 1.08rem; max-width: 52ch; margin-bottom: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: 0.86rem; }
.trust-row strong { color: var(--ink); }

.search-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 22px;
  padding: 18px; box-shadow: var(--shadow);
}
.search-row {
  display: grid; grid-template-columns: 1fr auto; gap: 10px;
}
.search-row input, .search-row select, .field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 14px; font: inherit; background: #fff; color: var(--ink);
}
.search-row input:focus, .field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid rgba(13,148,136,.25); border-color: var(--teal);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chip {
  padding: 7px 12px; border-radius: 999px; background: #f1f5f9;
  color: var(--slate); font-size: 0.8rem; font-weight: 600;
}

.panel {
  background: linear-gradient(160deg, #0f766e 0%, #0f172a 70%);
  color: #ecfeff; border-radius: 24px; padding: 28px; min-height: 340px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.panel::after {
  content: ""; position: absolute; inset: auto -40px -40px auto;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.panel h3 { font-size: 1.3rem; margin-bottom: 8px; }
.panel p { opacity: .85; margin-bottom: 22px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 14px;
}
.stat b { display: block; font-size: 1.35rem; margin-bottom: 2px; }
.stat span { font-size: 0.8rem; opacity: .75; }

.section { padding: 54px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 24px; }
.section-head h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); letter-spacing: -0.02em; }
.section-head p { color: var(--muted); max-width: 48ch; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px; box-shadow: 0 8px 24px rgba(15,23,42,.04);
}
.card h3 { font-size: 1.05rem; margin: 10px 0 8px; }
.card p { color: var(--muted); font-size: 0.94rem; }
.icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--teal-soft); color: var(--teal-dark); font-size: 1.1rem;
}

.job {
  display: grid; gap: 10px;
}
.job-top { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.badge {
  display: inline-flex; padding: 4px 10px; border-radius: 999px;
  background: #ecfdf5; color: var(--ok); font-size: 0.75rem; font-weight: 700;
}
.meta { display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 0.85rem; }
.price { font-weight: 800; color: var(--ink); white-space: nowrap; }

.talent {
  display: flex; gap: 14px; align-items: start;
}
.avatar {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(145deg, #99f6e4, #7dd3fc);
  display: grid; place-items: center; font-weight: 800; color: #0f172a;
  flex-shrink: 0;
}
.stars { color: #d97706; font-size: 0.85rem; letter-spacing: 1px; }

.cta-band {
  margin: 20px 0 60px;
  background: linear-gradient(120deg, #134e4a, #0f172a);
  color: #fff; border-radius: 28px; padding: 42px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.02em; margin-bottom: 8px; }
.cta-band p { opacity: .8; max-width: 45ch; }

.footer {
  border-top: 1px solid var(--line); padding: 36px 0 28px; color: var(--muted); background: #fff;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 28px;
}
.footer h4 { color: var(--ink); margin-bottom: 12px; font-size: 0.92rem; }
.footer a { display: block; margin-bottom: 8px; font-size: 0.9rem; }
.footer a:hover { color: var(--teal-dark); }
.legal { border-top: 1px solid var(--line); padding-top: 16px; font-size: 0.82rem; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

.page-hero { padding: 42px 0 18px; }
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.03em; margin-bottom: 10px; }
.page-hero p { color: var(--muted); max-width: 60ch; }

.auth-wrap {
  display: grid; place-items: center; padding: 40px 0 70px;
}
.auth-card {
  width: min(440px, 100%); background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: 28px; box-shadow: var(--shadow);
}
.auth-card h1 { font-size: 1.55rem; margin-bottom: 8px; }
.auth-card > p { color: var(--muted); margin-bottom: 22px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; color: var(--slate); }
.auth-note { margin-top: 14px; text-align: center; color: var(--muted); font-size: 0.9rem; }
.form-msg {
  display: none; margin-top: 12px; padding: 12px 14px; border-radius: 12px;
  background: #ecfdf5; color: #065f46; font-size: 0.9rem; font-weight: 600;
}

@media (max-width: 900px) {
  .hero, .grid-3, .grid-2, .footer-grid, .cta-band { grid-template-columns: 1fr; display: grid; }
  .cta-band { text-align: center; }
  .cta-band .btn { justify-self: center; }
  .nav-links { display: none; }
  .panel { min-height: auto; }
}
