:root {
  --red: #d0201a;
  --red-dark: #a8180f;
  --red-light: #fef0f0;
  --bg: #f4f6f9;
  --white: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.1);
  --r: 12px;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  z-index: 1001;
}
/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 80px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition:
    height 0.3s ease,
    box-shadow 0.3s ease;
}
nav.scrolled {
  height: 64px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: height 0.3s ease;
}
nav.scrolled .nav-logo img {
  height: 54px;
}
.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 8px;
  transition:
    background 0.2s,
    color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links a:hover {
  background: var(--red-light);
  color: var(--red);
}
.nav-links .nav-label {
  display: inline;
}
.btn-nav {
  background: var(--red);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(208, 32, 26, 0.3);
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-nav:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
/* HERO */
#hero {
  padding: 150px 5% 70px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    #d0201a18 1.5px,
    transparent 1.5px
  );
  background-size: 32px 32px;
}
.hero-glow {
  position: absolute;
  right: -10%;
  top: 10%;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(208, 32, 26, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-light);
  color: var(--red);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 18px;
}
.hero h1 span {
  color: var(--red);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}
/* SECTIONS */
section {
  padding: 84px 5%;
}
.stag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-light);
  color: var(--red);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h2.st {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 14px;
}
h2.st span {
  color: var(--red);
}
p.ss {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
}
/* STATUS CHECK */
#status-check {
  background: var(--bg);
}
.status-card {
  max-width: 560px;
  margin: 48px auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.status-form .fgroup {
  margin-bottom: 18px;
}
.turnstile-group {
  display: flex;
  justify-content: center;
}
.status-form label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
  margin-bottom: 6px;
}
.status-form input {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.status-form input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(208, 32, 26, 0.08);
}
.btn-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 14px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(208, 32, 26, 0.3);
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.form-status {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  min-height: 18px;
  text-align: center;
}
.form-status.error {
  color: var(--red);
}
.privacy-note {
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
}
.privacy-note i {
  color: var(--muted);
  margin-right: 4px;
}
/* RESULT CARD */
.hidden-result {
  display: none !important;
}
.result-card {
  max-width: 720px;
  margin: 28px auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: var(--shadow);
}
.result-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.result-head h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.result-head p {
  font-size: 13px;
  color: var(--muted);
}
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  background: var(--red-light);
  color: var(--red);
  white-space: nowrap;
}
.status-badge.badge-review {
  background: #eff6ff;
  color: #2563eb;
}
.status-badge.badge-interview {
  background: #fff7ed;
  color: #c2410c;
}
.status-badge.badge-selected {
  background: #ecfdf5;
  color: #059669;
}
.status-badge.badge-rejected {
  background: #f3f4f6;
  color: #6b7280;
}
.status-badge.badge-shortlisted {
  background: #eef2ff;
  color: #4338ca;
}
.status-badge.badge-postponed {
  background: #fefce8;
  color: #a16207;
}
.status-steps {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.status-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  width: 86px;
  text-align: center;
}
.status-step-ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.status-step.is-done .status-step-ic {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.status-step.is-current .status-step-ic {
  background: var(--red-light);
  border-color: var(--red);
  color: var(--red);
}
.status-step-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.status-step.is-done .status-step-label,
.status-step.is-current .status-step-label {
  color: var(--text);
}
.status-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 -4px;
  margin-bottom: 24px;
}
.result-message {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.result-note {
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.result-note a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}
/* NOT FOUND */
.not-found-card {
  max-width: 560px;
  margin: 28px auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
}
.not-found-card i {
  font-size: 30px;
  color: var(--red);
  margin-bottom: 14px;
}
.not-found-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.not-found-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}
.not-found-card a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}
/* FAQ */
#faq {
  background: var(--white);
}
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 780px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  color: var(--red);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: "\2212";
}
.faq-item p {
  padding: 0 22px 18px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}
/* FOOTER */
footer {
  background: var(--text);
  color: #9ca3af;
  padding: 48px 5% 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer-brand img {
  height: 90px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--red);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
}
/* ANIMATE */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.hidden {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none !important;
  }
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links .nav-label {
    display: none;
  }
  .nav-links a {
    padding: 8px 10px;
    font-size: 16px;
  }
  .btn-nav .btn-label {
    display: none;
  }
  .btn-nav {
    padding: 8px 10px;
    min-width: auto;
  }
  .result-head {
    flex-direction: column;
  }
  .status-step-label {
    font-size: 9.5px;
  }
  .status-step {
    width: 64px;
  }
}
@media (max-width: 600px) {
  section {
    padding: 56px 5%;
  }
  .status-card,
  .result-card,
  .not-found-card {
    padding: 24px;
  }
  .status-steps {
    overflow-x: auto;
    padding-bottom: 4px;
  }
}
