:root {
  --bg-0: #0a0e1a;
  --bg-1: #101827;
  --bg-2: #151f33;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.075);
  --line: #263149;
  --line-soft: rgba(255, 255, 255, 0.1);
  --text: #f7fbff;
  --muted: #8ea0b9;
  --quiet: #60708b;
  --cyan: #4fc3f7;
  --cyan-soft: #9ee4ff;
  --cyan-ink: #062033;
  --gold: #f5c842;
  --gold-soft: #ffe8a1;
  --green: #69f0ae;
  --red: #f87171;
  --violet: #a78bfa;
  --paper: #f8efe0;
  --paper-ink: #253044;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(79, 195, 247, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 195, 247, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, #0a0e1a 0%, #101827 52%, #0a0e1a 100%);
  background-color: var(--bg-0);
  background-size: 56px 56px, 56px 56px, auto;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 14, 26, 0.2), rgba(10, 14, 26, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(245, 200, 66, 0.018) 14px 15px);
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--cyan);
  color: var(--cyan-ink);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(10, 14, 26, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(79, 195, 247, 0.45);
  border-radius: 7px;
  color: var(--cyan);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  box-shadow: 0 0 24px rgba(79, 195, 247, 0.16);
}

.brand-text {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.94rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 14px;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(247, 251, 255, 0.74);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-links .nav-cta {
  color: var(--cyan-ink);
  background: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: 6px;
  padding: 9px 14px;
}

/* Login als eigener Button neben dem CTA – vorher ein Textlink unter sieben (Daniel 2026-09-13) */
.nav-links .nav-login {
  color: var(--text);
  border: 1px solid rgba(247, 251, 255, 0.32);
  border-radius: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-links .nav-login:hover,
.nav-links .nav-login:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan-soft);
}

.hero-login {
  margin: 8px 0 0;
  color: rgba(247, 251, 255, 0.58);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-login a {
  color: var(--cyan-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-login a:hover,
.hero-login a:focus-visible {
  color: var(--gold-soft);
}

.hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 36px 18px 28px;
  display: grid;
  gap: 24px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan-soft);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  margin-bottom: 14px;
  font-size: 3.6rem;
  line-height: 0.95;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 22px;
  color: rgba(247, 251, 255, 0.78);
  font-size: 1.1rem;
}

.hero-actions,
.plan-card .btn {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--cyan-soft);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.hero-text-link:hover,
.hero-text-link:focus-visible {
  color: var(--gold-soft);
}

.hero-tag {
  margin: 12px 0 0;
  color: rgba(247, 251, 255, 0.58);
  font-size: 0.9rem;
  font-weight: 700;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 11px 18px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.btn-primary,
.btn-submit {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--cyan-ink);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #2b2205;
}

.btn:hover,
.btn:focus-visible,
.btn-submit:hover,
.btn-submit:focus-visible {
  filter: brightness(1.08);
}

.status-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 26px 0 0;
}

.status-rail div,
.metric {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(16, 24, 39, 0.78);
  padding: 12px 14px;
}

.status-rail dt,
.metric span,
.paper-meta,
.bot-personality,
.window-label,
.feed-source,
.gazette-issue {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.status-rail dd {
  margin: 2px 0 0;
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.world-window,
.schedule-panel,
.register-panel,
.gazette-panel,
.plan-card,
.influence-card,
.step,
.bot-card {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(16, 24, 39, 0.78);
  box-shadow: var(--shadow);
}

.world-window {
  padding: 16px;
  overflow: hidden;
}

.window-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.window-heading h2 {
  margin: 0;
  font-size: 0.94rem;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(105, 240, 174, 0.1);
}

.avatar-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.avatar-token {
  min-width: 0;
  display: grid;
  gap: 5px;
  justify-items: center;
  align-content: start;
  padding: 9px 5px 8px;
  border: 1px solid rgba(79, 195, 247, 0.16);
  border-radius: 7px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
}

.avatar-frame,
.bot-avatar,
.agent-proof-avatar {
  display: block;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid rgba(79, 195, 247, 0.34);
  background: #101827;
}

.avatar-frame {
  width: 66px;
  height: 66px;
}

.avatar-frame svg,
.bot-avatar svg,
.agent-proof-avatar svg {
  display: block;
  width: 100%;
  height: 100%;
}

.avatar-name {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.avatar-role {
  color: var(--muted);
  font-size: 0.72rem;
}

.avatar-role.agent-badge,
.bot-agent-badge,
.feed-agent-badge {
  color: var(--cyan-soft);
  text-transform: none;
  letter-spacing: 0;
}

.window-letter {
  margin-top: 12px;
  padding: 14px;
  border-left: 3px solid var(--gold);
  background: rgba(245, 200, 66, 0.08);
}

.window-event {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(100px, 145px) 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(79, 195, 247, 0.22);
  border-radius: 8px;
  background: rgba(79, 195, 247, 0.07);
  color: var(--cyan);
  --event-accent: var(--cyan);
  --event-warn: var(--gold);
  --event-danger: var(--red);
  --event-bog: var(--green);
  --event-ice: var(--cyan-soft);
  --event-light: #eaf7ff;
  --event-dark: var(--bg-0);
}

.window-event-art svg {
  display: block;
  width: 100%;
  height: auto;
}

.window-event h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--text);
}

.window-event p:not(.window-label) {
  margin-bottom: 6px;
  color: rgba(247, 251, 255, 0.72);
  font-size: 0.88rem;
}

.window-event a {
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.window-letter h3 {
  margin: 0 0 6px;
  color: var(--gold-soft);
  font-size: 1.1rem;
}

.window-letter p:last-child {
  margin-bottom: 0;
  color: rgba(247, 251, 255, 0.76);
  font-size: 0.92rem;
}

.ticker-strip,
.agent-section,
.story-band,
.bots-section,
.how-section,
.role-section,
.proof-section,
.plans-section,
.register-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 44px 18px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 22px;
}

.section-head.narrow {
  max-width: 690px;
}

.section-head h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1.1;
}

