/* ─── Hero: the front of the envelope ────────────────────── */

.hero {
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 40px var(--gutter);
  border: 2px double var(--ink);
  pointer-events: none;
  opacity: 0.6;
}
.hero .container { text-align: left; }

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--postmark);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  flex: 0 0 40px;
  height: 1px;
  background: var(--postmark);
}
.hero-eyebrow::after { flex: 1; }

.hero h1 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "wght" 900, "SOFT" 30;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "wght" 500;
  color: var(--stamp);
  display: block;
  font-size: 0.55em;
  letter-spacing: -0.02em;
  margin-top: 8px;
}

.hero .tagline {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 48, "wght" 400;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: var(--ink-2);
  max-width: 680px;
  margin-bottom: 28px;
  font-style: italic;
}

.hero .description {
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--stamp);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  text-decoration: none;
  transition: transform .12s, box-shadow .12s;
}
.btn-primary::after { content: "↗"; font-size: 1.1em; }
.btn-primary:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--stamp);
  text-decoration: none;
}

/* Postmark — pure CSS stamp in the corner */
.postmark {
  position: absolute;
  top: 70px; right: 60px;
  width: 180px; height: 180px;
  border: 2.5px solid var(--stamp);
  border-radius: 50%;
  color: var(--stamp);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-14deg);
  opacity: 0.85;
  pointer-events: none;
  animation: stampIn 1.1s cubic-bezier(.2,.8,.2,1) .3s both;
}
.postmark::before,
.postmark::after {
  content: "";
  position: absolute;
  border: 1.5px dashed var(--stamp);
  border-radius: 50%;
  opacity: 0.55;
}
.postmark::before { inset: 10px; }
.postmark::after { inset: -14px; border-style: dotted; }
.postmark strong {
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: 0.03em;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 48, "wght" 700;
  display: block;
  padding: 4px 0;
  text-transform: none;
  color: var(--stamp);
}
.postmark span { display: block; line-height: 1.4; }

@keyframes stampIn {
  0%   { opacity: 0; transform: rotate(-40deg) scale(1.6); }
  70%  { opacity: 1; transform: rotate(-10deg) scale(0.95); }
  100% { opacity: 0.85; transform: rotate(-14deg) scale(1); }
}

