
.gate-hero {
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px var(--container-pad);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(184, 184, 184, 0.08);
}

/* Large ghosted watermark */
.gate-hero::before {
  content: "ΨΣΦ";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(240px, 40vw, 480px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.015);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.gate-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: relative;
  z-index: 2;
}

.gate-card {
  background: var(--black-2);
  border: 1px solid rgba(184, 184, 184, 0.12);
  padding: 56px 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.gate-lock {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184, 184, 184, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--silver-dark);
}

.gate-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-dark);
  font-weight: 600;
  margin-bottom: 16px;
}

.gate-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.gate-title em {
  font-style: italic;
  font-weight: 500;
  background: var(--silver-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gate-desc {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
}

/* Google SSO wrapper — PSP Google Auth renders inside */
.gate-sso-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--ease-base);
  margin-bottom: 16px;
  cursor: pointer;
  text-decoration: none;
}

.gate-sso-btn:hover {
  background: #e8e8e8;
}

.gate-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.gate-divider::before,
.gate-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(184, 184, 184, 0.1);
}

.gate-divider span {
  font-size: 10px;
  color: var(--silver-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.gate-note {
  font-size: 11px;
  color: var(--silver-dark);
  line-height: 1.6;
  font-style: italic;
  font-family: var(--serif);
}

/* Feature preview tiles below the sign-in card */
.gate-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(184, 184, 184, 0.08);
  border: 1px solid rgba(184, 184, 184, 0.08);
  max-width: 480px;
  width: 100%;
  margin-top: 48px;
}

.gate-feature {
  background: var(--black);
  padding: 24px 20px;
  text-align: center;
}

.gate-feature-icon {
  color: var(--silver-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gate-feature p {
  font-size: 12px;
  color: var(--silver-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .gate-hero {
    padding: 60px var(--container-pad);
  }

  .gate-card {
    padding: 40px 24px;
  }
}