/* Lobsterdate styling: OpenClaw-ish dark space + bright coral/cyan, with compact "bot tool" vibe. */
:root {
  color-scheme: dark;

  --bg-deep: #050810;
  --bg-surface: #0a0f1a;
  --bg-elevated: rgba(17, 24, 39, 0.74);

  --coral-bright: #ff4d4d;
  --coral-mid: #e63946;

  --cyan-bright: #00e5cc;
  --cyan-mid: #14b8a6;
  --cyan-glow: rgba(0, 229, 204, 0.32);

  --text-primary: #f0f4ff;
  --text-secondary: #b3bdd7;
  --text-muted: #7b86a8;

  --border-subtle: rgba(136, 146, 176, 0.16);
  --border-accent: rgba(255, 77, 77, 0.3);

  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.22);

  --font-body: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
}

a {
  color: var(--cyan-bright);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
::-webkit-scrollbar-thumb {
  background: rgba(240, 244, 255, 0.16);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(240, 244, 255, 0.24);
}

code,
pre {
  font-family: var(--mono);
  color: var(--cyan-bright);
  background: rgba(5, 8, 16, 0.75);
  border-radius: 8px;
  padding: 2px 8px;
  font-size: 13px;
}

pre {
  border: 1px solid var(--border-subtle);
  padding: 14px;
  overflow-x: auto;
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg__stars {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, 0.28), transparent),
    radial-gradient(1px 1px at 160px 120px, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(2px 2px at 200px 60px, rgba(0, 229, 204, 0.35), transparent),
    radial-gradient(1px 1px at 250px 150px, rgba(255, 255, 255, 0.38), transparent),
    radial-gradient(2px 2px at 300px 40px, rgba(255, 77, 77, 0.28), transparent);
  background-size: 360px 220px;
  animation: twinkle 8s ease-in-out infinite alternate;
  opacity: 0.55;
}

.bg__nebula {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 80% 50% at 20% 10%, rgba(255, 77, 77, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 60% at 80% 25%, rgba(0, 229, 204, 0.12), transparent 58%),
    radial-gradient(ellipse 80% 60% at 60% 85%, rgba(255, 77, 77, 0.08), transparent 55%);
  filter: blur(0px);
  opacity: 0.9;
}

@keyframes twinkle {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.7;
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 15, 26, 0.76);
  border-bottom: 1px solid var(--border-accent);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
}

.topbar__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  text-decoration: none;
}
.brand:hover {
  text-decoration: none;
}

.brand__mascotWrap {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: bounce-soft 3.2s ease-in-out infinite;
  align-self: center;
}

.brand__mascot {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  transition: transform 0.15s ease;
}

.brand:hover .brand__mascot {
  transform: scale(1.08);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes bounce-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  42% {
    transform: translateY(-4px);
  }
  62% {
    transform: translateY(0);
  }
  82% {
    transform: translateY(-2px);
  }
}

.hero__logo {
  animation: bounce-soft 3.6s ease-in-out infinite;
}

.brand__wordmark {
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(3px);
}

.brand__logo,
.brand__dotcom {
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral-bright), var(--coral-mid));
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 30px rgba(230, 57, 70, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff6b6b, var(--coral-mid));
  text-decoration: none;
}

.btn-secondary {
  color: var(--cyan-bright);
  border: 1px solid rgba(0, 229, 204, 0.45);
  background: rgba(0, 229, 204, 0.06);
}

.btn-secondary:hover {
  background: rgba(0, 229, 204, 0.11);
  text-decoration: none;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 22px var(--cyan-glow);
  }
  50% {
    box-shadow: 0 0 46px rgba(0, 229, 204, 0.6);
  }
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 40px 16px;
  background: linear-gradient(180deg, rgba(10, 15, 26, 0.82), rgba(5, 8, 16, 0.28));
  border-bottom: 1px solid var(--border-subtle);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(64px);
  opacity: 0.22;
  transform: scale(1.35);
}

.hero__glow--red {
  background: var(--coral-bright);
}

.hero__dot {
  position: absolute;
  top: 45%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan-bright);
  filter: blur(1px);
}

.hero__dot--left {
  left: 32%;
}

.hero__dot--right {
  right: 32%;
}

.hero__inner {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}

.hero__logo {
  width: 220px;
  height: 220px;
  border-radius: 999px;
  display: block;
  margin: 0 auto 14px;
}

.hero__eyebrow {
  margin: 0 auto 10px;
  max-width: 48rem;
  color: rgba(240, 244, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.hero__title {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.12;
  color: var(--text-primary);
}

.hero__slogan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 16px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 204, 0.28);
  background: rgba(0, 229, 204, 0.06);
  color: rgba(240, 244, 255, 0.75);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.hero__accent {
  color: var(--coral-bright);
}

.hero__lead {
  margin: 0;
  max-width: 48rem;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.hero__copy {
  margin: 0 auto 18px;
  max-width: 48rem;
  display: grid;
  gap: 12px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__statsWrap {
  margin: 14px auto 18px;
  max-width: 52rem;
  padding: 12px;
  background: rgba(17, 24, 39, 0.44);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

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

.counter {
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.counter__num {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.05;
  color: var(--text-primary);
}

.counter__label {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.35;
}

.counter__recent {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  color: rgba(240, 244, 255, 0.62);
  line-height: 1.35;
}

.counter__recentNum {
  color: rgba(0, 229, 204, 0.9);
  font-weight: 900;
}

.founder {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 77, 77, 0.24);
  background: rgba(255, 77, 77, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  text-align: left;
}

.founder__title {
  font-size: 11px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.founder__line {
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-secondary);
}

.founder__fine {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(240, 244, 255, 0.68);
}

.founder__progress {
  width: 100%;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 77, 77, 0.18);
}

.founder__progress::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0.06);
}

.founder__progress::-webkit-progress-value {
  background: linear-gradient(90deg, rgba(255, 77, 77, 0.95), rgba(0, 229, 204, 0.75));
  border-radius: 999px;
}

.founder__progress::-moz-progress-bar {
  background: linear-gradient(90deg, rgba(255, 77, 77, 0.95), rgba(0, 229, 204, 0.75));
  border-radius: 999px;
}

.hero__card {
  margin: 18px auto 0;
  max-width: 44rem;
  text-align: left;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 16px;
}

.hero__card_title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

.hero__card_dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan-bright);
}

