/* ═══════════════════════════════════════════════════════════
   StrimerBot — coming-soon (pre-launch teaser)
   Layout only; tokens & components inherited from styles.css
   ═══════════════════════════════════════════════════════════ */

.cs-body{min-height:100vh}

.cs-shell{
  position:relative;
  width:100%;
  min-width:0;
  min-height:100vh;
  max-width:var(--maxw);
  margin:0 auto;
  padding:clamp(18px,3.4vw,34px) clamp(18px,4vw,40px) clamp(22px,3vw,34px);
  display:flex;
  flex-direction:column;
}

/* ── header ── */
.cs-header{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.lang-switcher{
  display:flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-mono);
  font-size:12px;
  margin-left:auto;
}
.lang-btn{
  background:none;
  border:none;
  padding:4px 6px;
  color:var(--faint);
  cursor:pointer;
  font-weight:600;
  transition:color .2s;
}
.lang-btn:hover{color:var(--muted)}
.lang-btn.active{color:var(--acc-b)}
.lang-sep{color:var(--line);user-select:none}

.cs-tag{
  font-family:var(--font-mono);
  font-size:12.5px;letter-spacing:.04em;
  color:var(--muted);
  padding:6px 13px;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--panel);
}
@media(max-width:880px){.cs-tag{display:none}}
@media(max-width:540px){
  .cs-header{gap:12px}
}

/* ── hero ── */
.cs-hero{
  flex:1;
  min-width:0;
  display:grid;
  grid-template-columns:1fr 1.12fr;
  gap:clamp(34px,5vw,72px);
  align-items:center;
  padding:clamp(28px,5vw,56px) 0;
}
@media(min-width:1000px){
  .cs-hero{grid-template-columns:1.02fr 1.3fr}
  .cs-hero .monitor-body{grid-template-columns:1fr 172px}
}
@media(max-width:880px){
  .cs-hero{grid-template-columns:1fr;gap:clamp(30px,7vw,44px);text-align:left}
  .cs-stage-wrap{width:100%;max-width:560px;margin-inline:auto}
}

/* ── copy ── */
.cs-copy{max-width:560px;min-width:0}
.cs-h1{
  font-size:clamp(40px,6.6vw,78px);
  letter-spacing:-.035em;
  margin:24px 0 0;
  text-wrap:balance;
}
.cs-sub{
  margin:22px 0 0;
  color:var(--muted);
  font-size:clamp(16px,1.7vw,19px);
  max-width:500px;
  text-wrap:pretty;
}
.cs-sub .cmd{
  color:var(--ink);
  background:var(--panel-2);
  border:1px solid var(--line);
  padding:2px 8px;border-radius:7px;
  font-size:.86em;white-space:nowrap;
}

/* ── notify form ── */
.cs-notify{margin-top:32px;max-width:480px}
.cs-notify-row{
  display:flex;
  gap:10px;
  background:var(--glass);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border:1px solid var(--line);
  border-radius:16px;
  padding:8px;
  transition:border-color .2s,box-shadow .2s;
}
.cs-notify-row:focus-within{
  border-color:var(--acc-a);
  box-shadow:0 0 0 3px color-mix(in srgb,var(--acc-a) 22%,transparent);
}
.cs-input{
  flex:1;min-width:0;
  font-family:var(--font-body);
  font-size:15.5px;
  color:var(--ink);
  background:transparent;
  border:0;outline:none;
  padding:11px 8px 11px 12px;
}
.cs-input::placeholder{color:var(--faint)}
.cs-submit{flex:none;justify-content:center}

/* honeypot — visually + assistively hidden, still submitted by bots */
.cs-hp{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);
  white-space:nowrap;border:0;
}

.cs-note{
  margin:12px 2px 0;
  color:var(--faint);
  font-size:13.5px;
  transition:color .25s;
  min-height:1.2em;
}
.cs-notify.is-ok .cs-note{color:#7CFFB2}
.cs-notify.is-err .cs-note{color:#ff9bb0}
.cs-submit.sent{
  background:linear-gradient(100deg,#34d399,#22d3ee);
  box-shadow:0 8px 30px -8px #34d399;
}
.cs-submit[disabled]{opacity:.7;cursor:default}

/* ── chips ── */
.cs-chips{margin-top:28px}

/* ── stage showpiece ── */
.cs-stage-wrap{position:relative;min-width:0}

/* ── footer ── */
.cs-footer{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  padding-top:22px;
  border-top:1px solid var(--line-2);
  color:var(--muted);
  font-size:14px;
}
.cs-footer .foot-brand{
  display:inline-flex;align-items:center;gap:9px;
  font-family:var(--font-display);font-weight:700;font-size:17px;color:var(--ink);
}
.cs-footer .foot-brand .brand-mark{width:24px;height:24px;}
.cs-footer > span:nth-child(2){flex:1;min-width:180px}
.cs-copyright{font-family:var(--font-mono);font-size:12.5px;color:var(--faint)}
@media(max-width:600px){.cs-footer > span:nth-child(2){display:none}}
