:root {
  --green-950: #092e20;
  --green-900: #103d29;
  --green-700: #167244;
  --green-600: #198a50;
  --green-100: #e6f1e9;
  --ink: #132019;
  --muted: #54645b;
  --border: #d8e0d9;
  --surface: #f5f7f3;
  --white: #ffffff;
  --gold: #d6a441;
  --max: 1180px;
  font-family: "Instrument Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 94px;
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 94px;
}

body {
  margin: 0;
  background: var(--white);
}

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

p {
  margin: 0;
  line-height: 1.55;
}

h1,
h2,
h3 {
  font-family: "Sora", Arial, sans-serif;
  letter-spacing: 0;
  margin: 0;
}

.site-header {
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 38px;
  height: 78px;
  justify-content: space-between;
  padding: 0 max(24px, calc((100% - var(--max)) / 2));
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 11px;
}

.brand-mark {
  align-items: center;
  background: var(--green-900);
  border: 2px solid var(--green-600);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-family: "Sora", Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.brand-logo {
  border-radius: 50%;
  height: 52px;
  object-fit: cover;
  width: 52px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.03;
}

.brand-copy strong {
  color: var(--green-950);
  font: 700 20px "Sora", Arial, sans-serif;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  color: var(--muted);
  font-weight: 500;
}

.desktop-nav a:hover {
  color: var(--green-700);
}

.desktop-nav .current {
  color: var(--green-900);
  font-weight: 700;
}

.button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 600;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.button-solid {
  background: var(--green-700);
  color: var(--white);
}

.button-solid:hover {
  background: var(--green-900);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-dark {
  background: var(--green-950);
  color: var(--white);
}

.hero {
  color: var(--white);
  min-height: calc(100vh - 128px);
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 35%;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(5, 21, 14, 0.88) 0%, rgba(5, 21, 14, 0.68) 43%, rgba(5, 21, 14, 0.2) 100%);
  inset: 0;
  position: absolute;
}

.hero-content {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(72px, 12vh, 112px) 24px 150px;
  position: relative;
}

.kicker {
  color: var(--green-600);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero .kicker {
  color: #78d39d;
}

.hero h1 {
  font-size: clamp(42px, 5.5vw, 64px);
  line-height: 1.08;
  max-width: 660px;
}

.hero-summary {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  margin: 24px 0 38px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.95);
  bottom: 0;
  color: var(--ink);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  left: max(24px, calc((100% - var(--max)) / 2));
  max-width: 720px;
  position: absolute;
}

.hero-proof div {
  border-right: 1px solid var(--border);
  padding: 22px 30px;
}

.hero-proof div:last-child {
  border: 0;
}

.hero-proof strong {
  color: var(--green-900);
  display: block;
  font: 700 18px "Sora", Arial, sans-serif;
}

.hero-proof span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 5px;
}

.route-band {
  align-items: stretch;
  background: var(--surface);
  display: grid;
  gap: 18px;
  grid-template-columns: 1.05fr 1fr 1fr;
  padding: 54px max(24px, calc((100% - var(--max)) / 2));
}

.route-intro {
  padding: 18px 25px 0 0;
}

.section-heading h2,
.route-intro h2,
.contact h2,
.social-band h2 {
  font-size: clamp(28px, 3.1vw, 36px);
  line-height: 1.2;
}

.route {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
}

.route h3 {
  color: var(--green-950);
  font-size: 22px;
  margin-bottom: 12px;
}

.route p {
  color: var(--muted);
  min-height: 82px;
}

.route a {
  color: var(--green-700);
  display: inline-flex;
  font-weight: 700;
  gap: 10px;
  margin-top: 22px;
  margin-right: 18px;
}

.identity-band {
  background: var(--white);
  display: grid;
  gap: 48px;
  grid-template-columns: 0.95fr 1.05fr;
  padding: 72px max(24px, calc((100% - var(--max)) / 2));
}

.identity-copy h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.2;
  margin: 12px 0 18px;
}

.identity-copy > p:not(.kicker) {
  color: var(--muted);
  font-size: 18px;
}

.identity-principles {
  border-left: 1px solid var(--border);
  padding-left: 44px;
}

.identity-quote {
  color: var(--green-950);
  font: 600 24px/1.45 "Sora", Arial, sans-serif;
  margin-bottom: 34px;
}

