:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #526173;
  --line: #d9e3e1;
  --teal: #0f766e;
  --teal-dark: #0d655f;
  --mint: #eef7f3;
  --amber: #fef3c7;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: linear-gradient(180deg, #eef7f3 0%, #ffffff 40%, #f7faf8 100%);
}

[x-cloak] {
  display: none !important;
}

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 4px;
  background: rgba(15, 118, 110, 0.12);
}

.reading-progress::after {
  display: block;
  width: var(--reading-progress, 0%);
  height: 100%;
  background: var(--teal);
  content: "";
  transition: width 80ms linear;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding-block: 84px;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.stat {
  border-left: 4px solid var(--teal);
  background: #fff;
}

.focus-ring:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.28);
  outline-offset: 3px;
}

.site-header {
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}

.site-header-sticky {
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
  border-radius: 6px;
  color: #020617;
  font-weight: 900;
}

.site-brand img {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
}

.site-header-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #fff;
  padding: 0.5rem 1rem;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 900;
  transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.site-header-action:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.site-header-action img {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.primary-button,
.secondary-button {
  min-height: 3.25rem;
  border-radius: 8px;
  padding: 0.85rem 1.25rem;
  font-weight: 900;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.primary-button {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 16px 32px rgba(15, 118, 110, 0.14);
}

.primary-button:hover {
  background: var(--teal-dark);
}

.attention-button {
  background: orangered;
  box-shadow: 0 16px 32px rgba(255, 69, 0, 0.24);
}

.attention-button:hover {
  background: #d93b00;
}

.secondary-button {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0f172a;
}

.secondary-button:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.primary-button:active,
.secondary-button:active {
  transform: translateY(1px) scale(0.995);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  justify-content: center;
}

.contact-button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 900;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.contact-button:active {
  transform: translateY(1px) scale(0.995);
}

.contact-button-primary {
  background: var(--teal);
  color: #fff;
}

.contact-button-primary:hover {
  background: var(--teal-dark);
}

.contact-button-secondary {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0f172a;
}

.contact-button-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.contact-button img {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
}

.contact-button-primary img {
  filter: brightness(0) invert(1);
}

.form-label {
  display: grid;
  gap: 0.5rem;
}

.form-label-text {
  color: #334155;
  font-size: 0.875rem;
  font-weight: 900;
}

.form-control {
  min-height: 3rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  padding: 0.75rem 1rem;
  color: #020617;
  font-size: 1rem;
  font-weight: 700;
}

.form-control::placeholder {
  color: #94a3b8;
}

.quiz-option {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
  color: #0f172a;
  text-align: left;
  font-weight: 900;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.quiz-option:hover {
  border-color: var(--teal);
  background: #ecfdf5;
}

.quiz-option:active {
  transform: translateY(1px) scale(0.995);
}

.quiz-option-active {
  border-color: var(--teal);
  background: #ecfdf5;
  box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.14);
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 800 / 533;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.14), rgba(255, 255, 255, 0.82)), #fff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.hero-image-frame::before {
  position: absolute;
  top: -52px;
  right: -52px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  content: "";
}

.hero-image-frame::after {
  position: absolute;
  bottom: -60px;
  left: -48px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  content: "";
}

.hero-image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-frame.is-empty {
  display: block;
}

.job-step {
  position: relative;
  padding-left: 42px;
}

.job-step::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  content: attr(data-step);
}

.note-yellow {
  border: 1px solid #fde68a;
  border-radius: 8px;
  background: var(--amber);
  padding: 18px 20px;
  color: #713f12;
  font-weight: 800;
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.hamburger-icon {
  position: relative;
}

.hamburger-icon::before {
  position: absolute;
  top: -6px;
}

.hamburger-icon::after {
  position: absolute;
  top: 6px;
}

@media (min-width: 640px) {
  .contact-actions {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding-block: 58px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(1120px, calc(100% - 24px));
  }

  .card {
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
  }

  h1 {
    font-size: 2.45rem !important;
    line-height: 1.08 !important;
  }

  h2 {
    font-size: 1.85rem !important;
    line-height: 1.14 !important;
  }
}
