/* /ventures/* — coming-soon landing pages */

@import url('./tokens.css?v=4');
@import url('./landing.css?v=4');

.venture-page main { padding-top: 96px; }

.venture-shell {
  max-width: 880px;
  margin: 0 auto;
  padding: 24px var(--gutter) 96px;
}

.venture-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 10px;
  border-radius: 999px;
  background: var(--ink-08);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.venture-status .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .venture-status .dot { animation: none; opacity: 1; }
}

.venture-lockup {
  display: flex; align-items: baseline; gap: 0.32em;
  margin-bottom: 16px;
}
.venture-lockup .desc {
  font-family: var(--font-body);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--muted);
  font-weight: 400;
}
.venture-lockup .tld {
  font-family: var(--font-mono);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--muted);
}

.venture-deck {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  font-weight: 400;
  font-variation-settings: "opsz" 60;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 640px;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.venture-deck em { font-style: italic; color: var(--clay); }

.venture-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-70);
  max-width: 640px;
  margin: 0 0 40px;
}
.venture-body > * + * { margin-top: 1em; }

/* CTA card */
.venture-cta {
  border: 1px solid var(--ink-08);
  background: var(--surface);
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.venture-cta .copy h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  margin: 0 0 4px;
}
.venture-cta .copy p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.venture-cta .actions {
  display: flex; gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-outbound {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--surface);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  min-height: 40px;
  transition: opacity 200ms;
}
.btn-outbound:hover { opacity: 0.85; }
.btn-outbound[aria-disabled="true"] {
  background: var(--ink-08);
  color: var(--muted);
  cursor: default;
  pointer-events: none;
}
.btn-outbound .arrow { display: inline-block; transition: transform 200ms var(--ease-out-quint); }
.btn-outbound:hover .arrow { transform: translateX(3px); }

/* Highlights row */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
  margin-bottom: 40px;
}
.highlight {
  padding: 18px 20px;
  border: 1px solid var(--ink-08);
  background: var(--surface);
}
.highlight .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 6px;
}
.highlight .text {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}

/* Email capture */
.venture-email {
  border-top: 1px solid var(--ink-08);
  padding-top: 32px;
  margin-top: 40px;
}
.venture-email h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.venture-email p {
  font-family: var(--font-display);
  font-size: 19px;
  font-variation-settings: "opsz" 36;
  line-height: 1.4;
  margin: 0 0 16px;
}

@media (max-width: 768px) {
  .venture-page main { padding-top: 80px; }
  .venture-shell { padding: 24px 24px 64px; }
  .venture-cta { flex-direction: column; align-items: stretch; padding: 22px 22px; }
  .venture-cta .actions { justify-content: stretch; }
  .btn-outbound { justify-content: center; }
}

/* Sub-brand monogram above the lockup */
.venture-mark {
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .venture-mark { width: 48px; height: 48px; margin-bottom: 12px; }
}
