:root {
  --navy: #07335f;
  --ink: #10243a;
  --blue: #1769a6;
  --sky: #eaf5ff;
  --green: #5a9f34;
  --green-dark: #407a23;
  --line: #dce8f2;
  --soft: #f6f9fc;
  --muted: #607083;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(7, 51, 95, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(90, 159, 52, 0.35);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 6vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  line-height: 1.1;
}

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

.brand span {
  max-width: 260px;
  font-size: 1.08rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
}

nav a:hover,
nav a:focus {
  background: var(--sky);
}

.nav-cta {
  color: var(--white);
  background: var(--navy);
}

.nav-cta:hover,
.nav-cta:focus {
  background: var(--blue);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  padding: 9px 14px;
  font-weight: 800;
}

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
  gap: 44px;
  align-items: center;
  padding: 78px 6vw 56px;
  background:
    linear-gradient(120deg, rgba(234, 245, 255, 0.94), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, #ffffff 0%, #eef7ff 100%);
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.55rem, 5.4vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 680px;
  margin: 22px 0 8px;
  color: var(--muted);
  font-size: 1.18rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 14px 10px 0 0;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.primary {
  color: var(--white);
  background: var(--green);
}

.primary:hover,
.primary:focus {
  background: var(--green-dark);
}

.secondary {
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--navy);
}

.ghost {
  color: var(--navy);
  background: var(--sky);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 640px;
  margin: 34px 0 0;
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.hero-stats dt {
  color: var(--navy);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-brand-panel {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 34px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-brand-panel img {
  width: min(100%, 320px);
  border-radius: 50%;
}

.hero-brand-panel strong {
  color: var(--navy);
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.08;
}

.hero-brand-panel p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus {
  text-decoration: underline;
}

.pathways {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 28px 6vw;
  background: var(--white);
}

.pathway {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  align-items: center;
  padding: 24px;
  color: var(--white);
  border-radius: 18px;
  text-decoration: none;
}

.business-path {
  background: var(--navy);
}

.jobs-path {
  background: var(--green-dark);
}

.pathway-icon {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  font-weight: 900;
}

.pathway small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pathway strong {
  font-size: 1.2rem;
  line-height: 1.25;
}

.quick-connect {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: 24px;
  align-items: center;
  padding: 34px 6vw;
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.quick-connect h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 1.1;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.quick-card {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 18px;
  color: var(--navy);
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(7, 51, 95, 0.06);
  cursor: pointer;
}

.quick-card:hover,
.quick-card:focus {
  border-color: rgba(90, 159, 52, 0.52);
  transform: translateY(-2px);
}

.quick-card span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-card strong {
  font-size: 1.12rem;
  line-height: 1.25;
}

.section {
  padding: 82px 6vw;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.section h2 {
  max-width: 850px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.intro > p,
.section-heading > p,
.contact > p,
.community p,
.dari p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.business-section,
.seekers-section {
  background: var(--soft);
}

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

.feature-grid article,
.listing-card,
.job-board,
.candidate-card,
.panel-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(7, 51, 95, 0.07);
}

.feature-grid article {
  padding: 26px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--navy);
  border-radius: 13px;
  font-weight: 900;
}

.feature-grid h3,
.listing-card h3,
.job-board h3,
.candidate-card h3,
.panel-form h3 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.2;
}

.feature-grid p,
.listing-card p,
.job-item p,
.candidate-card p {
  margin: 0;
  color: var(--muted);
}

.showcase,
.jobs-layout,
.seeker-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 24px;
  align-items: start;
  margin-top: 28px;
}

.listing-card {
  display: grid;
  gap: 28px;
  min-height: 100%;
  padding: 30px;
}

.live-card {
  border-color: rgba(90, 159, 52, 0.38);
}

.listing-card small,
.job-board small,
.job-item span,
.candidate-card span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listing-card ul,
.community ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.listing-card li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.panel-form {
  padding: 26px;
}

.panel-form h3 {
  margin-top: 0;
}

.form-intro {
  margin: -4px 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

label {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd9e5;
  border-radius: 12px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(23, 105, 166, 0.18);
  border-color: var(--blue);
}

.form-status {
  min-height: 1.5em;
  margin: 12px 0 0;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.jobs-section {
  background: var(--navy);
  color: var(--white);
}

.jobs-section .section-heading h2,
.jobs-section .section-heading .eyebrow {
  color: var(--white);
}

.jobs-section .section-heading p {
  color: #d8eaff;
}

.job-board {
  padding: 26px;
}

.board-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 12px;
}

.board-header h3 {
  margin-top: 6px;
}

.board-header a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 4px;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn:focus,
.filter-btn.is-active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.job-item {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.job-item.is-hidden {
  display: none;
}

.job-item h4 {
  margin: 7px 0 5px;
  color: var(--navy);
  font-size: 1.12rem;
}

.light-form {
  box-shadow: none;
}

.candidate-list {
  display: grid;
  gap: 18px;
}

.candidate-card {
  padding: 26px;
}

.candidate-card small {
  display: block;
  margin-top: 14px;
  color: var(--navy);
  font-weight: 800;
}

.community {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0b4b82);
}

.community h2,
.community .eyebrow {
  color: var(--white);
}

.community p {
  color: #deecfb;
}

.community ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.community li {
  padding: 16px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  font-weight: 900;
}

.dari {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 38px;
  align-items: center;
}

.dari img {
  display: block;
  width: 100%;
  max-height: 780px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact {
  text-align: center;
  background: var(--soft);
}

.contact h2,
.contact p {
  margin-left: auto;
  margin-right: auto;
}

.contact p {
  max-width: 760px;
}

.contact address {
  margin-top: 24px;
  color: var(--muted);
  font-style: normal;
}

.contact a {
  color: var(--blue);
  font-weight: 900;
}

footer {
  padding: 28px 6vw;
  color: #c4d3e0;
  text-align: center;
  background: #061e38;
}

footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  nav.is-open {
    display: flex;
  }

  nav a {
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .hero,
  .intro,
  .quick-connect,
  .showcase,
  .jobs-layout,
  .seeker-content,
  .community,
  .dari {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-brand-panel img {
    width: min(100%, 260px);
  }

  .feature-grid,
  .quick-actions,
  .pathways {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 64px;
    height: 64px;
  }

  .brand span {
    max-width: 180px;
    font-size: 0.9rem;
  }

  .hero,
  .section {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
    margin-right: 0;
  }

  .hero-stats,
  .community ul {
    grid-template-columns: 1fr;
  }

  .pathway {
    grid-template-columns: 1fr;
  }

  .pathway-icon {
    grid-row: auto;
  }
}
