/* Calm, public-facing aesthetic */

:root{
  --bg1:#0b1020;
  --bg2:#0b1f2a;
  --card: rgba(255,255,255,0.06);
  --line: rgba(255,255,255,0.14);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --muted2: rgba(255,255,255,0.55);
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 18px;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% 20%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(160deg, var(--bg1), var(--bg2));
}

.wrap{ width:min(980px,92vw); margin:0 auto; }

.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 0;
}

.brand{ display:flex; gap:12px; align-items:center; }
.mark{
  width:32px;height:32px;border-radius:10px;
  background:rgba(255,255,255,0.10);
  border:1px solid var(--line);
}
.brandname{ font-weight:650; }
.brandtag{ font-size:12px;color:var(--muted2); }

.visitors{ font-size:13px; color:var(--muted); }

.hero{ padding:10px 0 20px; }
.hero-media{
  position:relative;
  width:100%;
  height:260px;
  overflow:hidden;
  border-radius:var(--radius);
  margin-bottom:18px;
}
.hero-media video{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55));
}

h1{ font-size:40px; margin:10px 0; }
.sub{ color:var(--muted); max-width:720px; }

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px;
  margin-top:16px;
}

.rec-row{ display:flex; gap:16px; align-items:center; }
.mic{
  width:120px;height:120px;border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.06);
  color:var(--text);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:6px;cursor:pointer;
}
.mic-icon{ font-size:28px; }
.mic-label{ font-size:12px;color:var(--muted); }

.status{ display:flex;gap:8px;align-items:center;color:var(--muted); }
.dot{ width:10px;height:10px;border-radius:999px;background:rgba(255,255,255,0.35); }
.timer{ font-family:var(--mono);font-size:18px; }

.guide{ margin-top:12px;border-top:1px solid var(--line);padding-top:10px; }
.guide-title{ font-size:13px;color:var(--muted); }
.guide-list{ margin:8px 0 0;padding-left:18px;color:var(--muted); }

.actions{ display:flex;gap:10px;margin-top:12px; }
.btn{
  border:1px solid var(--line);
  background:rgba(255,255,255,0.06);
  color:var(--text);
  padding:10px 14px;
  border-radius:12px;
  cursor:pointer;
}
.btn.secondary{ color:var(--muted); }

.output-text{
  margin-top:12px;
  background:rgba(0,0,0,0.18);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:12px;
  padding:12px;
  white-space:pre-wrap;
  line-height:1.45;
}

.about{ padding:20px 0 30px; }
.footer{ padding:20px 0 40px; }
.tiny{ font-size:12px;color:var(--muted2); }


/* Donate button (quiet, neutral) */
.donate-btn{
  opacity:0.85;
}