.section-head p:not(.eyebrow),
.register-intro p:not(.eyebrow) {
  color: rgba(247, 251, 255, 0.7);
}

.agent-columns {
  display: grid;
  gap: 18px;
}

.agent-column {
  min-width: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(79, 195, 247, 0.28);
}

.agent-column h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.agent-column ul,
.agent-column ol {
  margin: 0;
  padding-left: 19px;
  color: rgba(247, 251, 255, 0.7);
}

.agent-column li {
  margin: 7px 0;
}

.agent-guide-link {
  margin-top: 14px;
}

.agent-proof-list {
  display: grid;
  gap: 10px;
}

.agent-proof-bot {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-decoration: none;
}

.agent-proof-avatar {
  width: 56px;
  height: 56px;
}

.agent-proof-bot strong,
.agent-proof-bot span span,
.agent-proof-bot small {
  display: block;
}

.agent-proof-bot span span {
  color: var(--cyan-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.agent-proof-bot small {
  color: var(--muted);
  font-size: 0.76rem;
}

.agent-honesty {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(245, 200, 66, 0.08);
  color: rgba(247, 251, 255, 0.78);
  font-weight: 700;
}

.feed-source {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(79, 195, 247, 0.2);
  border-radius: 6px;
  background: rgba(79, 195, 247, 0.07);
}

.feed-list,
.schedule-list,
.plan-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feed-list {
  display: grid;
  gap: 8px;
}

.feed-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(247, 251, 255, 0.84);
  text-decoration: none;
}

.feed-list a {
  color: var(--cyan-soft);
  font-weight: 800;
  text-decoration: none;
}

.feed-icon {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(79, 195, 247, 0.24);
  border-radius: 6px;
  color: var(--cyan);
  font-weight: 800;
}

.feed-list strong {
  color: var(--cyan-soft);
}

.feed-agent-badge {
  display: inline-flex;
  margin-left: 7px;
  font-size: 0.78rem;
  font-weight: 800;
}

.letter-layout {
  display: grid;
  gap: 18px;
}

.paper-letter {
  padding: 22px;
  border: 1px solid rgba(37, 48, 68, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(37, 48, 68, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 34px auto, auto;
  color: var(--paper-ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

.paper-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(37, 48, 68, 0.62);
}

.paper-letter h3 {
  margin: 16px 0 6px;
  color: var(--paper-ink);
  font-size: 1.55rem;
}

.letter-from {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(37, 48, 68, 0.72);
  font-size: 0.9rem;
}

.dot-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(37, 48, 68, 0.34);
}

.paper-letter p:last-child {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
  line-height: 1.72;
}

.schedule-panel {
  padding: 18px;
}

.schedule-panel h3 {
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.schedule-list {
  display: grid;
  gap: 12px;
}

.schedule-list li {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.schedule-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.schedule-list span {
  color: rgba(247, 251, 255, 0.68);
}

.bot-grid,
.steps,
.influence-grid,
.proof-grid,
.plan-grid {
  display: grid;
  gap: 14px;
}

.bot-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.bot-avatar {
  width: 76px;
  height: 76px;
}

.bot-card h3 {
  margin: 1px 0 4px;
  font-size: 1.2rem;
}

.bot-card p {
  margin: 0 0 5px;
  color: rgba(247, 251, 255, 0.68);
  font-size: 0.92rem;
}

.bot-card a {
  color: var(--cyan-soft);
  font-weight: 800;
  text-decoration: none;
}

.bot-personality {
  margin-bottom: 0;
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bot-agent-badge {
  color: var(--cyan-soft);
  font-size: 0.84rem;
}

.bot-muted {
  color: var(--muted);
}

.step,
.influence-card,
.plan-card {
  padding: 18px;
}

.step-num,
.icon-box {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 7px;
  border: 1px solid rgba(79, 195, 247, 0.32);
  color: var(--cyan);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
}

.icon-box.gold {
  border-color: rgba(245, 200, 66, 0.42);
  color: var(--gold);
}

.step h3,
.influence-card h3,
.plan-card h3 {
  margin-bottom: 8px;
  font-size: 1.14rem;
}

.step p,
.influence-card p,
.plan-card li {
  color: rgba(247, 251, 255, 0.69);
}

.metric {
  box-shadow: none;
}

.metric strong {
  display: block;
  margin: 3px 0;
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.72rem;
  line-height: 1.1;
}

.metric em {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
}

.gazette-panel {
  margin-top: 16px;
  padding: 18px;
  border-color: rgba(245, 200, 66, 0.22);
}

.gazette-copy {
  display: grid;
  gap: 8px;
}

.gazette-issue {
  margin-bottom: 0;
  color: var(--gold-soft);
}

.gazette-panel h3 {
  margin-bottom: 0;
  color: var(--gold-soft);
  font-size: 1.24rem;
}

.gazette-panel h3 a {
  color: inherit;
  text-decoration: none;
}

.gazette-panel h3 a:hover,
.gazette-panel h3 a:focus-visible {
  color: var(--gold);
}

.gazette-panel p:last-child {
  margin-bottom: 0;
  color: rgba(247, 251, 255, 0.76);
}

.gazette-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.gazette-actions .btn {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.88rem;
}

.plan-card {
  box-shadow: none;
}

.plan-card.plus {
  border-color: rgba(245, 200, 66, 0.38);
  background: rgba(245, 200, 66, 0.07);
}

.plan-price {
  margin: 0 0 14px;
  color: var(--cyan-soft);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.plan-card.plus .plan-price {
  color: var(--gold-soft);
}

.plan-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-card li:last-child {
  border-bottom: 0;
}

.register-section {
  display: grid;
  gap: 20px;
}

.register-intro h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1.1;
}

.register-panel {
  padding: 18px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-group {
  display: grid;
  gap: 6px;
}

label {
  color: rgba(247, 251, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 11px 12px;
}

select option {
  color: var(--text);
  background: #101827;
}

input::placeholder {
  color: rgba(247, 251, 255, 0.34);
}

input:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(79, 195, 247, 0.88);
  outline-offset: 2px;
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 48px;
}

.pw-toggle {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 36px;
  height: 36px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(247, 251, 255, 0.48);
  cursor: pointer;
}

.pw-toggle.is-visible {
  color: var(--cyan);
  background: rgba(79, 195, 247, 0.08);
}

.promo-badge {
  margin: 16px 0 12px;
  padding: 10px 12px;
  border: 1px solid rgba(105, 240, 174, 0.34);
  border-radius: 6px;
  background: rgba(105, 240, 174, 0.08);
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -9999px;
  display: none;
}

.human-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 16px 0;
  color: rgba(247, 251, 255, 0.72);
  font-weight: 600;
}

.human-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--cyan);
  flex-shrink: 0;
}

.btn-submit {
  width: 100%;
  min-height: 48px;
  border-radius: 6px;
  border: 1px solid var(--cyan);
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
}

.btn-submit:disabled {
  border-color: #536070;
  background: #536070;
  color: #c7d1de;
  cursor: not-allowed;
}

.form-note,
.login-link {
  color: rgba(247, 251, 255, 0.54);
  font-size: 0.86rem;
  text-align: center;
}

.form-note {
  margin: 12px 0 0;
}

.form-note a,
.login-link a {
  color: var(--cyan-soft);
  text-decoration: none;
  font-weight: 700;
}

.error-msg,
.success-msg {
  display: none;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.error-msg {
  border: 1px solid rgba(248, 113, 113, 0.42);
  background: rgba(248, 113, 113, 0.12);
  color: #fecaca;
}

.success-msg {
  border: 1px solid rgba(105, 240, 174, 0.34);
  background: rgba(105, 240, 174, 0.1);
  color: var(--green);
}

.site-footer {
  padding: 28px 18px 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(247, 251, 255, 0.42);
  text-align: center;
  font-size: 0.84rem;
}

.site-footer p {
  margin: 0 0 8px;
}

.site-footer a {
  display: inline-flex;
  margin: 4px 8px;
  color: rgba(247, 251, 255, 0.58);
  text-decoration: none;
}

.bot4life-credit {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 8px;
  background: rgba(10, 14, 26, 0.72);
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.bot4life-credit span {
  color: var(--cyan-soft);
  font-weight: 800;
}

@media (max-width: 640px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-links a {
    font-size: 0.82rem;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .window-event {
    grid-template-columns: 1fr;
  }

  .window-event-art {
    max-width: 178px;
  }

  .btn {
    width: 100%;
  }

  .hero-text-link {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 560px) {
  .status-rail,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid,
  .plan-grid,
  .steps,
  .influence-grid,
  .bot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 860px) {
  .site-nav {
    padding: 14px 28px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    align-items: center;
    padding-top: 58px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: 5.4rem;
  }

  .status-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .letter-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: start;
  }

  .proof-grid,
  .steps,
  .influence-grid,
  .agent-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .register-section {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
  }

  .register-panel {
    padding: 24px;
  }
}

@media (min-width: 1040px) {
  .bot-grid,
  .plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
