:root {
  --bg: #f7faf8;
  --card: #ffffff;
  --ink: #0d1b22;
  --text: #172b35;
  --muted: #657782;
  --line: #dfe9e5;
  --green: #10b981;
  --green-dark: #078761;
  --green-soft: #e8f8f1;
  --shadow: 0 24px 70px rgba(15, 23, 42, .09);
  --shadow-soft: 0 14px 36px rgba(15, 23, 42, .055);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --max: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(16,185,129,.13), transparent 34%),
    radial-gradient(circle at 90% 6%, rgba(36,107,254,.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 44%, #ffffff 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  color: inherit;
}

button.btn {
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  text-align: center;
}


.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(223,233,229,.78);
  backdrop-filter: blur(18px);
}

.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.045em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #154033);
  box-shadow: 0 12px 30px rgba(13,27,34,.16);
  font-weight: 950;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.nav-links a:hover {
  color: var(--ink);
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  font-weight: 860;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 32px rgba(16,185,129,.27);
}

.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 18px 44px rgba(16,185,129,.34);
}

.btn-light {
  background: rgba(255,255,255,.92);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 10px 26px rgba(15,23,42,.045);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 34px rgba(13,27,34,.16);
}

.hero {
  padding: 64px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 14px;
  font-weight: 880;
  margin-bottom: 18px;
}

.pulse,
.proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(16,185,129,.14);
}

h1 {
  max-width: 730px;
  color: var(--ink);
  font-size: clamp(43px, 5.7vw, 76px);
  line-height: .98;
  letter-spacing: -.078em;
}

.lead {
  max-width: 650px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(17px, 1.85vw, 20px);
  line-height: 1.72;
}

.hero-actions,
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.proof-row {
  gap: 10px;
  margin-top: 26px;
}

.proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  color: #42545f;
  font-size: 14px;
  font-weight: 740;
  box-shadow: 0 8px 24px rgba(15,23,42,.04);
}

.proof-dot {
  width: 7px;
  height: 7px;
  box-shadow: none;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 38px;
  background: var(--green-soft);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-visual::before,
.role-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-visual::before {
  z-index: 1;
  background: linear-gradient(180deg, rgba(13,27,34,.02), rgba(13,27,34,.42));
}

.hero-visual img {
  height: 570px;
  object-fit: cover;
}

.apply-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 22px;
  border-radius: 25px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 55px rgba(15,23,42,.18);
}

.panel-top,
.role-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.panel-top h3 {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.045em;
}

.status,
.time,
.role-badge {
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.status {
  padding: 7px 10px;
}

.panel-list,
.steps,
.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.panel-item,
.role li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #465964;
  font-size: 14px;
  font-weight: 700;
}

.check {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

section {
  padding: 40px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-head h2 {
  max-width: 690px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -.065em;
}

.section-head p {
  max-width: 450px;
  color: var(--muted);
  font-size: 16px;
}

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

.benefit {
  position: relative;
  overflow: hidden;
  min-height: 224px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.benefit::after {
  content: "";
  position: absolute;
  width: 132px;
  height: 132px;
  right: -62px;
  top: -62px;
  border-radius: 999px;
  background: var(--green-soft);
}

.benefit > * {
  position: relative;
  z-index: 1;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 950;
  margin-bottom: 34px;
}

.benefit h3 {
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -.035em;
  margin-bottom: 8px;
}

.benefit p,
.role-copy,
.step p,
.note-card p,
.faq-title p,
details p {
  color: var(--muted);
}

.benefit p {
  font-size: 14px;
}

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

.role {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
}

.role-media {
  position: relative;
  height: 242px;
  overflow: hidden;
  background: var(--green-soft);
}

.role-media img {
  height: 100%;
  object-fit: cover;
}

.role-media::after {
  background: linear-gradient(180deg, transparent 42%, rgba(13,27,34,.54));
}

.role-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 8px 12px;
  background: rgba(255,255,255,.92);
  font-size: 13px;
}

.role-body {
  padding: 26px;
}

.role-title {
  align-items: start;
  margin-bottom: 12px;
}

.role h3 {
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.065em;
}

.time {
  padding: 8px 11px;
  font-size: 13px;
  white-space: nowrap;
}

.role-copy {
  margin-bottom: 18px;
  font-size: 15px;
}

.role ul {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.role li {
  list-style: none;
  align-items: flex-start;
  font-size: 15px;
}

.flow-wrap {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 18px;
  align-items: stretch;
}

.flow-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--green-soft);
}

.flow-image img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.steps {
  margin-top: 0;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.num {
  width: 50px;
  height: 50px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(13,27,34,.14);
}

.step h3 {
  color: var(--ink);
  font-size: 21px;
  letter-spacing: -.04em;
  margin-bottom: 5px;
}

.step p {
  font-size: 15px;
}

.eligible-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #0d1b22, #15372d);
  color: #fff;
  box-shadow: var(--shadow);
}

.eligible-card h2,
.final-cta h2,
.faq-title h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -.065em;
  margin-bottom: 12px;
}

