:root {
  --navy: #0a2234;
  --navy-deep: #071a2b;
  --navy-soft: #17364a;
  --red: #ad1b32;
  --red-dark: #8d1528;
  --ink: #18232d;
  --muted: #5b6670;
  --line: #e4e7e9;
  --paper: #f6f7f7;
  --white: #fff;
  --container: 1280px;
  --rail: 240px;
  --gap: 48px;
  --radius: 10px;
  --shadow: 0 18px 50px rgba(10, 34, 52, .09);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 3000;
  padding: 11px 15px;
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, select):focus-visible {
  outline: 3px solid #e43a55;
  outline-offset: 3px;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 92px;
  border-bottom: 1px solid rgba(10, 34, 52, .08);
  background: rgba(255, 255, 255, .98);
  transition: box-shadow .25s ease, background .25s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 30px rgba(10, 34, 52, .09);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: 100%;
  max-width: var(--container);
  height: 92px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
  padding: 0 40px;
}

.home-brand {
  z-index: 1001;
  min-width: 255px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-brand-logo {
  width: 64px;
  height: 70px;
  object-fit: contain;
}

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

.home-brand-copy strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.25px;
}

.home-brand-copy small {
  margin-top: 6px;
  color: #68727a;
  font-size: 11px;
  font-weight: 600;
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nav-item {
  flex: 0 0 auto;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 12px 10px;
  border-radius: 5px;
  color: #303942;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}

.nav-link:hover {
  color: var(--red);
  background: rgba(173, 27, 50, .05);
}

.home-header-cta {
  min-width: 128px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 7px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.home-header-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.mobile-toggle {
  z-index: 1001;
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  background: transparent;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: opacity .25s ease, transform .25s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

main {
  padding-top: 92px;
}

/* Hero */
.home-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 16%, rgba(185, 28, 51, .18), transparent 32%),
    radial-gradient(circle at 58% 105%, rgba(70, 111, 140, .18), transparent 37%),
    linear-gradient(120deg, var(--navy-deep) 0%, #0a2437 58%, #102e43 100%);
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
}

.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(4, 17, 28, .22), transparent 48%, rgba(4, 17, 28, .12));
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items: center;
  gap: 72px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.home-hero-content {
  max-width: 720px;
}

.home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.home-eyebrow::before {
  content: '';
  width: 34px;
  height: 2px;
  background: #d12a45;
}

.home-hero-content h1 {
  max-width: 710px;
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(48px, 4vw, 64px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -2.2px;
}

.home-hero-content h1 em {
  color: var(--white);
  font-style: normal;
}

.home-hero-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, .8);
  font-size: 17px;
  line-height: 1.72;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.home-btn {
  min-width: 176px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.home-btn i,
.home-text-link i {
  transition: transform .2s ease;
}

.home-btn:hover i,
.home-text-link:hover i {
  transform: translateX(4px);
}

.home-btn-primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.home-btn-primary:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
}

.home-btn-ghost {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .03);
  color: var(--white);
}

.home-btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
}

/* Survey */
.home-survey {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .27);
}

.home-survey-head {
  padding: 28px 30px 24px;
  border-bottom: 1px solid var(--line);
}

.home-survey-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-survey-kicker i {
  margin-right: 6px;
}

.home-survey-head h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.35px;
}

.home-survey-head p {
  color: #606b74;
  font-size: 13px;
  line-height: 1.6;
}

.home-survey-form {
  padding: 26px 30px 30px;
}

.home-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}

.home-survey-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #303941;
  font-size: 12.5px;
  font-weight: 700;
}

.home-field-label {
  min-height: 20px;
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}

.home-field-label b {
  color: var(--red);
}

.home-survey-form input,
.home-survey-form select {
  width: 100%;
  height: 45px;
  padding: 0 13px;
  border: 1px solid #d8dde0;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  outline: 0;
}

.home-survey-form input:focus,
.home-survey-form select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(173, 27, 50, .09);
}

.home-form-wide {
  margin-top: 18px;
}

.home-survey-form button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease;
}

.home-survey-form button:hover {
  background: var(--red-dark);
}

