:root {
  /* Theme Colors based on DESIGN_SYSTEM_1 */
  --primary: #040f1b;
  --secondary: #4e6700;
  --secondary-fixed: #c8f25a;
  --secondary-fixed-dim: #acd53f;
  --on-secondary-fixed: #151f00;
  --surface: #f7f9ff;
  --surface-container-low: #edf4ff;
  --on-surface: #0c1d2c;
  --on-surface-variant: #44474b;
  --outline-variant: #c4c6cc;
  --secondary-container: #c5ef57;
  --on-secondary-container: #526b00;
}

/* Typography */
.display-lg {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.headline-lg {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
}

.headline-md {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
}

.body-lg {
  font-size: 18px;
  line-height: 1.6;
}

.label-md {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .display-lg {
    font-size: 40px;
  }
}

/* Custom Editorial Components */
.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1rem;
}

.momentum-gradient {
  background:
    radial-gradient(
      circle at top right,
      rgba(167, 207, 58, 0.15),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(100, 139, 31, 0.05),
      transparent 40%
    );
}

.nav-link-custom {
  font-size: 14px;
  font-weight: 600;
  color: var(--on-surface-variant);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link-custom:hover {
  color: var(--primary);
}

.nav-link-custom.active {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 4px;
}

.btn-primary-custom {
  background-color: var(--secondary-fixed);
  color: var(--on-secondary-fixed);
  border-radius: 9999px;
  border: none;
  padding: 12px 32px;
  font-weight: 600;
  transition: transform 0.2s;
}

.btn-primary-custom:hover {
  transform: scale(1.05);
  color: var(--on-secondary-fixed);
}

.btn-outline-custom {
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 9999px;
  padding: 12px 32px;
  font-weight: 600;
  transition: all 0.2s;
  background: transparent;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: white;
}

.feature-card {
  background: var(--surface-container-low);
  padding: 24px;
  border-radius: 0.75rem;
  border: 1px solid rgba(196, 198, 204, 0.1);
}

.form-underlined {
  border: none;
  border-bottom: 1px solid var(--outline-variant);
  background: transparent;
  border-radius: 0;
  padding: 12px 0;
  box-shadow: none !important;
}

.form-underlined:focus {
  border-bottom-color: var(--secondary);
}

.value-band {
  background-color: var(--primary);
  color: white;
  padding: 80px 0;
}

.profile-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.profile-card:hover img {
  transform: scale(1.05);
}

.profile-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--primary),
    rgba(4, 15, 27, 0.2),
    transparent
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.program-card {
  padding: 32px;
  border-radius: 1rem;
  border: 1px solid rgba(196, 198, 204, 0.2);
  transition: all 0.3s;
  height: 100%;
}

.program-card:hover {
  border-color: var(--secondary);
}

.program-card.accent {
  background-color: var(--secondary-fixed);
  border: none;
}

.experience-step-num {
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  color: rgba(172, 213, 63, 0.4);
}

.footer {
  background-color: var(--primary);
  color: white;
  padding: 80px 0;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.footer a:hover {
  color: var(--secondary-fixed);
  transform: translateX(4px);
}

.section-gap {
  margin-bottom: 120px;
}

.material-symbols-outlined {
  vertical-align: middle;
}

.amity-hero-section {
  position: relative;
  background-image: url("../img/hero/amity-hero.jpg");
  overflow: hidden;
  padding: 80px 0;
}

.amity-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 15, 27, 0.88) 0%,
    rgba(4, 15, 27, 0.72) 30%,
    rgba(4, 15, 27, 0.35) 55%,
    rgba(4, 15, 27, 0) 100%
  );
  z-index: 1;
}

.amity-hero-section .container {
  position: relative;
  z-index: 2;
}