.identity-facts {
  border-top: 1px solid var(--border);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 26px;
}

.identity-facts strong {
  color: var(--green-700);
  display: block;
  font: 700 25px "Sora", Arial, sans-serif;
  margin-bottom: 8px;
}

.identity-facts span {
  color: var(--muted);
  font-size: 14px;
}

.services,
.process,
.jobs,
.contact {
  margin: 0 auto;
  max-width: var(--max);
  padding: 78px 24px;
}

.section-heading {
  margin-bottom: 42px;
  max-width: 640px;
}

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

.service {
  border: 1px solid var(--border);
  border-radius: 8px;
  min-height: 238px;
  padding: 32px 28px;
}

.service-number {
  color: var(--gold);
  display: block;
  font-weight: 700;
  margin-bottom: 34px;
}

.service h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.service p {
  color: var(--muted);
}

.section-action {
  color: var(--green-700);
  display: inline-flex;
  font-weight: 700;
  margin-top: 34px;
}

.process {
  border-top: 1px solid var(--border);
}

.process-layout {
  display: grid;
  gap: 48px;
  grid-template-columns: 1.2fr 0.8fr;
}

.process-track {
  display: flex;
  flex-direction: column;
}

.process-track article {
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 22px;
  padding: 0 0 26px;
}

.process-track article + article {
  padding-top: 26px;
}

.process-track span {
  align-items: center;
  background: var(--green-100);
  border-radius: 50%;
  color: var(--green-700);
  display: flex;
  flex: 0 0 38px;
  font-weight: 700;
  height: 38px;
  justify-content: center;
}

.process-track h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.process-track p {
  color: var(--muted);
}

.trust-panel {
  background: var(--green-950);
  border-radius: 8px;
  color: var(--white);
  padding: 34px;
}

.trust-panel h3 {
  font-size: 27px;
  margin-bottom: 14px;
}

.trust-panel p:not(.kicker) {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
}

.trust-panel a {
  color: #7cdaa2;
  font-weight: 700;
}

.jobs {
  background: var(--surface);
  max-width: none;
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  padding-right: max(24px, calc((100% - var(--max)) / 2));
}

.jobs-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  max-width: none;
}

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

.job-grid article {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
}

.job-grid .featured-job {
  padding-top: 15px;
}

.featured-job img {
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  display: block;
  margin-bottom: 18px;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.job-grid span {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.job-grid h3 {
  font-size: 20px;
  margin: 18px 0 10px;
}

.job-grid p,
.job-note {
  color: var(--muted);
}

.text-action {
  color: var(--green-700);
  display: inline-block;
  font-weight: 700;
  margin-top: 20px;
}

.job-note {
  font-size: 13px;
  margin-top: 24px;
}

.social-band {
  align-items: center;
  background: var(--green-900);
  color: var(--white);
  display: flex;
  gap: 40px;
  justify-content: space-between;
  padding: 62px max(24px, calc((100% - var(--max)) / 2));
}

.social-band .kicker {
  color: #7cdaa2;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  display: flex;
  flex: 0 0 auto;
  padding: 16px 20px;
}

.social-link strong,
.social-link small {
  display: block;
}

.social-link small {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 5px;
}

.contact {
  display: grid;
  gap: 66px;
  grid-template-columns: 1fr 1fr;
}

.contact-copy > p:not(.kicker) {
  color: var(--muted);
  margin: 18px 0 28px;
}

address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  flex-direction: column;
}

.contact-actions a {
  align-items: center;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  padding: 21px 0;
}

.contact-actions strong {
  color: var(--green-900);
  font: 600 17px "Sora", Arial, sans-serif;
}

.contact-actions span {
  color: var(--muted);
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 25px max(24px, calc((100% - var(--max)) / 2));
}

.footer-brand .brand-mark {
  font-size: 18px;
  height: 34px;
  width: 34px;
}

.footer-brand .brand-logo {
  height: 39px;
  width: 39px;
}

.footer-brand .brand-copy strong {
  font-size: 16px;
}

.site-footer > a {
  color: var(--green-700);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a {
  color: var(--green-700);
  font-weight: 700;
}

.about-hero {
  background: var(--green-950);
  color: var(--white);
  padding: 82px max(24px, calc((100% - var(--max)) / 2));
}

.about-hero .kicker,
.reason-section .kicker {
  color: #7cdaa2;
}

.about-hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.1;
  margin: 14px 0 22px;
  max-width: 780px;
}

.about-summary {
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  max-width: 790px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.statement-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1.05fr 0.95fr;
  margin: 0 auto;
  max-width: var(--max);
  padding: 72px 24px;
}

.statement {
  border-left: 1px solid var(--border);
  padding: 10px 0 14px 42px;
}

.statement:first-child {
  border-left: 0;
  padding-left: 0;
  padding-right: 42px;
}

.statement h2 {
  color: var(--green-950);
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.25;
  margin-bottom: 18px;
}

.statement > p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.about-history {
  background: var(--surface);
  display: grid;
  gap: 60px;
  grid-template-columns: 0.8fr 1.2fr;
  padding: 70px max(24px, calc((100% - var(--max)) / 2));
}

.about-history h2,
.reason-section h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.25;
}

