body.landing {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
}

.landing-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 50% 38%, rgba(199, 106, 62, 0.10), transparent 70%),
    repeating-linear-gradient(0deg, rgba(184, 179, 166, 0.035) 0px, rgba(184, 179, 166, 0.035) 1px, transparent 1px, transparent 96px),
    repeating-linear-gradient(90deg, rgba(184, 179, 166, 0.035) 0px, rgba(184, 179, 166, 0.035) 1px, transparent 1px, transparent 96px);
}

.landing-inner {
  position: relative;
  max-width: 620px;
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-mark {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-mark .dot { color: var(--copper); padding: 0 4px; }

.vision-text {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--paper-dim);
  max-width: 520px;
  margin-bottom: 40px;
}
.vision-text p + p { margin-top: 14px; }

#connect-btn { margin-bottom: 0; }

.contact-panel {
  margin-top: 24px;
  width: 100%;
  max-width: 340px;
  text-align: left;
  animation: reveal 0.25s ease;
}
.contact-panel[hidden] { display: none; }

.contact-panel .meta-label { margin-bottom: 8px; }

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

#contact-email {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: var(--paper);
  letter-spacing: 0.01em;
  word-break: break-all;
}

.copy-btn {
  flex-shrink: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-dim);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 6px 10px;
  cursor: pointer;
}
.copy-btn:hover { color: var(--paper); border-color: var(--paper-dim); }

@keyframes reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.landing-footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--paper-dim);
}

@media (max-width: 600px) {
  .hero-mark { font-size: 38px; }
  .vision-text { font-size: 18px; }
  .landing-footer { padding: 18px 20px; font-size: 10px; }
}