/* Shared section system */
.home-why,
.home-activities,
.home-projects,
.home-reports {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.home-why-grid,
.home-process-grid,
.home-row-layout {
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
  gap: var(--gap);
}

.home-section-number {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.home-section-number::after {
  content: '';
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-left: 12px;
  vertical-align: middle;
  background: currentColor;
}

.home-section-intro h2,
.home-process-title h2,
.home-row-title h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.home-section-intro p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

/* Focus areas */
.home-focus-video {
  width: 100%;
  display: flex;
  justify-content: center;
}

.home-focus-video iframe {
  width: 100%;
  max-width: 772px;
  height: auto;
  aspect-ratio: 772 / 579;
  display: block;
  border: 0;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 10px 30px rgba(10, 34, 52, .08);
}

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

.home-focus-card {
  min-height: 220px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(10, 34, 52, .05);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-focus-card:hover {
  border-color: rgba(173, 27, 50, .3);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.home-focus-card > span {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 31px;
}

.home-focus-card h3 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.home-focus-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

/* Process */
.home-process {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  background: #fbfbfa;
}

.home-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-steps li {
  position: relative;
  min-height: 172px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 15px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
}

.home-steps li:not(:last-child)::after {
  content: '\2192';
  position: absolute;
  top: 48%;
  right: -17px;
  z-index: 2;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fbfbfa;
  color: var(--navy);
  font-size: 17px;
}

.home-steps li b {
  position: absolute;
  top: -11px;
  left: 16px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
}

.home-steps li i {
  margin-bottom: 15px;
  color: var(--navy);
  font-size: 29px;
}

.home-steps li strong {
  font-size: 14px;
  font-weight: 700;
}

.home-steps li span {
  margin-top: 8px;
  color: #647078;
  font-size: 12px;
  line-height: 1.5;
}

/* Tracker */
.home-tracker {
  padding: 64px 0;
  background: var(--navy);
  color: var(--white);
}

.home-tracker .home-section-number {
  color: rgba(255, 255, 255, .58);
}

.home-tracker .home-row-title h2 {
  color: var(--white);
}

.home-tracker .home-text-link {
  color: #f0a8b5;
}

.home-tracker-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px 34px;
  padding: 22px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.home-tracker-list article:last-child {
  border-bottom: 0;
}

.home-tracker-list article > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-tracker-list article > div span {
  color: rgba(255, 255, 255, .45);
  font-size: 11px;
  font-weight: 700;
}

.home-tracker-list strong {
  font-size: 14px;
  font-weight: 700;
}

.home-tracker-list .project-timing {
  justify-content: flex-end;
  gap: 12px;
}

.home-tracker-list .project-timing .project-start-date {
  color: #fff;
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.project-start-date time {
  color: inherit;
  font: inherit;
}

.project-stage-track {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.project-stage-track li {
  position: relative;
  min-width: 0;
  padding-top: 11px;
  color: rgba(255, 255, 255, .36);
}

.project-stage-track li::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
}

.project-stage-track .stage-label {
  display: block;
  padding-right: 6px;
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1.35;
}

.project-stage-track li.completed {
  color: rgba(204, 233, 248, .8);
}

.project-stage-track li.completed::before {
  background: #7eb8d6;
}

.project-stage-track li.completed .stage-label::before {
  content: '\2713';
  margin-right: 5px;
  color: #a7d9ef;
  font-weight: 800;
}

.project-stage-track li.current {
  color: #fff;
}

.project-stage-track li.current::before {
  background: #f04c68;
  box-shadow: 0 0 0 3px rgba(240, 76, 104, .18), 0 0 15px rgba(240, 76, 104, .5);
}

.project-stage-track li.current .stage-label {
  font-weight: 800;
}

.project-stage-track li.current .stage-label::after {
  content: 'Aktif';
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 5px;
  border-radius: 999px;
  background: rgba(240, 76, 104, .18);
  color: #ff8ca0;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 10.5px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.status.planning { color: #276f3f; background: #dff3e6; }
.status.active { color: #1c5e8d; background: #dceefa; }
.status.completed { color: #217d49; background: #dcf3e5; }

/* Activity cards */
.home-activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-activity-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  isolation: isolate;
  transition: transform .2s ease, box-shadow .2s ease;
}

.home-activity-card:nth-child(2),
.home-activity-card:nth-child(5) {
  background: var(--navy-soft);
}

.home-activity-card:nth-child(3),
.home-activity-card:nth-child(6) {
  background: #26343e;
}

.home-activity-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(145deg, transparent 0 62%, rgba(255, 255, 255, .04) 62% 100%),
    linear-gradient(180deg, transparent, rgba(3, 14, 22, .25));
}

.home-activity-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 26px;
  width: 44px;
  height: 3px;
  background: #cf2944;
}

.home-activity-card:hover {
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.home-activity-card > i {
  font-size: 30px;
}

.home-activity-card span {
  display: flex;
  flex-direction: column;
}

.home-activity-card strong {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}

.home-activity-card small {
  max-width: 290px;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  line-height: 1.55;
}

/* Projects */
.home-projects {
  background: var(--white);
}

.home-projects .home-section-number {
  color: var(--muted);
}

.home-projects .home-row-title h2 {
  color: var(--ink);
}

.home-projects .home-text-link {
  color: var(--red);
}

.home-project-grid,
.home-report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-project-card {
  position: relative;
  min-height: 410px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 150px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(10, 34, 52, .05);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-project-card::before {
  content: attr(data-index);
  display: flex;
  align-items: flex-end;
  padding: 24px 26px;
  color: rgba(255, 255, 255, .74);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .035) 25%, transparent 25%) 0 0 / 28px 28px,
    #0e2a3e;
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}

.home-project-card:nth-child(2)::before {
  background-color: #18394e;
}

.home-project-card:nth-child(3)::before {
  background-color: #26343e;
}

.home-project-card:hover {
  border-color: rgba(173, 27, 50, .26);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.home-project-body {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 26px;
}

.home-project-body strong {
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.home-project-body small {
  color: #626d75;
  font-size: 12px;
  font-weight: 700;
}

.home-project-body > span {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.home-worked-project {
  grid-column: 1 / -1;
  padding: 12px 0 0;
}

.home-dynamic-projects {
  grid-template-columns: 1fr;
  gap: 46px;
}

.home-dynamic-projects .home-worked-stages {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.home-worked-head {
  margin-bottom: 26px;
  padding-left: 2px;
}

.home-worked-head > span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}

.home-worked-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
}

.home-worked-head p {
  max-width: 760px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.home-worked-head .project-progress {
  max-width: 520px;
}

.home-project-no-stage {
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  color: var(--muted);
  text-align: center;
}

.home-activity-card em {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,.6);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .45px;
  text-transform: uppercase;
}

.home-worked-project-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.home-worked-project-head > span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #163b54;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.home-worked-project-head h3 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.home-worked-stages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-worked-stages li {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 18px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(10, 34, 52, .07);
  text-align: center;
}

.home-worked-stages li.completed {
  border-color: rgba(47, 154, 107, .42);
  background: rgba(47, 154, 107, .045);
  box-shadow: inset 0 3px #39ae79;
}

.home-worked-stages li.current {
  border-color: rgba(173, 27, 50, .3);
  background: rgba(173, 27, 50, .035);
  box-shadow: inset 0 3px var(--red), 0 10px 28px rgba(10, 34, 52, .07);
}

.home-worked-stages li:not(:last-child)::after {
  content: '\2192';
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 2;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(10, 34, 52, .1);
  font-size: 16px;
  transform: translateY(-50%);
}

.home-worked-stages b {
  position: absolute;
  top: -12px;
  left: 16px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: #163b54;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.home-worked-stages li.current b {
  background: var(--red);
}

.home-worked-stages li.completed b {
  background: #2f9a6b;
}

.home-worked-stages i {
  margin-bottom: 15px;
  color: var(--navy-soft);
  font-size: 28px;
}

.home-worked-stages li.current i {
  color: #ff6f89;
}

.home-worked-stages li.completed i {
  color: #73d8aa;
}

.home-worked-stages strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.home-worked-stages time {
  margin-top: 10px;
  color: #ff8ca0;
  font-size: 11px;
  font-weight: 800;
}

.home-worked-stages li.completed time {
  color: #83dcb2;
}

.home-worked-stages span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .home-dynamic-projects .home-worked-stages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-worked-stages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .home-worked-stages li:nth-child(even)::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .home-dynamic-projects .home-worked-stages {
    grid-template-columns: 1fr;
  }

  .home-worked-project {
    padding: 12px 0 0;
  }

  .home-worked-stages {
    grid-template-columns: 1fr;
  }

  .home-worked-stages li {
    min-height: 190px;
  }

  .home-worked-stages li::after {
    display: none !important;
  }
}

/* Reports */
.home-report-card {
  min-height: 225px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(10, 34, 52, .05);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-report-card:hover {
  border-color: rgba(173, 27, 50, .28);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.report-cover {
  min-height: 187px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 17px;
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.report-cover small {
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  letter-spacing: 1px;
}

.report-cover b {
  font-size: 10px;
}

.report-cover.navy { background: linear-gradient(145deg, #0e2940, #091a29); }
.report-cover.blue { background: linear-gradient(145deg, #214b68, #102b40); }
.report-cover.red { background: linear-gradient(145deg, #ae1b31, #681020); }

.home-report-card > span:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.home-report-card strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.home-report-card > span:last-child small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}

.home-report-card em {
  margin-top: 16px;
  padding: 6px 9px;
  border: 1px solid #d8dde0;
  border-radius: 4px;
  color: #424d55;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

/* Join */
.home-join {
  padding: 26px 0;
}

.home-join-grid {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  align-items: center;
  gap: 38px;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: var(--radius);
  background: linear-gradient(108deg, #851121, #b51a31 70%, #9b1428);
  box-shadow: 0 12px 30px rgba(138, 17, 36, .16);
}

.home-join-title {
  padding-left: 32px;
}

.home-join-title h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 27px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.6px;
}

.home-join-title p {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.65;
}

.home-join-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-right: 32px;
}

.home-join-actions a {
  min-height: 98px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transition: box-shadow .2s ease, transform .2s ease;
}

.home-join-actions a:hover {
  box-shadow: 0 12px 25px rgba(74, 9, 20, .2);
  transform: translateY(-2px);
}

.home-join-actions a > i {
  min-width: 34px;
  color: var(--red);
  font-size: 28px;
  text-align: center;
}

.home-join-actions a span {
  display: flex;
  flex-direction: column;
}

.home-join-actions strong {
  font-size: 13px;
  font-weight: 700;
}

.home-join-actions small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.45;
}

/* Footer */
.footer {
  padding-top: 58px;
  background: #091d2e;
  color: rgba(255, 255, 255, .72);
}

.home-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .8fr .8fr .8fr 1.25fr;
  gap: 45px;
  padding-bottom: 46px;
}

.home-footer-brand > div:first-child {
  display: flex;
  align-items: center;
  gap: 13px;
}

.home-footer-brand img {
  width: 64px;
  height: 68px;
  padding: 3px;
  border-radius: 4px;
  background: var(--white);
  object-fit: contain;
}

.home-footer-brand span {
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.home-footer-brand strong {
  font-size: 14px;
}

.home-footer-brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
}

.home-footer-brand > p {
  max-width: 280px;
  margin: 18px 0;
  color: rgba(255, 255, 255, .68);
  font-size: 12.5px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  color: var(--white);
  font-size: 13px;
  transition: background .2s ease, border-color .2s ease;
}

.footer-social a:hover {
  border-color: var(--red);
  background: var(--red);
}

.footer-column h4 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.footer-column li {
  margin-bottom: 9px;
}

.footer-column li a {
  color: rgba(255, 255, 255, .67);
  font-size: 12px;
  transition: color .2s ease;
}

.footer-column li a:hover,
.home-contact-list a:hover {
  color: var(--white);
}

.home-contact-list p {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.55;
}

.home-contact-list p i {
  width: 14px;
  margin-top: 4px;
  color: rgba(255, 255, 255, .86);
  text-align: center;
}

.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p,
.footer-bottom-links a {
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

.scroll-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 900;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(10, 34, 52, .2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1240px) {
  .container,
  .header-inner {
    padding-left: 32px;
    padding-right: 32px;
  }

  .home-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .home-steps li:nth-child(2)::after {
    display: none;
  }

  .home-join-grid {
    grid-template-columns: 245px 1fr;
  }

  .home-join-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1160px) {
  .header,
  .header-inner {
    height: 84px;
  }

  main {
    padding-top: 84px;
  }

  .home-brand {
    min-width: auto;
  }

  .home-brand-logo {
    width: 58px;
    height: 62px;
  }

  .home-header-cta {
    margin-left: auto;
  }

  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    height: calc(100vh - 84px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    padding: 32px;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform .3s ease, opacity .2s ease, visibility .2s ease;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 15px;
  }

  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 40px;
  }

  .home-hero-content h1 {
    font-size: 48px;
  }

  .home-why-grid,
  .home-process-grid,
  .home-row-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-section-intro,
  .home-process-title,
  .home-row-title {
    max-width: 700px;
  }

  .home-tracker-list article {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .home-report-grid {
    grid-template-columns: 1fr;
  }

  .home-footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .home-hero-content h1 br {
    display: none;
  }

  .home-survey {
    width: 100%;
    max-width: 620px;
  }
}

@media (max-width: 900px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .home-hero-content h1 br {
    display: none;
  }

  .home-survey {
    width: 100%;
    max-width: 620px;
  }

  .home-focus-grid,
  .home-activity-grid,
  .home-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-tracker-list article {
    grid-template-columns: 1fr auto;
    gap: 8px 22px;
    padding: 20px 0;
  }

  .home-tracker-list .project-timing {
    flex-wrap: wrap;
    gap: 8px;
  }

  .project-stage-track {
    grid-column: 1 / -1;
  }

  .home-join-grid {
    grid-template-columns: 1fr;
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .home-join-title,
  .home-join-actions {
    padding-left: 32px;
    padding-right: 32px;
  }

  .home-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container,
  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-brand-copy strong {
    font-size: 13px;
  }

  .home-brand-copy small {
    font-size: 10px;
  }

  .home-header-cta {
    display: none;
  }

  .home-hero-grid {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .home-hero-content h1 {
    font-size: clamp(38px, 11vw, 48px);
    letter-spacing: -1.6px;
  }

  .home-hero-content p {
    font-size: 15px;
  }

  .home-hero-actions {
    flex-direction: column;
  }

  .home-btn {
    width: 100%;
  }

  .home-form-grid {
    grid-template-columns: 1fr;
  }

  .home-why,
  .home-activities,
  .home-projects,
  .home-reports {
    padding: 64px 0;
  }

  .home-process,
  .home-tracker {
    padding: 58px 0;
  }

  .home-section-intro h2,
  .home-row-title h2,
  .home-process-title h2 {
    font-size: 30px;
  }

  .home-focus-grid,
  .home-activity-grid,
  .home-project-grid,
  .home-steps,
  .home-join-actions {
    grid-template-columns: 1fr;
  }

  .home-focus-card {
    min-height: auto;
  }

  .home-steps li {
    min-height: 155px;
  }

  .home-steps li::after {
    display: none !important;
  }

  .home-tracker-list article {
    gap: 11px 14px;
    padding: 24px 0;
  }

  .home-tracker-list .project-timing {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .project-stage-track {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .project-stage-track li {
    min-height: 32px;
    display: flex;
    align-items: center;
    padding: 7px 10px 7px 18px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .045);
  }

  .project-stage-track li::before {
    inset: 7px auto 7px 0;
    width: 4px;
    height: auto;
  }

  .project-stage-track .stage-label {
    font-size: 10px;
  }

  .home-activity-card {
    min-height: 270px;
  }

  .home-project-card {
    min-height: 400px;
    grid-template-rows: 135px 1fr;
  }

  .home-project-body {
    min-height: 265px;
  }

  .home-report-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    padding: 14px;
  }

  .report-cover {
    min-height: 180px;
    padding: 16px 13px;
    font-size: 15px;
  }

  .home-join {
    padding-top: 0;
    background: linear-gradient(108deg, #851121, #b51a31);
  }

  .home-join-grid {
    width: 100%;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-footer-grid {
    grid-template-columns: 1fr;
  }

  .home-footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .home-brand-copy {
    display: none;
  }

  .home-survey-head,
  .home-survey-form {
    padding-left: 22px;
    padding-right: 22px;
  }

  .home-report-card {
    grid-template-columns: 1fr;
  }

  .report-cover {
    min-height: 210px;
  }

  .home-join-title,
  .home-join-actions {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
