.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

:root {
  --color-primary: #1e3a5f;
  --color-accent: #4b8e6f;
  --color-slate-900: #0f172a;
  --color-slate-700: #334155;
  --color-slate-600: #475569;
  --color-slate-300: #cbd5e1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-wrap {
  white-space: normal;
  text-align: center;
}

.btn-sm {
  height: 2.5rem;
  padding: 0 1rem;
  font-size: 0.875rem;
}

.btn-md {
  height: 3rem;
  padding: 0 1.5rem;
  font-size: 0.9375rem;
}

.btn-lg {
  height: 3.5rem;
  padding: 0 2rem;
  font-size: 1rem;
}

.btn-xl {
  height: 4rem;
  padding: 0 2.5rem;
  font-size: 1.125rem;
}

.header-cta {
  white-space: nowrap;
}

.header-cta-icon {
  display: none;
  font-size: 1.05rem;
}

@media (max-width: 639px) {
  .btn-wrap {
    height: auto;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

@media (max-width: 420px) {
  .header-cta {
    height: 2.375rem;
    padding: 0 0.85rem;
    font-size: 0.8rem;
  }

  .header-cta-group {
    gap: 0.35rem;
  }

  .header-menu-btn {
    padding: 0.3rem 0.5rem;
  }
}

@media (max-width: 360px) {
  .header-cta {
    height: 2.25rem;
    padding: 0 0.75rem;
    font-size: 0.75rem;
  }

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

  .header-cta .header-cta-icon {
    display: inline-flex;
  }

  .header-cta-group {
    gap: 0.25rem;
  }

  .header-menu-btn {
    padding: 0.25rem 0.4rem;
  }
}

.btn-primary {
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(75, 142, 111, 0.2);
}

.btn-primary:hover {
  background: #3d755b;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(30, 58, 95, 0.2);
}

.btn-secondary:hover {
  background: #162b48;
  transform: translateY(-1px);
}

.btn-ghost {
  background: #ffffff;
  color: var(--color-primary);
  border: 1px solid rgba(30, 58, 95, 0.2);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.btn-ghost:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-1px);
}

.slot-indicator {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 60;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.1rem;
  border-radius: 9999px;
  background: linear-gradient(130deg, rgba(21, 50, 82, 0.98), rgba(30, 58, 95, 0.98), rgba(75, 142, 111, 0.98));
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25),
    0 8px 16px rgba(75, 142, 111, 0.25);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
  animation: slot-indicator-float 3.6s ease-in-out infinite;
}

.slot-indicator::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(255, 255, 255, 0.35),
    transparent 55%
  );
  opacity: 0.55;
  animation: slot-indicator-glow 4s ease-in-out infinite;
  z-index: 0;
}

.slot-indicator::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -65%;
  width: 60%;
  height: 170%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-20deg);
  animation: slot-indicator-shine 4.6s ease-in-out infinite;
  z-index: 0;
}

.slot-indicator:hover {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.28),
    0 12px 20px rgba(75, 142, 111, 0.3);
}

.slot-indicator:focus-visible {
  outline: 3px solid rgba(75, 142, 111, 0.6);
  outline-offset: 3px;
}

.slot-indicator__label {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

.slot-indicator__value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.6rem;
  padding: 0.2rem 0.7rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.95rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.slot-indicator__count {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.slot-indicator__unit {
  margin-left: 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0.85;
}

@keyframes slot-indicator-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes slot-indicator-shine {
  0% {
    transform: translateX(-140%) skewX(-20deg);
    opacity: 0;
  }
  20% {
    opacity: 0.4;
  }
  60% {
    transform: translateX(220%) skewX(-20deg);
    opacity: 0;
  }
  100% {
    transform: translateX(220%) skewX(-20deg);
    opacity: 0;
  }
}

@keyframes slot-indicator-glow {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.65;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-slate-900);
}

.section-title.is-light {
  color: #ffffff;
}

.section-subtitle {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-slate-600);
}

.section-subtitle.is-light {
  color: var(--color-slate-300);
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.emphasis-underline {
  font-weight: 700;
  color: var(--color-primary);
  border-bottom: 2px solid rgba(75, 142, 111, 0.6);
}

.emphasis-underline-light {
  font-weight: 700;
  color: #ffffff;
  border-bottom: 2px solid rgba(75, 142, 111, 0.7);
}

.emphasis-warning {
  font-weight: 700;
  color: #b91c1c;
  border-bottom: 2px solid rgba(248, 113, 113, 0.6);
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  section[id] {
    scroll-margin-top: 4rem;
  }
}

@media (max-width: 640px) {
  .slot-indicator {
    right: 1rem;
    bottom: 1rem;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
  }

  .slot-indicator__label {
    font-size: 0.68rem;
  }

  .slot-indicator__value {
    min-width: 2.8rem;
    font-size: 0.85rem;
  }

  .slot-indicator__count {
    font-size: 0.95rem;
  }

  .slot-indicator__unit {
    font-size: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slot-indicator {
    animation: none;
  }

  .slot-indicator::before,
  .slot-indicator::after {
    animation: none;
  }
}

.check-list-item::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuAlWSMSnrlY-wKu74TjD7KKZIpYqUmx3uOxNBRTtEJ2G7I6Pu1xYfInXgvlDq27kaE_fHHh5gs1OA1SaQivMzYXjS_HVQnX1yHN5Pga8Clw21_YLDtgP390rhPKL9gamuzTN__iSFs_2heVKNBCvM0pMCCaiH70ESwaplO9K2teZ_uDWTO37dvFPc8DVZjmfh3K6zpLF-K0Pp8ifL4FO0crPhk99eUMQhlCInqaDroA752yUmo09SlqcSQgMjeGKo3ok52yB3ql-b8");
  background-size: cover;
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.hero-shot {
  background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuBeC6K9A5QJK0QMaxyd_Lw6iyks8TvfWcDe7reS0ik5hLG1TWFds21KGh3GZ4x0hwgPtQY19rGRpA21MBiPNBiPyAPpIejLw-niUs8KWQlSv6UAmx5C2rZxJiZe0v1QZEOYhL5tdVwqRniYhSVrup3TENoae5y4OmS-XFBENcBi_gQQv9By0Dodwt7fCTbxqGR5lipkoiwn1wn-eVJnVcjbbEjPWwjOdfzzvWlvS42Y03vye08gC2VTejZX1xdJ0hnLViQuRK3KgoE");
}

.logic-pattern {
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 24px 24px;
}

.diagnosis-progress {
  appearance: none;
  width: 100%;
  height: 0.75rem;
  border-radius: 9999px;
  overflow: hidden;
}

.diagnosis-progress::-webkit-progress-bar {
  background-color: #e2e8f0;
  border-radius: 9999px;
}

.diagnosis-progress::-webkit-progress-value {
  background: linear-gradient(90deg, #1e3a5f 0%, #4b8e6f 100%);
  border-radius: 9999px;
}

.diagnosis-progress::-moz-progress-bar {
  background: linear-gradient(90deg, #1e3a5f 0%, #4b8e6f 100%);
  border-radius: 9999px;
}

.diagnosis-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  background: #ffffff;
  padding: 0.875rem 1rem;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.diagnosis-item:hover {
  border-color: rgba(30, 58, 95, 0.4);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}

.diagnosis-item input {
  margin-top: 0.2rem;
  height: 1rem;
  width: 1rem;
  accent-color: #1e3a5f;
  flex-shrink: 0;
}
