:root {
  color-scheme: light;
}

body {
  font-family: "Inter", sans-serif;
}

.font-headline,
h1,
h2,
h3,
h4 {
  font-family: "Manrope", sans-serif;
}

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

.shadow-soft {
  box-shadow: 0 12px 32px rgba(25, 28, 30, 0.06);
}

.glass-panel {
  background: rgba(248, 249, 251, 0.12);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
}

.glass-pill {
  background: rgba(248, 249, 251, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 9999px;
}

.premium-button,
.premium-action {
  background: linear-gradient(135deg, #041627 0%, #1a2b3c 100%);
  color: #fff;
  transition:
    transform 150ms ease,
    opacity 150ms ease;
}

.premium-button:hover,
.premium-action:hover {
  opacity: 0.94;
}

.premium-button:active,
.premium-action:active {
  transform: scale(0.985);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-radius: 1.25rem;
  padding: 0.95rem 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #62676d;
  transition:
    background-color 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.nav-link:hover {
  background: #fff;
  color: #041627;
}

.nav-link-active {
  background: #fff;
  color: #041627;
  transform: translateX(6px);
  box-shadow: 0 12px 24px rgba(25, 28, 30, 0.05);
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 9999px;
  background: #f2f4f6;
  color: #191c1e;
}

.icon-button:hover {
  background: #eceef0;
}

.section-kicker {
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #735c00;
}

.section-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 2vw + 1rem, 3rem);
  line-height: 1.04;
  font-weight: 800;
  color: #041627;
}

.action-panel {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1.75rem;
  background: #f2f4f6;
  padding: 1.5rem;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.action-panel:hover {
  background: #041627;
  color: #fff;
}

.action-panel:hover .action-panel-icon {
  background: rgba(255, 255, 255, 0.1);
}

.action-panel:hover .action-panel-icon span,
.action-panel:hover p {
  color: inherit;
}

.action-panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.25rem;
  width: 3.25rem;
  border-radius: 1rem;
  background: #fff;
}

.action-panel-icon span {
  color: #041627;
}

.property-card {
  border-radius: 2rem;
  background: #fff;
  padding: 0.5rem;
  box-shadow: 0 12px 32px rgba(25, 28, 30, 0.06);
}

.metric-card {
  border-radius: 1.4rem;
  background: #fff;
  padding: 1.15rem;
}

.metric-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #44474c;
}

.metric-value {
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #041627;
}

.filter-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #44474c;
}

.filter-input {
  width: 100%;
  border: 0;
  border-radius: 1rem;
  background: #f2f4f6;
  padding: 0.95rem 1rem;
  color: #191c1e;
}

.platform-card {
  display: flex;
  min-height: 5.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
  background: #fff;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease;
}

.platform-card:has(input:checked) {
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px rgba(4, 22, 39, 0.08), 0 12px 32px rgba(25, 28, 30, 0.06);
}

.workflow-step {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border-radius: 1.3rem;
  background: #f2f4f6;
  padding: 1.25rem;
  color: #44474c;
}

.workflow-step strong {
  font-family: "Manrope", sans-serif;
  color: #041627;
}

@media (max-width: 1024px) {
  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
  }
}