.about-history > div:last-child > p:first-child {
  color: var(--muted);
  font-size: 18px;
}

.brand-statement {
  border-left: 3px solid var(--green-700);
  color: var(--green-950);
  font: 600 20px/1.55 "Sora", Arial, sans-serif;
  margin-top: 30px;
  padding-left: 26px;
}

.values-section,
.profile-section,
.industries-section,
.goals-section,
.milestones-section {
  margin: 0 auto;
  max-width: var(--max);
  padding: 72px 24px;
}

.profile-section,
.goals-section,
.milestones-section {
  border-top: 1px solid var(--border);
}

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

.milestone-grid article {
  border-left: 2px solid var(--green-700);
  padding-left: 23px;
}

.milestone-grid span {
  color: var(--green-700);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.milestone-grid h3 {
  color: var(--green-950);
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 11px;
}

.milestone-grid p {
  color: var(--muted);
}

.value-list,
.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.value-list span,
.industry-list span {
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--green-950);
  font-weight: 600;
  padding: 12px 16px;
}

.profile-grid {
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0 28px;
  grid-template-columns: repeat(3, 1fr);
}

.profile-grid article {
  border-bottom: 1px solid var(--border);
  padding: 27px 0;
}

.profile-grid h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.profile-grid p {
  color: var(--muted);
}

.industries-section {
  padding-top: 22px;
}

.reason-section {
  background: var(--green-950);
  color: var(--white);
  display: grid;
  gap: 54px;
  grid-template-columns: 0.94fr 1.06fr;
  padding: 70px max(24px, calc((100% - var(--max)) / 2));
}

.reason-section ul {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.reason-section li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 17px;
  padding: 16px 0;
}

.reason-section li:first-child {
  padding-top: 0;
}

.founder-section {
  background: var(--surface);
  padding: 72px max(24px, calc((100% - var(--max)) / 2));
}

.founder-section blockquote {
  color: var(--green-950);
  font: 600 clamp(25px, 3vw, 34px)/1.45 "Sora", Arial, sans-serif;
  margin: 0 0 32px;
  max-width: 940px;
}

.founder-section p {
  color: var(--muted);
}

.founder-section strong {
  color: var(--green-950);
  display: block;
  font: 700 18px "Sora", Arial, sans-serif;
  margin-bottom: 8px;
}

.founder-section span {
  display: block;
}

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

.goal-grid article {
  border-top: 3px solid var(--green-700);
  color: var(--green-950);
  font: 600 18px/1.45 "Sora", Arial, sans-serif;
  padding: 21px 4px 0 0;
}

.feedback-section {
  align-items: center;
  background: var(--surface);
  display: flex;
  gap: 48px;
  justify-content: space-between;
  padding: 68px max(24px, calc((100% - var(--max)) / 2));
}

.feedback-section > div {
  max-width: 730px;
}

.feedback-section h2,
.conversion-band h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.22;
  margin-bottom: 15px;
}

.feedback-section p:not(.kicker) {
  color: var(--muted);
  font-size: 17px;
}

.conversion-band {
  align-items: center;
  background: var(--green-950);
  color: var(--white);
  display: flex;
  gap: 44px;
  justify-content: space-between;
  padding: 62px max(24px, calc((100% - var(--max)) / 2));
}

.conversion-band .kicker {
  color: #7cdaa2;
}

.conversion-band h2 {
  max-width: 580px;
}

