:root {
  color-scheme: light;
}

body {
  font-feature-settings: "liga" 1, "kern" 1;
}

.grain {
  background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 4px 4px;
}

.nav-link {
  color: rgb(226 232 240);
  transition: color .2s ease;
}

.nav-link:hover {
  color: white;
}

.section-pad {
  padding: 5rem 0;
}

.section-heading {
  max-width: 48rem;
}

.section-heading h2 {
  margin-top: .75rem;
  font-family: Inter, "IBM Plex Sans Thai", sans-serif;
  font-size: 2.25rem;
  line-height: 1.18;
  font-weight: 800;
}

.section-heading p:not(.eyebrow) {
  margin-top: 1rem;
  color: rgb(71 85 105);
  line-height: 1.75;
}

.eyebrow {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #D97706;
}

.trust-tile {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: .375rem;
  background: rgba(255,255,255,.09);
  padding: .9rem;
  backdrop-filter: blur(12px);
}

.trust-tile dt {
  font-size: .72rem;
  font-weight: 700;
  color: rgb(203 213 225);
}

.trust-tile dd {
  margin-top: .2rem;
  font-size: 1.35rem;
  font-weight: 900;
  color: white;
}

.surface-card,
.work-card {
  border: 1px solid rgb(226 232 240);
  border-radius: .5rem;
  background: white;
  box-shadow: 0 20px 45px rgba(15, 23, 42, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.surface-card {
  padding: 1.4rem;
}

.surface-card:hover,
.work-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 119, 6, .35);
  box-shadow: 0 28px 60px rgba(15, 23, 42, .10);
}

.filter-pill {
  border: 1px solid rgb(226 232 240);
  border-radius: .375rem;
  background: white;
  padding: .55rem .85rem;
  font-size: .86rem;
  font-weight: 800;
  color: rgb(71 85 105);
  transition: all .2s ease;
}

.filter-pill:hover,
.filter-pill.active {
  border-color: #D97706;
  background: #D97706;
  color: white;
}

.process-step {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .5rem;
  background: rgba(255,255,255,.06);
  padding: 1.2rem;
}

.contact-button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgb(226 232 240);
  border-radius: .375rem;
  background: white;
  padding: .65rem .9rem;
  font-size: .9rem;
  font-weight: 800;
  color: rgb(30 41 59);
  transition: border-color .2s ease, transform .2s ease;
}

.contact-button:hover {
  border-color: #D97706;
  transform: translateY(-2px);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal,
  .surface-card,
  .work-card,
  .contact-button {
    transition: none;
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 3.5rem 0;
  }

  .section-heading h2 {
    font-size: 1.9rem;
  }
}
