/* quin-blueprint.css — shared blueprint shell used on the homepage.
   Honors the live iamquin.ai aesthetic: navy blueprint paper, single white
   card centered. Copperplate display, Jost body. */

.bp-stage {
  width: 100%;
  min-height: 100vh;
  background-color: #0b2a44;
  background-image:
    /* major grid */
    linear-gradient(to right,  rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px),
    /* minor grid */
    linear-gradient(to right,  rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px),
    /* faint radial fade */
    radial-gradient(ellipse at center, rgba(255,255,255,0.04) 0%, transparent 70%);
  background-size: 96px 96px, 96px 96px, 24px 24px, 24px 24px, 100% 100%;
  background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px, center;
  background-attachment: fixed;
  display: flex;
  align-items: safe center;
  justify-content: center;
  padding: 56px 40px;
  font-family: "Jost", "Futura", system-ui, sans-serif;
  color: #0f172a;
}

.bp-card {
  background: #ffffff;
  position: relative;
  /* a calling-card paper feel — crisp edges, almost no shadow */
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 24px 60px -20px rgba(0,0,0,0.35),
    0 8px 20px -8px rgba(0,0,0,0.25);
}

/* Copperplate wordmark, the way the live site uses it */
.bp-wordmark {
  font-family: "Copperplate Gothic Std", "Trajan Pro", "Optima", serif;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.bp-eyebrow {
  font-family: "Copperplate Gothic Std", "Trajan Pro", "Optima", serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #64748b;
}

.bp-rule {
  height: 1px;
  background: #e2e8f0;
  border: 0;
  width: 100%;
}

.nav-link {
  font-family: "Copperplate Gothic Std", "Trajan Pro", serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0f172a;
  text-decoration: none;
  transition: color 120ms;
}
.nav-link:hover { color: #334155; }
.nav-link.active { color: #334155; }

.bp-link {
  color: #0f172a;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.bp-link:hover { color: #475569; }

/* corner registration marks — subtle blueprint-paper detail */
.bp-card .bp-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid #cbd5e1;
}
.bp-card .bp-corner.tl { top: -1px; left: -1px;  border-right: 0; border-bottom: 0; }
.bp-card .bp-corner.tr { top: -1px; right: -1px; border-left:  0; border-bottom: 0; }
.bp-card .bp-corner.bl { bottom: -1px; left: -1px;  border-right: 0; border-top: 0; }
.bp-card .bp-corner.br { bottom: -1px; right: -1px; border-left:  0; border-top: 0; }
