/* gfk-utility.css — additive styles for the thank-you and 404 pages only.
   Reuses the Clubhouse Clean tokens (v2 aliases) from gfk.css. Does NOT modify gfk.css. */

.gfk-utility {
  background: var(--pine);
  color: var(--paper);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.gfk-utility::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% -8%, rgba(14, 138, 95, 0.22), transparent 62%);
  pointer-events: none;
}
.gfk-utility-inner {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(80px, 14vh, 168px) var(--pad);
  text-align: center;
}
.gfk-utility-mark span {
  display: inline-block;
  font-size: 44px;
  line-height: 1;
  color: var(--brass);
}
.gfk-utility-404 span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(86px, 17vw, 192px);
  line-height: 0.86;
  letter-spacing: 0.02em;
  color: var(--brass);
}
.gfk-utility .gfk-eyebrow-light {
  margin-top: 18px;
}
.gfk-utility-h {
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.04;
  margin: 14px 0 0;
}
.gfk-utility-h em {
  color: var(--brass);
}
.gfk-utility-sub {
  max-width: 56ch;
  margin: 22px auto 0;
  font-size: 16px;
  line-height: 1.72;
  color: rgba(243, 239, 230, 0.82);
}
.gfk-utility-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}
.gfk-utility-links {
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid rgba(243, 239, 230, 0.16);
}
.gfk-utility-links-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.55);
  margin-bottom: 16px;
}
.gfk-utility-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: center;
}
.gfk-utility-links-row a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.72);
  transition: color 0.2s ease;
}
.gfk-utility-links-row a:hover {
  color: var(--brass);
}
.gfk-utility-fine {
  max-width: 52ch;
  margin: 44px auto 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(243, 239, 230, 0.5);
}