.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.about-contact {
  border-top: 1px solid var(--border);
  margin-top: 0;
}

.page-main {
  background: var(--surface);
  min-height: calc(100vh - 78px);
}

.page-hero {
  background: var(--green-950);
  color: var(--white);
  padding: 70px max(24px, calc((100% - var(--max)) / 2));
}

.page-hero .kicker {
  color: #7cdaa2;
}

.page-hero h1,
.form-intro h1,
.admin-login h1,
.dashboard-head h1 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 18px;
}

.page-hero > p:last-child {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 610px;
}

.job-browser {
  margin: 0 auto;
  max-width: var(--max);
  padding: 52px 24px 72px;
}

.filters {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 260px;
  margin-bottom: 25px;
}

label {
  color: var(--green-950);
  display: flex;
  flex-direction: column;
  font-weight: 600;
  gap: 8px;
}

input,
select,
textarea {
  background: var(--white);
  border: 1px solid #bfcbc2;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 50px;
  padding: 12px 14px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-700);
  outline: 2px solid rgba(22, 114, 68, 0.14);
}

.results-count {
  color: var(--muted);
  margin-bottom: 20px;
}

.listing-grid {
  display: grid;
  gap: 16px;
}

.job-listing {
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 28px;
  grid-template-columns: 132px 1fr auto;
  padding: 28px;
}

.listing-flyer {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  display: block;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.job-listing:not(.with-flyer) {
  grid-template-columns: 1fr auto;
}

.job-listing .job-meta {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.job-listing h2 {
  font-size: 23px;
  margin-bottom: 12px;
}

.job-listing p {
  color: var(--muted);
}

.job-listing .salary {
  color: var(--ink);
  font-weight: 600;
  margin-top: 12px;
}

.job-listing .closing-date-public,
.role-deadline {
  color: var(--green-700);
  font-size: 14px;
  font-weight: 700;
  margin-top: 12px;
}

.listing-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.loading-state,
.empty-state {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  padding: 30px;
}

.notice-band {
  align-items: center;
  background: var(--green-100);
  display: flex;
  gap: 20px;
  padding: 28px max(24px, calc((100% - var(--max)) / 2));
}

.notice-band strong {
  color: var(--green-900);
  white-space: nowrap;
}

.notice-band p {
  color: var(--muted);
  flex: 1;
}

.compact-footer {
  background: var(--white);
}

.form-page {
  display: grid;
  gap: 60px;
  grid-template-columns: 0.88fr 1.12fr;
  margin: 0 auto;
  max-width: var(--max);
  min-height: calc(100vh - 78px);
  padding: 70px 24px;
}

.form-intro {
  padding-top: 20px;
}

.form-intro > p:not(.kicker) {
  color: var(--muted);
  font-size: 17px;
}

.security-note {
  background: var(--green-100);
  border-left: 3px solid var(--green-700);
  color: var(--muted);
  line-height: 1.5;
  margin-top: 30px;
  padding: 18px;
}

.selected-role {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 28px;
  padding: 20px;
}

.selected-role strong {
  color: var(--green-900);
  display: block;
  margin-bottom: 7px;
}

.selected-role p {
  color: var(--muted);
}

.security-note strong {
  color: var(--green-900);
}

.contact-inline {
  color: var(--green-700);
  display: block;
  font-weight: 700;
  margin-top: 28px;
}

.service-terms {
  border-top: 1px solid var(--border);
  margin-top: 30px;
  padding-top: 26px;
}

.service-terms h2 {
  color: var(--green-950);
  font-size: 21px;
  margin-bottom: 18px;
}

.service-terms p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 10px;
}

.service-terms strong {
  color: var(--green-700);
  margin-right: 6px;
}

.service-terms small {
  color: var(--muted);
  display: block;
  line-height: 1.5;
  margin-top: 18px;
}

.submission-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 34px;
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.file-field input {
  background: var(--white);
  padding: 12px;
}

.file-field small {
  color: var(--muted);
  font-weight: 400;
}

.photo-preview {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 12px;
}

.photo-preview img {
  border-radius: 6px;
  height: 84px;
  object-fit: cover;
  width: 84px;
}

.photo-preview figcaption {
  color: var(--muted);
  font-size: 14px;
}

.checkbox-field {
  align-items: start;
  color: var(--muted);
  flex-direction: row;
  font-weight: 400;
  gap: 12px;
}

.checkbox-field input {
  min-height: auto;
  margin-top: 4px;
  width: auto;
}

.submit-button {
  border: 0;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-message {
  border-radius: 6px;
  color: var(--muted);
  display: none;
  padding: 13px 15px;
}

.form-message.visible {
  display: block;
}

.form-message.success {
  background: var(--green-100);
  color: var(--green-900);
}

.form-message.error {
  background: #fcebea;
  color: #8d241e;
}

.stories-layout,
.directions-layout {
  display: grid;
  gap: 42px;
  grid-template-columns: 0.94fr 1.06fr;
  margin: 0 auto;
  max-width: var(--max);
  padding: 58px 24px 76px;
}

.compact-heading {
  margin-bottom: 26px;
}

.story-grid {
  display: grid;
  gap: 15px;
}

.story-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

.story-card p {
  color: var(--green-950);
  font-size: 17px;
  margin-bottom: 18px;
}

.story-card strong {
  color: var(--green-900);
  display: block;
  margin-bottom: 5px;
}

.story-card span,
.form-intro-note {
  color: var(--muted);
  font-size: 14px;
}

.submission-form h2,
.payment-note h2,
.visit-panel h2 {
  font-size: 23px;
}

.payment-note {
  border-top: 1px solid var(--border);
  margin-top: 28px;
  padding-top: 25px;
}

.payment-note h2 {
  margin-bottom: 12px;
}

.payment-note p {
  color: var(--muted);
}

.cv-progress-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 62px max(24px, calc((100% - var(--max)) / 2)) 78px;
}

.cv-progress-section .section-heading p:last-child {
  color: var(--muted);
  margin-top: 13px;
}

.cv-progress-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.cv-builder-ready {
  background: var(--green-100);
  border-radius: 8px;
  padding: 20px;
}

.cv-builder-ready strong {
  color: var(--green-900);
  display: block;
  font: 700 18px "Sora", Arial, sans-serif;
  margin-bottom: 8px;
}

.cv-builder-ready p {
  color: var(--muted);
  margin-bottom: 16px;
}

.visit-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 35px;
}

