/* =========================================================
   Compute.org — v0 placeholder
   Dark, geometric, tech-forward. Distinct from the warm
   cream/serif register used by the arts-side Conru sites,
   while sharing the Conru Foundation's own gold accent so
   the family relationship still reads.
   ========================================================= */

:root {
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'IBM Plex Mono', 'SF Mono', Menlo, Consolas, monospace;

  --bg:        #08090b;
  --bg-2:      #0d0f12;
  --text:      #f2f1ec;
  --muted:     #9a9d9f;
  --faint:     #55585c;
  --border:    rgba(255, 255, 255, 0.09);
  --accent:    #d4a85c;
  --accent-soft: rgba(212, 168, 92, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

body {
  height: 100%;
  min-height: 100dvh;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.scene {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;

  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
}

/* soft ambient glow behind the wordmark — the one intentional
   "graphic" element, entirely CSS, evokes compute/latent-space
   without needing an illustration */
.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(900px, 140vw);
  height: min(900px, 140vw);
  transform: translate(-50%, -54%);
  background: radial-gradient(circle, var(--accent-soft) 0%, rgba(212, 168, 92, 0.05) 38%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 100px;
  padding: 7px 14px 7px 12px;
  margin-bottom: 40px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(212, 168, 92, 0.55);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(212, 168, 92, 0.5); }
  70%  { box-shadow: 0 0 0 6px rgba(212, 168, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 168, 92, 0); }
}

.wordmark {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(42px, 10vw, 88px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 28px;
}

.wordmark-dot {
  color: var(--accent);
}

.teaser {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(18px, 3vw, 23px);
  line-height: 1.5;
  color: var(--text);
  max-width: 480px;
  margin-bottom: 10px;
}

.teaser-sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 2.2vw, 15.5px);
  line-height: 1.5;
  color: var(--muted);
}

.attribution {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 28px 24px 32px;
}

.attribution a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--faint);
  text-decoration: none;
  letter-spacing: 0.01em;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.attribution a:hover {
  color: var(--accent);
  border-bottom-color: rgba(212, 168, 92, 0.4);
}

@media (max-width: 480px) {
  .scene { padding: 24px 20px; }
  .badge { margin-bottom: 30px; font-size: 10.5px; padding: 6px 12px 6px 10px; }
  .wordmark { margin-bottom: 20px; }
  .attribution { padding: 22px 20px 26px; }
}

@media (max-height: 480px) and (orientation: landscape) {
  .scene { justify-content: center; padding-top: 60px; padding-bottom: 60px; }
  .attribution { position: static; margin-top: 32px; padding: 0; }
}

::selection {
  background: rgba(212, 168, 92, 0.25);
  color: var(--text);
}
