@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

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

:root {
  --ink: #090b10;
  --ink-soft: #10141d;
  --paper: #f6f8fc;
  --paper-dim: #d6ddea;
  --amber: #66b2ff;
  --amber-dim: #3879c9;
  --cream: #edf2ff;
  --muted: #9ba8bf;
  --dim: #6d7891;
  --border: rgba(196, 215, 255, 0.14);
  --border-paper: rgba(0, 0, 0, 0.12);

  --font-body: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-serif: 'Space Grotesk', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background:
    radial-gradient(1000px 520px at 50% -8%, rgba(102, 178, 255, 0.18) 0%, transparent 64%),
    linear-gradient(180deg, #0a0e15 0%, #090b10 58%, #0a0d14 100%);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 32%, black 35%, transparent 92%);
  z-index: 0;
}

a { color: inherit; text-decoration: none; }

code {
  font-family: 'IBM Plex Mono', 'Cascadia Code', monospace;
  font-size: 0.9em;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.invite-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #6bb6ff 0%, #4f96e1 100%);
  color: #07111f;
  padding: 11px 18px;
  border-radius: 12px;
  border: 1px solid rgba(155, 211, 255, 0.85);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.invite-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(44, 128, 219, 0.3);
  filter: saturate(1.08);
}

.invite-btn--dark {
  background: rgba(121, 173, 255, 0.08);
  border: 1px solid rgba(145, 191, 255, 0.34);
  color: var(--cream);
}

.invite-btn--dark:hover {
  background: rgba(121, 173, 255, 0.16);
  box-shadow: none;
}

.invite-btn--outline {
  background: transparent;
  border: 1px solid rgba(145, 191, 255, 0.42);
  color: var(--cream);
}

.invite-btn--outline:hover {
  background: rgba(121, 173, 255, 0.12);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(9, 12, 18, 0.72);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #f2f6ff;
  letter-spacing: -0.01em;
}

.nav__logo-img {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  object-fit: contain;
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}

.nav__links a {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid transparent;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.nav__links a:hover {
  color: var(--cream);
  border-color: var(--border);
  background: rgba(161, 197, 255, 0.06);
}

.nav__links a:focus-visible {
  color: var(--cream);
  border-color: rgba(173, 206, 255, 0.45);
  background: rgba(161, 197, 255, 0.1);
  outline: none;
  box-shadow: 0 0 0 2px rgba(112, 167, 255, 0.24);
}

.nav__links a:active {
  color: var(--cream);
  border-color: rgba(173, 206, 255, 0.5);
  background: rgba(161, 197, 255, 0.16);
}

.nav__links a[aria-current="page"] {
  color: var(--cream);
  border-color: rgba(173, 206, 255, 0.4);
  background: rgba(161, 197, 255, 0.14);
}

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

.nav__dashboard {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 7px 11px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.nav__dashboard:hover {
  color: var(--cream);
  border-color: rgba(196, 215, 255, 0.3);
  background: rgba(161, 197, 255, 0.08);
}

.nav__invite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #dce9ff;
  border: 1px solid rgba(145, 191, 255, 0.35);
  border-radius: 10px;
  padding: 7px 11px;
  background: rgba(106, 170, 255, 0.13);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.nav__invite svg {
  display: block;
  flex-shrink: 0;
}

.nav__invite:hover {
  background: rgba(106, 170, 255, 0.22);
  border-color: rgba(145, 191, 255, 0.55);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 0;
  margin-left: auto;
  cursor: pointer;
}

.nav__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--cream);
}

.nav__mobile {
  display: none;
  padding: 10px 28px 18px;
  border-top: 1px solid var(--border);
  background: #0b0f16;
}

.nav__mobile.open {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav__mobile a {
  font-size: 14px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 11px;
}

.nav__mobile a:hover {
  color: var(--cream);
  background: rgba(115, 175, 255, 0.1);
}

.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  padding: 86px 28px 72px;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero__watermark {
  position: absolute;
  top: 24px;
  left: 28px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(198, 219, 255, 0.45);
}

.hero__content {
  max-width: 640px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero__title em {
  color: #86c7ff;
  font-style: normal;
}

.hero__sub {
  font-size: 17px;
  max-width: 560px;
  color: var(--muted);
  margin-bottom: 30px;
}

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

.hero__tally {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: #9eb0cb;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.hero__preview {
  width: 100%;
  animation: float 6.2s ease-in-out infinite;
}

.dsc {
  font-family: "gg sans", "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  border-radius: 14px;
  border: 1px solid rgba(78, 90, 118, 0.44);
  background: #0b0e14;
  box-shadow:
    0 18px 46px rgba(5, 8, 14, 0.56),
    0 0 0 1px rgba(140, 156, 190, 0.06) inset;
}

.dsc__head {
  padding: 12px 16px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dsc__avatar {
  width: 30px;
  height: 30px;
  border-radius: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dsc__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 0;
  filter: grayscale(1) brightness(2.35) contrast(1.06);
}

.dsc__namerow {
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1;
}

.dsc__name {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.dsc__badge {
  font-size: 9px;
  font-weight: 700;
  border-radius: 5px;
  padding: 2px 6px;
  background: #5865f2;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.dsc__time {
  font-size: 12px;
  color: #8f9fc0;
}

.dsc__body {
  padding: 0 16px 12px;
}

.dsc__embed {
  border-radius: 10px;
  border: 1px solid rgba(107, 122, 155, 0.26);
  border-left: 4px solid #d2a0de;
  background: #0f131a;
  padding: 16px 15px 12px;
}

.dsc__post-id {
  font-size: 16px;
  font-weight: 700;
  color: #f3f6ff;
}

.dsc__rule {
  height: 1px;
  background: rgba(170, 184, 212, 0.24);
  margin: 12px 0 10px;
}

.dsc__message {
  font-size: 13px;
  color: #f2f5fc;
  margin-bottom: 9px;
  line-height: 1.45;
}

.dsc__hint {
  font-size: 11px;
  color: #9eaccc;
}

.dsc__foot {
  padding: 0 16px 14px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.dsc__btn {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 9px;
  border: 1px solid rgba(107, 122, 155, 0.3);
  background: #151923;
  color: #f5f7fc;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.dsc__btn--primary {
  background: #5865f2;
  color: #ffffff;
  border-color: #6e79f4;
}

.dsc__btn--ghost:hover,
.dsc__btn--icon:hover {
  background: #1a1f2b;
}

.dsc__btn--icon {
  width: 42px;
  height: 35px;
  justify-content: center;
  padding: 0;
}

.dsc__btn--icon img {
  width: 16px;
  height: 16px;
  padding: 0;
  filter: grayscale(1) brightness(2.2) contrast(1.06);
}

.showcase {
  padding: 72px 0 92px;
  position: relative;
  z-index: 1;
}

.showcase__label {
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 24px;
}

.showcase__split {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(360px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.showcase__info {
  max-width: 520px;
}

.showcase__pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #3f4450;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.showcase__headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #121723;
  margin-bottom: 16px;
}

.showcase__desc {
  font-size: 18px;
  line-height: 1.7;
  color: #657086;
  max-width: 430px;
}

.showcase__cta {
  margin-top: 22px;
}

.showcase__agents {
  margin-top: 22px;
}

.showcase__agents-label {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  color: #626c80;
  font-size: 19px;
  margin-bottom: 12px;
}

.showcase__agent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 10px 12px;
}

.showcase__agent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  background: rgba(255, 255, 255, 0.52);
  color: #5f6677;
  font-size: 13px;
  font-weight: 500;
  min-height: 34px;
  padding: 0 10px;
}

.showcase__diagram {
  border-radius: 26px;
  border: 1px solid rgba(38, 44, 61, 0.72);
  background: #05070c;
  padding: 26px;
}

.dsc--showcase {
  border-color: rgba(78, 90, 118, 0.5);
  background: #080b11;
}

.dsc--showcase .dsc__head {
  background: transparent;
}

.dsc--showcase .dsc__embed {
  background: #0f131a;
}

.dsc--showcase .dsc__post-id {
  color: #f4f8ff;
}

.dsc--showcase .dsc__hint {
  color: #9eaccc;
}

.dsc--showcase .dsc__btn {
  border-color: rgba(107, 122, 155, 0.3);
  background: #151923;
  color: #f5f7fc;
}

.dsc--showcase .dsc__btn--primary {
  background: #5865f2;
  color: #ffffff;
  border-color: #6e79f4;
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.sc-card--conf {
  grid-row: 1 / 3;
}

.sc-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(115, 175, 255, 0.08) 0%, rgba(115, 175, 255, 0.03) 100%);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.sc-card:hover {
  transform: translateY(-2px);
  border-color: rgba(169, 207, 255, 0.35);
}

.sc-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sc-card__type {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b7d8ff;
}

.sc-card__id {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--dim);
  font-size: 11px;
}

.sc-card__mood {
  font-size: 12px;
  color: #abcdf8;
}

.sc-card__text {
  font-size: 17px;
  color: #edf4ff;
  line-height: 1.55;
}

.sc-card__foot {
  display: flex;
  gap: 8px;
}

.sc-card__btn {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(145, 191, 255, 0.07);
  color: #bed7f7;
  font-size: 12px;
  padding: 6px 10px;
}

.sc-votes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sc-votes__row {
  display: grid;
  grid-template-columns: 58px 1fr 36px;
  gap: 8px;
  align-items: center;
}

.sc-votes__side {
  font-size: 11px;
  color: var(--muted);
}

.sc-votes__side--agree {
  color: #95cfff;
}

.sc-votes__track {
  height: 6px;
  border-radius: 999px;
  background: rgba(145, 191, 255, 0.17);
}

.sc-votes__fill {
  height: 100%;
  border-radius: inherit;
  background: #8ec9ff;
}

.sc-votes__fill--agree {
  background: #64b7ff;
}

.sc-votes__pct {
  text-align: right;
  font-size: 11px;
  color: var(--muted);
}

.what {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

.what__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 34px;
}

.what__header {
  position: sticky;
  top: 110px;
}

.what__title {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.what__list {
  list-style: none;
}

.what__item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.what__item:last-child {
  border-bottom: 1px solid var(--border);
}

.what__num {
  font-family: 'IBM Plex Mono', monospace;
  color: #97c8ff;
  font-size: 12px;
}

.what__item h3 {
  font-size: 20px;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}

.what__item p {
  color: var(--muted);
  font-size: 15px;
}

.setup {
  padding: 92px 0;
}

.setup .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.partners {
  position: relative;
  padding: 112px 0;
  background:
    radial-gradient(920px 520px at 50% -6%, rgba(122, 176, 239, 0.26) 0%, transparent 64%),
    #f2f2f2;
  color: #1b1b1b;
  overflow: hidden;
}

.partners::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(102, 178, 255, 0.08) 0%, rgba(224, 77, 191, 0.05) 50%, rgba(242, 242, 242, 0) 72%);
  pointer-events: none;
}

.partners .container {
  position: relative;
  z-index: 1;
}

.partners__intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.partners__kicker {
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  color: #111111;
  margin-bottom: 12px;
}

.partners__title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(38px, 5.8vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: #111111;
}

.partners__sub {
  font-size: 17px;
  line-height: 1.72;
  color: #5f6876;
  max-width: 710px;
  margin: 0 auto;
}

.partners__btn {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  color: #f3f3f3;
  border: 1px solid #101010;
  background: #111111;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.partners__btn:hover {
  transform: translateY(-1px);
  background: #1a1a1a;
  box-shadow: none;
}

.partners__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.partner-card {
  border-radius: 18px;
  border: 1px solid #d6d6d6;
  background: #f9f9f9;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.partner-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.partner-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
}

.partner-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partner-card__avatar--mindful {
  background: linear-gradient(135deg, #ff7b6b 0%, #e84f92 100%);
}

.partner-card__avatar--swift {
  background: linear-gradient(135deg, #6a8dff 0%, #9a63ff 100%);
}

.partner-card__avatar--random {
  background: linear-gradient(135deg, #10131f 0%, #2a3148 100%);
}

.partner-card h3 {
  font-family: var(--font-body);
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1b1b1b;
  margin-bottom: 2px;
}

.partner-card__meta {
  font-size: 13px;
  color: #6f6f6f;
}

.partner-card__desc {
  font-size: 14px;
  line-height: 1.68;
  color: #3f4654;
  margin-bottom: 18px;
}

.partner-card__link {
  margin-top: auto;
  min-height: 38px;
  border-radius: 11px;
  border: 1px solid #d0d0d0;
  background: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f3f3f3;
  font-weight: 600;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.partner-card__link:hover {
  border-color: #111111;
  background: #1b1b1b;
}

.setup__left {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(116, 185, 255, 0.07);
  padding: 28px;
}

.setup__title {
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.setup__desc {
  color: var(--muted);
  margin-bottom: 22px;
}

.setup__step {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(145, 191, 255, 0.05);
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 14px;
  margin-bottom: 10px;
}

.setup__step:last-child {
  margin-bottom: 0;
}

.setup__n {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(145, 191, 255, 0.32);
  font-family: 'IBM Plex Mono', monospace;
  color: #a5ceff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.setup__step strong {
  display: block;
  margin-bottom: 5px;
}

.setup__step p {
  font-size: 14px;
  color: var(--muted);
}

.setup__step code {
  background: rgba(132, 186, 255, 0.18);
  color: #d8ecff;
  border: 1px solid rgba(145, 191, 255, 0.25);
  border-radius: 6px;
  padding: 2px 6px;
}

.cmds {
  padding: 92px 0;
}

.cmds__title {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.cmds__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cmds__group {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: rgba(145, 191, 255, 0.05);
}

.cmds__group-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cmds__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding: 10px 0;
  font-size: 14px;
}

.cmds__row code {
  color: #cbe6ff;
  font-size: 12px;
}

.cmds__row span {
  color: var(--muted);
}

.premium {
  padding: 92px 0;
}

.premium__panel {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(145, 191, 255, 0.05);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.premium__free,
.premium__paid {
  padding: 30px;
}

.premium__paid {
  border-left: 1px solid var(--border);
  background: rgba(101, 176, 255, 0.12);
}

.premium__divider {
  display: none;
}

.premium__tier-label {
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
}

.premium__tier-title {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.premium__free ul,
.premium__paid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.premium__free li,
.premium__paid li {
  color: #d6e6ff;
  font-size: 14px;
  padding-left: 16px;
  position: relative;
}

.premium__free li::before,
.premium__paid li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: #86c7ff;
}

.premium__caveat {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 14px;
}

.premium__btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.closer {
  position: relative;
  padding: 108px 0;
  text-align: center;
}

.closer__glow {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(720px, 92vw);
  height: 300px;
  background: radial-gradient(circle, rgba(113, 178, 255, 0.2) 0%, transparent 72%);
  pointer-events: none;
}

.closer .container {
  position: relative;
  z-index: 1;
}

.closer__mark {
  font-family: 'IBM Plex Mono', monospace;
  color: #8cc8ff;
  margin-bottom: 14px;
}

.closer__title {
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin-bottom: 26px;
}

.footer {
  border-top: 1px solid var(--border);
  background: rgba(7, 10, 16, 0.9);
  padding-top: 36px;
}

.footer__inner {
  display: flex;
  gap: 38px;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 30px;
}

.footer__brand {
  flex: 1;
  min-width: 210px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer__logo-img {
  width: 24px;
  height: 24px;
}

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

.footer__links {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col span {
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--dim);
}

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

.footer__col a:hover {
  color: #beddff;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 14px 28px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
  color: var(--dim);
}

@media (max-width: 960px) {
  .nav__inner {
    gap: 12px;
    height: 64px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav__inner::-webkit-scrollbar {
    display: none;
  }

  .nav__logo,
  .nav__links,
  .nav__right {
    flex-shrink: 0;
  }

  .nav__links,
  .nav__right {
    display: flex;
  }

  .nav__links {
    gap: 4px;
  }

  .nav__links a {
    font-size: 12px;
    padding: 7px 10px;
  }

  .nav__right {
    gap: 6px;
  }

  .nav__dashboard,
  .nav__invite {
    font-size: 11px;
    padding: 7px 10px;
  }

  .nav__hamburger,
  .nav__mobile {
    display: none !important;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding-top: 66px;
  }

  .hero__watermark {
    position: static;
    margin-bottom: 10px;
  }

  .showcase__grid {
    grid-template-columns: 1fr;
  }

  .sc-card--conf {
    grid-row: auto;
  }

  .showcase__split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .showcase__desc {
    max-width: 100%;
  }

  .showcase__cta {
    margin-top: 18px;
  }

  .showcase__diagram {
    padding: 18px;
  }

  .what__inner {
    grid-template-columns: 1fr;
  }

  .what__header {
    position: static;
  }

  .setup .container,
  .cmds__cols,
  .premium__panel {
    grid-template-columns: 1fr;
  }

  .partners {
    padding: 88px 0;
  }

  .partners__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .premium__paid {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 640px) {
  .container,
  .nav__inner,
  .nav__mobile,
  .what__inner,
  .hero,
  .footer__bottom {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-bottom: 56px;
  }

  .nav__inner {
    gap: 6px;
    height: 56px;
  }

  .nav__logo {
    font-size: 0;
    gap: 0;
  }

  .nav__logo-img {
    width: 18px;
    height: 18px;
  }

  .nav__links {
    gap: 2px;
  }

  .nav__links a {
    font-size: 10px;
    padding: 5px 7px;
  }

  .nav__dashboard,
  .nav__invite {
    font-size: 9px;
    padding: 5px 7px;
  }

  .nav__dashboard {
    display: none;
  }

  .hero__title {
    font-size: clamp(34px, 12vw, 50px);
  }

  .what,
  .setup,
  .partners,
  .cmds,
  .premium,
  .closer {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .partners__title {
    font-size: clamp(32px, 9vw, 48px);
  }

  .partners__sub {
    font-size: 16px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 24px;
  }
}

/* Homepage theme inspired by paperclip.ing visual direction */
.home {
  background: #f2f2f2;
  color: #141414;
}

.home h1,
.home h2,
.home h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
}

.home strong {
  font-family: var(--font-body);
  font-weight: 700;
}

.home::after {
  display: none;
}

.home .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 140;
}

.home .nav__inner {
  margin-top: 10px;
  max-width: max-content;
  height: 72px;
  padding: 0 24px;
  gap: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(12, 45, 78, 0.7), rgba(18, 63, 102, 0.56));
  border: 1px solid rgba(122, 178, 223, 0.38);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(167, 214, 255, 0.12);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.home .nav__logo,
.home .nav__links a,
.home .nav__dashboard,
.home .nav__invite {
  color: #f2f6ff;
}

.home .nav__logo {
  font-size: 19px;
}

.home .nav__logo-img {
  width: 24px;
  height: 24px;
}

.home .nav__links a {
  font-size: 13px;
  border-radius: 999px;
  padding: 7px 10px;
  border: 0;
  background: transparent;
}

.home .nav__links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.home .nav__links a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 2px rgba(167, 214, 255, 0.34);
}

.home .nav__links a:active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}

.home .nav__links a[aria-current="page"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.home .nav__dashboard,
.home .nav__invite {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid rgba(176, 208, 244, 0.26);
  background: rgba(0, 0, 0, 0.3);
  font-size: 13px;
  padding: 8px 12px;
}

.home .hero {
  position: relative;
  max-width: 100%;
  min-height: 830px;
  padding: 170px 18px 160px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}

.home .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 690px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 62%, rgba(242, 242, 242, 0.9) 88%, #f2f2f2 100%),
    url('images/bg.png') center top / cover no-repeat;
  z-index: -2;
}

.home .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 56%, rgba(242, 242, 242, 0.95) 83%, #f2f2f2 100%);
  z-index: -1;
  pointer-events: none;
}

.home .hero__watermark,
.home .hero__preview,
.home .hero__tally {
  display: none;
}

.home .hero__content {
  max-width: 860px;
  margin: 0 auto;
  transform: translateY(-72px);
}

.home .hero__title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(48px, 6.1vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #191919;
  margin-bottom: 18px;
}

.home .hero__sub {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: #6f6f6f;
  font-size: 18px;
}

.home .hero__bottom {
  justify-content: center;
}

.home .invite-btn {
  font-size: 16px;
  padding: 11px 26px;
  border-radius: 999px;
  border: 1px solid #101010;
  background: #111111;
  color: #f3f3f3;
  box-shadow: none;
  filter: none;
  transform: none;
}

.home .invite-btn:hover {
  background: #1b1b1b;
}

.home .hero .invite-btn--outline {
  background: transparent;
  color: #5f5f5f;
  border-color: #d4d4d4;
}

.home .hero .invite-btn--outline:hover {
  background: #ececec;
}

.home .showcase,
.home .what,
.home .setup,
.home .premium,
.home .closer {
  background: #f2f2f2;
  color: #1b1b1b;
}

.home .footer {
  position: relative;
  background: #0b1628;
  color: #eef4ff;
  border-color: rgba(181, 203, 236, 0.24);
  overflow: hidden;
  isolation: isolate;
}

.home .footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 31, 0.6) 0%, rgba(8, 14, 28, 0.82) 55%, rgba(5, 10, 20, 0.9) 100%),
    url('images/bg.png') center bottom / cover no-repeat;
  z-index: 0;
}

.home .footer__inner,
.home .footer__bottom {
  position: relative;
  z-index: 1;
}

.home .showcase {
  padding-top: 12px;
}

.home .showcase__label,
.home .what__num,
.home .premium__tier-label {
  color: #6d6d6d;
}

.home .footer__col span {
  color: #dfe9fb;
}

.home .sc-card,
.home .setup__left,
.home .setup__step,
.home .premium__panel,
.home .cmds__group {
  border-color: #d6d6d6;
  background: #f9f9f9;
}

.home .setup__step code {
  background: #e7ebf1;
  color: #0f141d;
  border: 1px solid #c9d1dd;
  font-weight: 700;
}

.home .premium__paid {
  background: #f3f3f3;
  border-left-color: #d6d6d6;
}

.home .premium__free li,
.home .premium__paid li {
  color: #6f6f6f;
}

.home .premium__free li::before,
.home .premium__paid li::before {
  color: #4f4f4f;
}

.home .sc-card__text,
.home .what__title,
.home .what__item h3,
.home .setup__title,
.home .premium__tier-title,
.home .closer__title {
  color: #1b1b1b;
}

.home .what__item h3 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.home .what__item p {
  color: #3a3f49;
}

.home .footer__logo {
  color: #f3f8ff;
}

.home .sc-card__type,
.home .sc-card__id,
.home .sc-votes__side,
.home .sc-votes__pct,
.home .setup__desc,
.home .setup__step p,
.home .premium__caveat {
  color: #6f6f6f;
}

.home .footer__brand p,
.home .footer__col a,
.home .footer__bottom {
  color: rgba(234, 243, 255, 0.82);
}

.home .footer__col a:hover {
  color: #ffffff;
}

.home .sc-votes__track {
  background: #e2e2e2;
}

.home .sc-votes__fill,
.home .sc-votes__fill--agree {
  background: #141414;
}

.home .setup__n {
  color: #4f4f4f;
  border-color: #cfcfcf;
}

.home .what__item {
  border-color: #dbdbdb;
}

.home .footer,
.home .footer__bottom {
  border-color: rgba(181, 203, 236, 0.24);
}

@media (max-width: 960px) {
  .home .nav__inner {
    margin-top: 8px;
    max-width: max-content;
    border-radius: 999px;
    height: 58px;
  }

  .home .hero {
    min-height: 700px;
    align-items: center;
    padding-top: 126px;
    padding-bottom: 110px;
  }

  .home .hero__content {
    transform: translateY(-36px);
  }
}

@media (max-width: 640px) {
  .home .hero__content {
    transform: translateY(0);
  }

  .home .nav__inner {
    width: calc(100% - 16px);
    max-width: 460px;
    height: 58px;
    padding: 0 14px;
    gap: 9px;
    justify-content: center;
    overflow: hidden;
  }

  .home .nav__logo {
    gap: 0;
    font-size: 0;
  }

  .home .nav__logo-img {
    width: 24px;
    height: 24px;
  }

  .home .nav__links a,
  .home .nav__dashboard,
  .home .nav__invite {
    font-size: 11px;
    padding: 6px 8px;
  }

  .home .nav__dashboard {
    display: inline-flex;
  }

  .home .nav__links {
    margin-right: 0;
  }

  .home .nav__right {
    margin-left: 0;
  }

  .home .nav__invite {
    display: none;
  }

  .home .hero {
    min-height: 620px;
    align-items: flex-start;
    padding-top: 112px;
    padding-bottom: 96px;
  }

  .home .hero::before {
    height: 560px;
    background-position: 60% top;
  }

  .home .hero__title {
    font-size: clamp(38px, 12vw, 52px);
  }

  .home .hero__sub {
    font-size: 18px;
  }

  .home .hero .invite-btn {
    font-size: 14px;
    padding: 10px 18px;
  }
}