.visit-panel h2 {
  margin-bottom: 16px;
}

.visit-panel address {
  font-size: 17px;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.contact-directory {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  padding: 14px 30px;
}

.contact-directory a {
  align-items: center;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
}

.contact-directory a:last-child {
  border: 0;
}

.contact-directory strong {
  color: var(--green-900);
  font-weight: 700;
}

.contact-directory span {
  color: var(--muted);
  text-align: right;
}

.quick-assistant {
  bottom: 24px;
  position: fixed;
  right: 24px;
  z-index: 45;
}

.assistant-toggle {
  background: var(--green-700);
  border: 0;
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  font: 700 16px "Instrument Sans", Arial, sans-serif;
  min-height: 48px;
  padding: 0 22px;
}

.assistant-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  bottom: 58px;
  box-shadow: 0 14px 38px rgba(9, 46, 32, 0.14);
  padding: 18px;
  position: absolute;
  right: 0;
  width: min(350px, calc(100vw - 38px));
}

.assistant-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.assistant-head strong {
  color: var(--green-950);
  font: 700 18px "Sora", Arial, sans-serif;
}

.assistant-head button {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  padding: 7px;
}

.assistant-note {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 15px;
}

.assistant-prompts {
  display: grid;
  gap: 7px;
}

.assistant-prompts button {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--green-950);
  cursor: pointer;
  font: 500 14px "Instrument Sans", Arial, sans-serif;
  padding: 10px 11px;
  text-align: left;
}

.assistant-answer {
  background: var(--green-100);
  border-radius: 6px;
  color: var(--green-950);
  font-size: 14px;
  line-height: 1.45;
  margin: 14px 0;
  padding: 12px;
}

.assistant-answer a,
.assistant-contact {
  color: var(--green-700);
  font-weight: 700;
}

.assistant-contact {
  display: block;
  font-size: 14px;
}

.builder-body {
  background: var(--surface);
}

.builder-page {
  margin: 0 auto;
  max-width: 1360px;
  padding: 36px 24px 56px;
}

.builder-access {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin: 46px auto;
  max-width: 560px;
  padding: 44px;
}