.eligible-card p {
  color: rgba(255,255,255,.74);
  max-width: 540px;
}

.eligible-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.eligible-item {
  min-height: 106px;
  padding: 17px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.eligible-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.eligible-item span {
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

.note-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 92% 0%, rgba(16,185,129,.14), transparent 34%),
    var(--card);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.note-card h3 {
  color: var(--ink);
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: -.055em;
  margin-bottom: 8px;
}

.final-cta {
  overflow: hidden;
  position: relative;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(13,27,34,.96), rgba(9,67,51,.94)),
    var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  border-radius: 999px;
  right: -120px;
  top: -160px;
  background: rgba(16,185,129,.28);
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.02;
}

.final-cta p {
  max-width: 710px;
  color: rgba(255,255,255,.72);
}

.safe-note {
  margin-top: 12px;
  color: rgba(255,255,255,.52);
  font-size: 13px;
}

.faq {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 22px;
  align-items: start;
}

.faq-title {
  position: sticky;
  top: 92px;
}

.faq-title h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 10px;
}

.faq-title p {
  margin-bottom: 18px;
}

details {
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15,23,42,.035);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -.01em;
}

details p {
  margin-top: 10px;
  font-size: 14px;
}

.mobile-sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 100;
  display: none;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(15,23,42,.16);
}

.mobile-sticky .btn {
  flex: 1;
  min-height: 48px;
  padding: 0 12px;
  font-size: 14px;
}

.footer {
  padding: 34px 0 98px;
  border-top: 1px solid var(--line);
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.footer-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 0%, rgba(16,185,129,.24), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(255,255,255,.08), transparent 32%),
    linear-gradient(135deg, #0d1b22, #12372d 62%, #0b171f);
  box-shadow: var(--shadow);
  padding: 28px;
}

.footer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 48%),
    linear-gradient(180deg, transparent, rgba(0,0,0,.12));
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(340px, 430px);
  gap: 28px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.footer-brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #0d1b22;
  background: linear-gradient(135deg, #ffffff, #d7fff0);
  font-weight: 950;
  font-size: 19px;
  line-height: 1;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.footer-brand-title {
  display: block;
  color: #fff;
  font-size: 23px;
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 920;
}

.footer-brand-subtitle {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  font-weight: 680;
  letter-spacing: .01em;
}

.footer-copy {
  max-width: 590px;
  color: rgba(255,255,255,.66);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.footer-link {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.075);
  color: rgba(255,255,255,.86);
  font-size: 13px;
  font-weight: 830;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .18s ease, color .18s ease, border-color .18s ease, background .18s ease;
  text-align: center;
}

.footer-link:hover {
  transform: translateY(-2px);
  color: #0d1b22;
  border-color: rgba(255,255,255,.88);
  background: #ffffff;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.52);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .flow-wrap,
  .eligibility,
  .faq,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual,
  .hero-visual img {
    min-height: auto;
  }

  .hero-visual img {
    height: 470px;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .faq-title {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .nav-inner {
    height: 64px;
  }

  .nav .btn,
  .nav-links {
    display: none;
  }

  .hero {
    padding: 36px 0 28px;
  }

  h1 {
    font-size: 43px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-actions .btn,
  .role .btn,
  .note-card .btn,
  .final-cta .btn,
  .faq-title .btn {
    width: 100%;
  }

  .proof-row {
    gap: 8px;
  }

  .proof {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    padding-inline: 10px;
  }

  .hero-visual img {
    height: 310px;
  }

  .apply-panel {
    position: static;
    border-radius: 0;
    box-shadow: none;
  }

  section {
    padding: 30px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 8px;
  }

  .benefits,
  .roles,
  .eligible-grid {
    grid-template-columns: 1fr;
  }

  .role-media {
    height: 210px;
  }

  .flow-image img {
    min-height: 270px;
  }

  .step {
    grid-template-columns: 46px 1fr;
    padding: 18px;
  }

  .num {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .eligible-card,
  .note-card,
  .final-cta {
    padding: 26px;
    border-radius: 27px;
  }

  .mobile-sticky {
    display: flex;
  }

  .footer-card {
    padding: 22px;
    border-radius: 28px;
  }

  .footer-brand {
    margin-bottom: 10px;
  }

  .footer-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .footer-brand-title {
    font-size: 22px;
  }

  .footer-copy {
    font-size: 13px;
    line-height: 1.65;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .footer-link {
    min-height: 41px;
    border-radius: 14px;
    padding: 0 8px;
    font-size: 12.5px;
  }

  .footer-bottom {
    margin-top: 18px;
    padding-top: 15px;
  }
}