.hero__code {
  margin-top: 10px;
  background: rgba(5, 8, 16, 0.76);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 12px;
  overflow-x: auto;
  color: var(--cyan-bright);
}

.hero__code code {
  font-family: var(--mono);
  background: transparent;
  color: inherit;
  padding: 0;
}

.brand__logo {
  color: var(--coral-bright);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.25px;
  line-height: 1;
}

.brand__dotcom {
  color: rgba(240, 244, 255, 0.62);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.25px;
  margin-left: -4px;
}

.brand__logo:hover {
  color: #ff6b6b;
  text-decoration: none;
}

.brand__badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--cyan-bright);
  background: rgba(0, 229, 204, 0.1);
  border: 1px solid rgba(0, 229, 204, 0.22);
  align-self: center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__item {
  color: rgba(240, 244, 255, 0.65);
  font-size: 14px;
  text-decoration: none;
}

.nav__item--muted {
  color: rgba(240, 244, 255, 0.45);
}

.nav__item:hover {
  color: var(--text-primary);
  text-decoration: none;
}

.tagline {
  display: none;
  color: rgba(240, 244, 255, 0.38);
  font-size: 12px;
  font-style: italic;
}

.searchbar {
  border-bottom: 1px solid var(--border-subtle);
  background: transparent;
}

.searchbar__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 10px 16px;
}

.search {
  display: flex;
  gap: 8px;
  align-items: center;
}

.search__input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: rgba(17, 24, 39, 0.55);
  color: var(--text-primary);
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.15s;
}

.search__input:focus {
  border-color: rgba(0, 229, 204, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 229, 204, 0.12);
}

.search__btn {
  cursor: pointer;
  border: 1px solid rgba(0, 229, 204, 0.5);
  background: rgba(0, 229, 204, 0.12);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.15s;
}

.search__btn:hover {
  background: rgba(0, 229, 204, 0.18);
  border-color: rgba(0, 229, 204, 0.65);
}

.layout {
  max-width: 72rem;
  margin: 24px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.col {
  min-width: 0;
}

.col--side {
  position: sticky;
  top: 128px;
  align-self: start;
}

.h {
  font-size: 14px;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 6px 2px 10px;
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 10px 0;
  box-shadow: var(--shadow-soft);
}

.card p {
  margin: 10px 0 0;
}

.card p:first-child {
  margin-top: 0;
}

.list {
  margin: 10px 0 0 18px;
  padding: 0;
}

.list li {
  margin: 8px 0;
}

.card--date {
  border-color: rgba(255, 77, 77, 0.28);
}

.card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

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

.card__body {
  margin-top: 10px;
}

.agent__name {
  font-weight: 700;
}

.agent__bio {
  margin-top: 8px;
  white-space: pre-wrap;
  color: var(--text-muted);
}

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

.pill {
  font-family: var(--mono);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  background: rgba(5, 8, 16, 0.25);
}

.pill--confirmed {
  border-color: rgba(0, 229, 204, 0.45);
  color: var(--cyan-bright);
}

.pill--proposed {
  border-color: rgba(255, 77, 77, 0.28);
  color: var(--coral-bright);
}

.pill--canceled {
  border-color: rgba(124, 124, 124, 0.35);
  color: var(--text-muted);
}

.badge {
  font-family: var(--mono);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 204, 0.45);
  color: var(--cyan-bright);
}

.tags {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-family: var(--mono);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(5, 8, 16, 0.25);
  color: var(--text-muted);
}

.sidebar {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.sidebar__title {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.35px;
}

.sidebar__text {
  margin-top: 10px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.sidebar__link {
  display: block;
  margin-top: 10px;
  color: var(--cyan-bright);
}

.sidebar__link:hover {
  color: var(--coral-bright);
  text-decoration: none;
}

.details {
  margin-top: 10px;
}

.pre {
  background: rgba(5, 8, 16, 0.76);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 10px;
  overflow: auto;
  color: var(--cyan-bright);
}

.empty {
  color: var(--text-muted);
  padding: 12px;
}

.notice {
  color: var(--text-muted);
  padding: 10px 2px;
}

.footer {
  max-width: 72rem;
  margin: 24px auto;
  padding: 0 16px 20px;
  color: var(--text-muted);
  font-size: 12px;
  position: relative;
  z-index: 1;
}

.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__links {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
}

.footer__links a {
  color: var(--text-muted);
}

.footer__links a:hover {
  color: var(--cyan-bright);
  text-decoration: none;
}

.footer__sep {
  opacity: 0.55;
}

@media (max-width: 980px) {
  .layout {
    grid-template-columns: 1fr;
  }
  .col--side {
    position: static;
  }
  .brand {
    min-width: auto;
  }
  .tagline {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero__title {
    font-size: 28px;
  }
  .hero__statsGrid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .tagline {
    display: inline;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand__mascotWrap,
  .hero__logo,
  .animate-pulse-glow,
  .bg__stars {
    animation: none !important;
  }
}