.builder-access h1 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.builder-access p:last-child,
.builder-note {
  color: var(--muted);
}

.builder-workspace {
  align-items: start;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(390px, 0.92fr) minmax(500px, 1.08fr);
}

.builder-controls {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 29px;
}

.builder-controls h1 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 11px;
}

.builder-note {
  margin-bottom: 25px;
}

.builder-controls form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.builder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.builder-actions .button {
  border: 0;
}

.cv-document {
  background: var(--white);
  box-shadow: 0 4px 22px rgba(19, 32, 25, 0.08);
  color: #152019;
  min-height: 1070px;
  padding: 56px 58px;
}

.cv-heading {
  border-bottom: 2px solid var(--green-700);
  margin-bottom: 34px;
  padding-bottom: 22px;
}

.cv-heading h2 {
  color: var(--green-950);
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 9px;
}

.cv-heading > p {
  color: var(--green-700);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 13px;
}

.cv-contact {
  color: var(--muted);
  font-size: 14px;
}

.cv-document section {
  margin-bottom: 26px;
}

.cv-document section h3 {
  border-bottom: 1px solid var(--border);
  color: var(--green-900);
  font-size: 16px;
  margin-bottom: 12px;
  padding-bottom: 7px;
  text-transform: uppercase;
}

.cv-document section p,
.cv-document li {
  color: #37463e;
  font-size: 15px;
  line-height: 1.55;
}

.cv-document ul {
  margin: 0;
  padding-left: 20px;
}

.preserve-lines {
  white-space: pre-line;
}

.cv-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  margin-top: 38px;
  padding-top: 15px;
}

.admin-body {
  background: var(--surface);
}

.admin-main {
  margin: 0 auto;
  max-width: var(--max);
  padding: 52px 24px;
}

.admin-login {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin: 30px auto;
  max-width: 480px;
  padding: 42px;
}

.admin-login > p:not(.kicker) {
  color: var(--muted);
  margin-bottom: 28px;
}

.admin-login form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hidden {
  display: none !important;
}

.dashboard-head {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}

.button-quiet {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink);
  cursor: pointer;
}

.stat-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  margin-bottom: 32px;
}

.stat-row article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
}

.stat-row span {
  color: var(--muted);
  display: block;
  font-size: 14px;
}

.stat-row strong {
  color: var(--green-950);
  display: block;
  font: 700 32px "Sora", Arial, sans-serif;
  margin-top: 12px;
}

.dashboard-tabs {
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 28px;
  margin-bottom: 22px;
}

.dashboard-tabs button {
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  cursor: pointer;
  font: 600 16px "Instrument Sans", Arial, sans-serif;
  padding: 16px 2px;
}

.dashboard-tabs button.active {
  border-bottom-color: var(--green-700);
  color: var(--green-900);
}

