:root {
  --ink: #171817;
  --muted: #a6a8a2;
  --line: rgba(244, 242, 232, 0.15);
  --paper: #f4f2e8;
  --lime: #c7f76a;
  --panel: #212320;
}

* { box-sizing: border-box; }
html { background: var(--ink); scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
[hidden] { display: none !important; }
.page-shell { min-height: 100svh; padding: 28px 16px 36px; }
.page-content { width: min(100%, 560px); margin: 0 auto; }
.hero { padding: 12px 8px 30px; text-align: center; }
.portrait {
  display: block;
  width: 88px;
  height: 88px;
  margin: 0 auto 19px;
  object-fit: cover;
  border: 2px solid rgba(199, 247, 106, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(199, 247, 106, 0.08);
}
.eyebrow, .section-label {
  margin: 0 0 7px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2, p { margin-top: 0; }
h1 {
  max-width: 420px;
  margin: 0 auto 13px;
  font-size: clamp(1.58rem, 5.8vw, 2.18rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.badge {
  display: inline-block;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d3d4ce;
  font-size: 0.74rem;
}
.link-list { display: grid; gap: 11px; }
.link-card {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--panel);
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}
.link-card span:first-child { display: grid; gap: 5px; text-align: left; }
.link-card strong { font-size: 0.98rem; line-height: 1.22; }
.link-card small { color: var(--muted); font-size: 0.78rem; line-height: 1.25; }
.link-card-featured { border-color: var(--lime); background: var(--lime); color: #182011; }
.link-card-featured small { color: #43512c; }
.link-card-text { background: transparent; }
.arrow { flex: 0 0 auto; font-size: 1.42rem; line-height: 1; }
.link-card:hover { border-color: rgba(199, 247, 106, 0.7); transform: translateY(-2px); }
.link-card:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.about {
  margin-top: 48px;
  padding: 29px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
h2 {
  max-width: 430px;
  margin-bottom: 27px;
  font-size: clamp(1.35rem, 5.2vw, 1.8rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.about-copy { max-width: 460px; margin: 0; color: #d3d4ce; font-size: 0.95rem; line-height: 1.55; }
.about-copy-strong { margin-top: 16px; color: var(--paper); font-weight: 700; }
footer { padding: 25px 8px 0; color: var(--muted); font-size: 0.74rem; text-align: center; }
.form-shell { min-height: 100svh; padding: 24px 16px 48px; }
.form-page { width: min(100%, 640px); margin: 0 auto; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  color: #d3d4ce;
  font-size: 0.82rem;
  text-decoration: none;
}
.back-link:hover { color: var(--lime); }
.back-link:focus-visible,
.hire-form input:focus-visible,
.hire-form select:focus-visible,
.hire-form textarea:focus-visible,
.submit-button:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.form-hero { margin-bottom: 30px; }
.form-hero h1 { max-width: 620px; margin: 0 0 14px; font-size: clamp(2rem, 8vw, 3.15rem); }
.form-hero > p:last-child { max-width: 500px; margin: 0; color: #d3d4ce; font-size: 0.96rem; line-height: 1.5; }
.form-alert {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(199, 247, 106, 0.42);
  border-radius: 10px;
  background: rgba(199, 247, 106, 0.08);
  color: var(--paper);
  font-size: 0.86rem;
  line-height: 1.4;
}
.hire-form { display: grid; gap: 18px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); }
.form-grid { display: grid; gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field label { font-size: 0.82rem; font-weight: 700; }
.hire-form input, .hire-form select, .hire-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 242, 232, 0.18);
  border-radius: 10px;
  background: #181a17;
  color: var(--paper);
  font: inherit;
  font-size: 0.92rem;
}
.hire-form input, .hire-form select { min-height: 50px; padding: 0 13px; }
.hire-form textarea { min-height: 112px; padding: 13px; resize: vertical; }
.hire-form input::placeholder, .hire-form textarea::placeholder { color: #73766f; }
.hire-form input:hover, .hire-form select:hover, .hire-form textarea:hover { border-color: rgba(199, 247, 106, 0.5); }
.submit-button {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 2px;
  padding: 0 17px;
  border: 0;
  border-radius: 11px;
  background: var(--lime);
  color: #182011;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
}
.submit-button:hover { background: #d4ff83; }
.submit-button span { font-size: 1.35rem; }
.privacy-note { margin: -4px 4px 0; color: var(--muted); font-size: 0.71rem; line-height: 1.45; text-align: center; }
.success-shell { display: grid; place-items: center; padding-top: 48px; }
.success-card { width: min(100%, 620px); padding: 34px 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); text-align: center; }
.success-mark { display: grid; width: 58px; height: 58px; place-items: center; margin: 0 auto 24px; border-radius: 50%; background: var(--lime); color: #182011; font-size: 1.65rem; font-weight: 900; }
.success-card h1 { max-width: 520px; margin-bottom: 18px; }
.success-copy { max-width: 500px; margin: 0 auto; color: #d3d4ce; font-size: 1rem; line-height: 1.6; }
.success-actions { display: grid; gap: 12px; margin-top: 30px; }
.success-actions .submit-button { text-align: left; text-decoration: none; }
.secondary-action { display: grid; min-height: 48px; place-items: center; border: 1px solid var(--line); border-radius: 11px; color: #d3d4ce; font-size: 0.84rem; text-decoration: none; }
.secondary-action:hover { border-color: rgba(199, 247, 106, 0.55); color: var(--paper); }
.bot-field { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
@media (min-width: 620px) {
  .page-shell { padding-top: 46px; }
  .hero { padding-bottom: 35px; }
  .portrait { width: 104px; height: 104px; }
  .link-card { padding: 18px 20px; }
  .about { padding: 34px 30px; }
  .form-shell { padding-top: 38px; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .hire-form { padding: 28px; }
  .success-card { padding: 48px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .link-card { transition: none; }
  .link-card:hover { transform: none; }
}
