/* =======================================================
   PLACEHOLDER PAGE STYLES
   Used by all simple sub-pages (About, Customers, etc).
   These pages are standalone and link back to the home page.
======================================================= */

.page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(245,166,35,.08), rgba(245,166,35,0) 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.page-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 1.4rem 0 1.4rem;
}

.page h1 em {
  font-style: italic;
  color: var(--amber);
  font-weight: 300;
}

.page-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 36em;
  margin: 0 auto 2.5rem;
}

.page-note {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem;
  border: 1px dashed var(--rule);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}

.page-note::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2.4s var(--ease-in-out) infinite;
}

.page-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 2rem;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  transition: color .25s, gap .25s var(--ease-out);
}

.page-back:hover {
  color: var(--amber);
  gap: .75rem;
}

.page-back svg {
  width: 14px;
  height: 14px;
}