.panel-tools {
  align-items: end;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.talent-tools label {
  margin-right: auto;
  max-width: 360px;
  width: 100%;
}

.import-panel {
  align-items: end;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr minmax(190px, 230px) minmax(220px, 300px) auto;
  margin-bottom: 22px;
  padding: 22px;
}

.import-panel h2 {
  font-size: 19px;
  margin-bottom: 7px;
}

.import-panel p {
  color: var(--muted);
  font-size: 14px;
}

.import-panel .form-message {
  grid-column: 1 / -1;
}

.compact-field small {
  display: none;
}

.admin-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.admin-entry {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 17px;
  grid-template-columns: 1fr auto;
  padding: 22px;
}

.admin-entry h3 {
  font-size: 18px;
  margin-bottom: 7px;
}

.admin-entry p {
  color: var(--muted);
  font-size: 14px;
}

.admin-job-flyer {
  border-radius: 6px;
  display: block;
  margin-bottom: 12px;
  max-width: 130px;
  width: 100%;
}

.testimonial-editor {
  margin-bottom: 22px;
}

.video-testimonial-link {
  background: var(--green-950);
  border-radius: 8px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 18px 0;
  padding: 16px;
}

.video-testimonial-link span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.video-testimonial-link strong {
  color: var(--white);
}

.admin-entry .retention-note {
  color: #7a5520;
  font-weight: 600;
  margin-top: 7px;
}

.admin-actions {
  align-items: end;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-actions select {
  min-height: 42px;
  width: 150px;
}

.admin-actions .closing-date {
  min-height: 42px;
  width: 170px;
}

.analytics-summary {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-bottom: 18px;
}

.analytics-summary article,
.analytics-columns article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
}

.analytics-summary span {
  color: var(--muted);
  display: block;
  font-size: 14px;
}

.analytics-summary strong {
  color: var(--green-950);
  display: block;
  font: 700 28px "Sora", Arial, sans-serif;
  margin-top: 10px;
}

.analytics-columns {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
}

.analytics-columns h2,
.panel-heading {
  font-size: 18px;
  margin-bottom: 14px;
}

.metric-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.metric-row {
  align-items: center;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding-bottom: 10px;
}

.metric-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.metric-row span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.analytics-pill {
  align-self: start;
  background: var(--green-100);
  border-radius: 999px;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 10px;
}

.download-link {
  background: var(--green-100);
  border-radius: 6px;
  color: var(--green-900);
  cursor: pointer;
  font-weight: 700;
  padding: 10px 14px;
}

.delete-link {
  background: #fcebea;
  border: 0;
  border-radius: 6px;
  color: #8d241e;
  cursor: pointer;
  font: 600 14px "Instrument Sans", Arial, sans-serif;
  padding: 10px 14px;
}

.status-page {
  display: grid;
  gap: 58px;
  grid-template-columns: 0.9fr 1.1fr;
  margin: 0 auto;
  max-width: 980px;
  min-height: calc(100vh - 78px);
  padding: 70px 24px;
}

.status-form {
  align-self: start;
}

.status-result {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
}

.status-result > span {
  background: var(--green-100);
  border-radius: 4px;
  color: var(--green-900);
  display: inline-block;
  font-weight: 700;
  margin-bottom: 15px;
  padding: 6px 11px;
}

.status-result h2 {
  font-size: 22px;
  margin-bottom: 9px;
}

.status-result p {
  color: var(--muted);
}

.job-editor {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
  padding: 26px;
}

.job-editor h2 {
  font-size: 22px;
}

.role-page {
  margin: 0 auto;
  max-width: 920px;
  min-height: calc(100vh - 78px);
  padding: 55px 24px;
}

.back-link {
  color: var(--green-700);
  display: block;
  font-weight: 700;
  margin-bottom: 28px;
}

.role-detail {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 45px;
}

.role-detail.with-image {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(220px, 310px) 1fr;
}

.role-flyer {
  border-radius: 8px;
  display: block;
  width: 100%;
}

.role-copy {
  min-width: 0;
}

.role-detail h1 {
  font-size: clamp(34px, 4vw, 46px);
  margin-bottom: 14px;
}

.role-meta {
  color: var(--green-700);
  font-weight: 700;
}

.role-source {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}

.vacancy-closed {
  background: #fcebea;
  border-radius: 6px;
  color: #8d241e;
  font-weight: 700;
  padding: 13px 17px;
}

.role-sections {
  border-top: 1px solid var(--border);
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  padding-top: 31px;
}

.role-sections h2 {
  font-size: 18px;
  margin-bottom: 11px;
}

.role-sections p {
  color: var(--muted);
}

.role-sections ul {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  padding-left: 18px;
}

.role-actions {
  display: flex;
  gap: 12px;
  margin-top: 38px;
}

.role-notice {
  color: var(--muted);
  font-size: 14px;
  margin-top: 26px;
}

.policy-page {
  margin: 0 auto;
  max-width: 760px;
  min-height: calc(100vh - 160px);
  padding: 68px 24px;
}

.policy-page h1 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.18;
  margin-bottom: 26px;
}

.policy-page h2 {
  font-size: 21px;
  margin: 34px 0 10px;
}

.policy-page p {
  color: var(--muted);
  font-size: 17px;
}

.policy-page a,
.checkbox-field a {
  color: var(--green-700);
  font-weight: 700;
}

.mobile-actions {
  display: none;
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-action {
    display: none;
  }

  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    padding: 64px 20px 178px;
  }

  .hero-summary {
    font-size: 18px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    left: 20px;
    right: 20px;
  }

  .hero-proof div {
    align-items: center;
    border-bottom: 1px solid var(--border);
    border-right: 0;
    display: flex;
    gap: 14px;
    padding: 12px 18px;
  }

  .hero-proof span {
    margin: 0;
  }

  .route-band,
  .identity-band,
  .service-grid,
  .process-layout,
  .job-grid,
  .contact,
  .stories-layout,
  .directions-layout,
  .statement-grid,
  .about-history,
  .profile-grid,
  .reason-section,
  .goal-grid,
  .milestone-grid {
    grid-template-columns: 1fr;
  }

  .route-band {
    padding: 42px 20px;
  }

  .identity-band {
    gap: 37px;
    padding: 52px 20px;
  }

  .identity-principles {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 30px;
  }

  .identity-quote {
    font-size: 20px;
  }

  .identity-facts {
    grid-template-columns: 1fr;
  }

  .services,
  .process,
  .contact {
    padding: 58px 20px;
  }

  .jobs {
    padding: 58px 20px;
  }

  .jobs-heading,
  .social-band,
  .feedback-section,
  .conversion-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-band {
    padding: 52px 20px;
  }

  .site-footer {
    gap: 18px;
  }

  .page-hero {
    padding: 52px 20px;
  }

  .about-hero,
  .founder-section {
    padding: 56px 20px;
  }

  .statement-grid,
  .about-history,
  .values-section,
  .profile-section,
  .industries-section,
  .goals-section,
  .reason-section,
  .milestones-section,
  .feedback-section,
  .conversion-band {
    gap: 34px;
    padding: 54px 20px;
  }

  .statement {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding: 34px 0 0;
  }

  .statement:first-child {
    padding: 0 0 34px;
  }

  .profile-grid {
    border-top: 1px solid var(--border);
    gap: 0;
  }

  .industries-section {
    padding-top: 0;
  }

  .milestone-grid {
    gap: 32px;
  }

  .conversion-actions {
    justify-content: flex-start;
  }

  .job-browser,
  .admin-main {
    padding: 40px 20px;
  }

  .stories-layout,
  .directions-layout {
    gap: 28px;
    padding: 42px 20px 58px;
  }

  .cv-progress-section {
    padding: 48px 20px 60px;
  }

  .cv-progress-grid,
  .builder-workspace {
    grid-template-columns: 1fr;
  }

  .builder-page {
    padding: 26px 14px 48px;
  }

  .builder-controls,
  .builder-access {
    padding: 24px 20px;
  }

  .cv-document {
    min-height: 0;
    padding: 36px 24px;
  }

  .filters,
  .form-page,
  .status-page,
  .form-grid,
  .stat-row,
  .import-panel,
  .analytics-columns {
    grid-template-columns: 1fr;
  }

  .dashboard-tabs {
    gap: 18px;
    overflow-x: auto;
  }

  .panel-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .job-listing,
  .admin-entry {
    grid-template-columns: 1fr;
  }

  .listing-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .notice-band,
  .dashboard-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-page {
    gap: 34px;
    padding: 42px 20px;
  }

  .status-page {
    gap: 30px;
    padding: 42px 20px;
  }

  .submission-form,
  .admin-login {
    padding: 25px 20px;
  }

  body {
    padding-bottom: 66px;
  }

  .admin-body {
    padding-bottom: 0;
  }

  .policy-page {
    padding: 46px 20px;
  }

  .role-page {
    padding: 38px 20px;
  }

  .role-detail {
    padding: 27px 20px;
  }

  .role-detail.with-image {
    grid-template-columns: 1fr;
  }

  .role-flyer {
    margin: 0 auto;
    max-width: 390px;
  }

  .role-sections {
    grid-template-columns: 1fr;
  }

  .role-actions {
    flex-direction: column;
  }

  .mobile-actions {
    background: var(--white);
    border-top: 1px solid var(--border);
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    left: 0;
    position: fixed;
    right: 0;
    z-index: 40;
  }

  .mobile-actions a {
    color: var(--muted);
    font-weight: 600;
    padding: 19px 4px;
    text-align: center;
  }

  .mobile-actions .current {
    color: var(--green-700);
  }

  .quick-assistant {
    bottom: 76px;
    right: 16px;
  }
}

@media print {
  body,
  .builder-body {
    background: var(--white);
    padding: 0;
  }

  .no-print {
    display: none !important;
  }

  .builder-page {
    max-width: none;
    padding: 0;
  }

  .builder-workspace {
    display: block !important;
  }

  .cv-document {
    box-shadow: none;
    min-height: 0;
    padding: 0;
  }
}
