:root {
  --bg: #f9faf6;
  --bg-soft: #eef3e8;
  --ink: #18222f;
  --ink-soft: #536174;
  --line: #d6dfd1;
  --brand: #1fcb77;
  --brand-deep: #0f9f5a;
  --brand-ink: #092816;
  --accent: #ff8e3b;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --shadow: 0 18px 44px rgba(21, 40, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

html.auth-gate-pending body.portal-page {
  visibility: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% -8%, #dffed8 0%, transparent 34%),
    radial-gradient(circle at 88% 68%, #ffe7d3 0%, transparent 32%),
    linear-gradient(145deg, #f8faf4 0%, #f2f5ef 50%, #fcf9f3 100%);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(122, 140, 112, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(122, 140, 112, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.36;
}

.bg-veil {
  position: fixed;
  z-index: -3;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  animation: drift 16s ease-in-out infinite alternate;
}

.bg-veil-a {
  width: 28rem;
  height: 28rem;
  top: -10rem;
  left: -8rem;
  background: rgba(31, 203, 119, 0.25);
}

.bg-veil-b {
  width: 26rem;
  height: 26rem;
  right: -8rem;
  bottom: -8rem;
  background: rgba(255, 142, 59, 0.2);
  animation-duration: 20s;
}

@keyframes drift {
  from {
    transform: translateY(-6px) translateX(-2px) scale(1);
  }

  to {
    transform: translateY(10px) translateX(8px) scale(1.08);
  }
}

.container {
  width: min(1160px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(248, 250, 244, 0.76);
  border-bottom: 1px solid rgba(214, 223, 209, 0.8);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-badge {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.7rem;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(20, 35, 50, 0.15);
}

.brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1.76rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  border-radius: 0.75rem;
  width: 2.7rem;
  height: 2.4rem;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.2rem;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.nav-link {
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 0.55rem 0.9rem;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.nav-link-button {
  font-family: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: var(--surface);
  border-color: var(--line);
  outline: none;
}

.nav-link-emphasis {
  background: rgba(31, 203, 119, 0.14);
  border-color: rgba(31, 203, 119, 0.44);
}

.nav-link-quiet {
  color: #304053;
}

.links-menu {
  position: relative;
}

.links-trigger {
  font-family: inherit;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.account-menu {
  position: relative;
}

.account-trigger {
  font-family: inherit;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.caret {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.links-panel {
  position: absolute;
  top: calc(100% + 0.42rem);
  right: 0;
  width: 12.4rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  display: grid;
  padding: 0.45rem;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.links-menu.open .links-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.account-panel {
  position: absolute;
  top: calc(100% + 0.42rem);
  right: 0;
  width: 10.2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  display: grid;
  padding: 0.45rem;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.account-menu.open .account-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-link-label {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  line-height: 1.2;
}

.site-link-logo {
  width: 1rem;
  height: 1rem;
  border-radius: 0.24rem;
  flex: 0 0 1rem;
  display: block;
}

.links-panel .site-link-anchor {
  display: flex;
  align-items: center;
}

.links-panel a {
  text-decoration: none;
  color: #1f2a38;
  border-radius: 0.7rem;
  padding: 0.58rem 0.72rem;
  font-weight: 600;
  font-size: 0.93rem;
}

.account-panel :is(a, button) {
  text-decoration: none;
  color: #1f2a38;
  border-radius: 0.7rem;
  padding: 0.58rem 0.72rem;
  font-weight: 600;
  font-size: 0.93rem;
  border: 0;
  background: transparent;
  font-family: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
}

.links-panel a:hover,
.links-panel a:focus-visible {
  background: #edf4ea;
  outline: none;
}

.account-panel :is(a, button):hover,
.account-panel :is(a, button):focus-visible {
  background: #edf4ea;
  outline: none;
}

.button {
  border: 1px solid transparent;
  border-radius: 0.85rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.18rem;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.is-disabled,
.nav-link.is-disabled {
  opacity: 0.68;
  pointer-events: none;
}

.button-nav {
  background: var(--brand);
  color: #052011;
  border-color: var(--brand);
}

.button-nav:hover,
.button-nav:focus-visible {
  background: var(--brand-deep);
  color: #f2fff6;
}

.hero {
  text-align: center;
  padding-top: clamp(3.4rem, 7vw, 5.4rem);
  padding-bottom: 2.6rem;
}

.hero-platform-strip {
  margin: 0 auto 1.05rem;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.64rem;
}

.hero-platform-chip {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.72rem;
  border: 1px solid rgba(202, 213, 205, 0.95);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(20, 40, 30, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hero-platform-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(20, 40, 30, 0.12);
}

.spacing {
  height: 5px;
}

.hero-platform-icon {
  width: 1.42rem;
  height: 1.42rem;
  object-fit: contain;
  border-radius: 0.3rem;
}

.eyebrow {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #256f47;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-title {
  margin: 1.5rem auto 1.5rem;
  max-width: 13ch;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(2.1rem, 6vw, 4.1rem);
  line-height: 1.03;
  letter-spacing: -0.042em;
}

.hero-copy {
  margin: 0 auto;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.3vw, 1.3rem);
  line-height: 1.58;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.78rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--brand), #43d98f);
  color: var(--brand-ink);
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(31, 203, 119, 0.34);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #10ab5f, #34cd82);
  color: #f4fff8;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--surface-strong);
}

.button:disabled,
.button-disabled {
  cursor: not-allowed;
  opacity: 0.72;
  pointer-events: none;
  box-shadow: none;
}

.button:disabled:hover,
.button:disabled:focus-visible,
.button-disabled:hover,
.button-disabled:focus-visible {
  transform: none;
}

.hero-proof {
  margin-top: 1rem;
  color: #5a687a;
  font-size: 0.96rem;
  font-weight: 600;
}

.hero-product-hunt {
  width: min(100%, 18.5rem);
  margin: 0.9rem auto 0;
}

.hero-product-hunt-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 0;
  padding: 0;
  border-radius: 1rem;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.hero-product-hunt-link:hover,
.hero-product-hunt-link:focus-visible {
  transform: translateY(-2px);
}

.hero-product-hunt.is-launch-day .hero-product-hunt-link {
  filter: drop-shadow(0 16px 24px rgba(255, 119, 40, 0.22));
}

.hero-product-hunt-fallback {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 0;
  padding: 0.72rem 0.9rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 145, 77, 0.22);
  background: linear-gradient(135deg, rgba(255, 113, 54, 0.12), rgba(255, 255, 255, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-product-hunt-fallback-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6154, #ff884d);
  color: #fff;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
}

.hero-product-hunt-fallback-text {
  display: grid;
  gap: 0.08rem;
  text-align: left;
}

.hero-product-hunt-fallback-text strong {
  color: #152133;
  font-size: 0.92rem;
  line-height: 1.2;
}

.hero-product-hunt-fallback-text span {
  color: #536172;
  font-size: 0.76rem;
  line-height: 1.3;
}

.hero-product-hunt-image {
  display: block;
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 0.8rem;
}

.product-hunt-floating-badge {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: grid;
  gap: 0.35rem;
  width: min(100vw - 2rem, 15rem);
  padding: 0.8rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 145, 77, 0.35);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 48px rgba(28, 34, 24, 0.18);
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-hunt-floating-badge:hover,
.product-hunt-floating-badge:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 28px 58px rgba(28, 34, 24, 0.22);
}

.product-hunt-floating-label {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d24d16;
}

.product-hunt-floating-copy {
  color: #22313f;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.product-hunt-floating-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
}

.portal-main {
  min-height: calc(100vh - 4.6rem);
  padding-top: clamp(2.2rem, 6vw, 4.2rem);
  padding-bottom: clamp(2.2rem, 6vw, 4.2rem);
}

.portal-shell {
  width: min(760px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(21, 40, 28, 0.14);
  backdrop-filter: blur(8px);
  padding: clamp(1.2rem, 2.8vw, 2rem);
}

.portal-title {
  margin: 0.9rem 0 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  letter-spacing: -0.03em;
  font-size: clamp(1.7rem, 4.8vw, 2.6rem);
}

.portal-copy {
  margin: 0.9rem 0 0;
  color: #566578;
  line-height: 1.56;
}

.portal-plan-badge {
  margin: 0.72rem 0 0;
  width: fit-content;
  max-width: 100%;
  border: 1px solid #cfe0d3;
  border-radius: 999px;
  background: #f3fbf5;
  color: #214a35;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 0.34rem 0.68rem;
}

.portal-plan-badge.is-paid {
  border-color: #9fd4b3;
  background: #e7f7ee;
  color: #1a603e;
}

.portal-form {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
}

.portal-field {
  display: grid;
  gap: 0.44rem;
}

.portal-field label {
  font-weight: 700;
  color: #213244;
}

.portal-field-label {
  font-weight: 700;
  color: #213244;
}

.portal-segmented {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  width: fit-content;
  border: 1px solid #cedbe8;
  border-radius: 0.76rem;
  background: #edf3f9;
  padding: 0.24rem;
}

.portal-segmented-option {
  position: relative;
  cursor: pointer;
}

.portal-segmented-option input {
  position: absolute;
  opacity: 0;
  inset: 0;
  pointer-events: none;
}

.portal-segmented-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.4rem;
  border: 1px solid transparent;
  border-radius: 0.56rem;
  color: #496176;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.5rem 0.72rem;
  transition: background-color 130ms ease, border-color 130ms ease, color 130ms ease, box-shadow 130ms ease;
}

.portal-segmented-option input:checked+span {
  border-color: #aac5de;
  background: #ffffff;
  color: #1f3348;
  box-shadow: 0 2px 8px rgba(20, 44, 69, 0.12);
}

.portal-segmented-option input:focus-visible+span {
  outline: 2px solid rgba(31, 203, 119, 0.36);
  outline-offset: 1px;
}

.portal-field-note {
  margin: 0;
  color: #637388;
  font-size: 0.85rem;
}

.portal-field input,
.portal-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.72rem 0.78rem;
  font: inherit;
  color: var(--ink);
  background: #ffffff;
}

.portal-field input[type='file'] {
  padding: 0.55rem 0.62rem;
  cursor: pointer;
}

.portal-file-uploader {
  display: grid;
  gap: 0.56rem;
}

.portal-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  opacity: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  pointer-events: none;
}

.portal-dropzone {
  border: 1px dashed #98b4a2;
  border-radius: 0.82rem;
  background: #f8fcf9;
  color: #1f3446;
  display: grid;
  gap: 0.14rem;
  justify-items: center;
  text-align: center;
  padding: 0.82rem 0.86rem;
  cursor: pointer;
  transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.portal-dropzone:hover,
.portal-dropzone:focus-visible,
.portal-dropzone.is-dragover {
  border-color: rgba(31, 203, 119, 0.72);
  background: #ecf9f1;
  box-shadow: 0 0 0 2px rgba(31, 203, 119, 0.16);
  outline: none;
}

.portal-dropzone-title {
  font-size: 0.91rem;
  font-weight: 700;
}

.portal-dropzone-copy {
  color: #5b6d81;
  font-size: 0.8rem;
  font-weight: 600;
}

.portal-file-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.38rem;
}

.portal-file-item {
  border: 1px solid #d5dfd6;
  border-radius: 0.68rem;
  background: #ffffff;
  padding: 0.4rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.54rem;
}

.portal-file-item.is-draggable {
  cursor: grab;
}

.portal-file-item.is-dragging {
  opacity: 0.62;
}

.portal-file-item.is-drop-target {
  border-color: #89bd9f;
  box-shadow: 0 0 0 2px rgba(31, 203, 119, 0.14);
}

.portal-file-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.portal-file-grip {
  border: 1px solid #c9d7e5;
  border-radius: 999px;
  background: #f3f8fd;
  color: #4f667d;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.18rem 0.42rem;
  user-select: none;
}

.portal-file-name {
  color: #2e4254;
  font-size: 0.82rem;
  line-height: 1.3;
  word-break: break-word;
}

.portal-file-remove {
  border: 1px solid #c2d4c7;
  border-radius: 999px;
  background: #f4faf6;
  color: #1f5f3f;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.16rem 0.48rem;
  cursor: pointer;
  flex-shrink: 0;
}

.portal-file-remove:hover,
.portal-file-remove:focus-visible {
  border-color: #9fc4ad;
  background: #e7f6ed;
  outline: none;
}

.portal-file-empty {
  border: 1px dashed #c7d6ca;
  border-radius: 0.68rem;
  background: #fbfdfb;
  color: #66798d;
  font-size: 0.8rem;
  padding: 0.44rem 0.52rem;
}

.portal-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.portal-field input:focus-visible,
.portal-field textarea:focus-visible {
  outline: 2px solid rgba(31, 203, 119, 0.34);
  outline-offset: 1px;
}

.portal-submit {
  width: 100%;
  min-height: 3.1rem;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --portal-progress: 0%;
}

.portal-submit-progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--portal-progress);
  background: rgba(7, 37, 21, 0.2);
  z-index: 0;
  transition: width 220ms ease;
}

.portal-submit-label {
  position: relative;
  z-index: 1;
}

.portal-submit.is-loading {
  cursor: wait;
}

.portal-submit.is-locked {
  background: #d4dde5;
  border-color: #c5d1dc;
  color: #5c7186;
  box-shadow: none;
}

.portal-submit.is-locked .portal-submit-progress {
  display: none;
}

.portal-loading {
  margin: 0.1rem 0 0;
  border: 1px solid #d4e1d8;
  border-radius: 0.84rem;
  background: #f7fcf9;
  padding: 0.7rem 0.78rem;
  display: grid;
  gap: 0.44rem;
}

.portal-loading[hidden] {
  display: none;
}

.portal-loading-title {
  margin: 0;
  color: #1f3446;
  font-size: 0.9rem;
  font-weight: 700;
}

.portal-loading-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.2rem;
}

.portal-loading-step {
  display: flex;
  align-items: center;
  gap: 0.44rem;
  color: #607084;
  font-size: 0.86rem;
  line-height: 1.35;
  transition: color 180ms ease;
}

.portal-loading-step::before {
  content: '\25CB';
  color: #8e9eb0;
  width: 1rem;
  text-align: center;
  flex: 0 0 1rem;
  transition: color 180ms ease;
}

.portal-loading-step.is-active {
  color: #1d5237;
  font-weight: 700;
}

.portal-loading-step.is-active::before {
  content: '...';
  color: #1fa365;
  letter-spacing: -0.08em;
}

.portal-loading-step.is-complete {
  color: #345666;
}

.portal-loading-step.is-complete::before {
  content: '\2713';
  color: #1fa365;
}

.portal-status {
  min-height: 1.2rem;
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  color: #566578;
}

.portal-status.is-error {
  color: #b03232;
}

.launches-main {
  padding-top: clamp(2.1rem, 5.4vw, 3.5rem);
  padding-bottom: clamp(2.4rem, 5.8vw, 4.4rem);
  display: grid;
  gap: 1rem;
}

.launches-start {
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(21, 40, 28, 0.11);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
}

.launches-start-art {
  min-height: 0;
  background: transparent;
  border-right: 0;
  padding: clamp(0.8rem, 2vw, 1rem);
  display: flex;
  align-items: flex-start;
  align-self: start;
}

.launches-art-preview {
  width: 100%;
  max-width: 520px;
  border: 1px solid rgba(189, 203, 219, 0.95);
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(30, 49, 71, 0.1);
  padding: 0.74rem;
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 0.54rem;
}

.launches-art-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.52rem;
}

.launches-art-label,
.launches-art-count {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  color: #46596f;
}

.launches-art-count {
  color: #2a4f38;
}

.launches-art-stage {
  position: relative;
  border: 1px solid #cfdbeb;
  border-radius: 0.92rem;
  background: #edf3fa;
  min-height: 0;
  max-height: min(360px, 48vh);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.launches-art-preview.is-mobile .launches-art-stage {
  width: min(100%, 320px);
  height: auto;
  min-height: 0;
  aspect-ratio: 9 / 19.5;
  max-height: min(72vh, 640px);
  max-width: 100%;
  margin-inline: auto;
}

.launches-art-preview.is-mobile .launches-art-thumbs {
  justify-content: center;
}

.launches-art-primary {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #edf3fa;
}

.launches-art-primary-video {
  background: #0f1b28;
}

.launches-art-primary-remove {
  position: absolute;
  top: 0.42rem;
  right: 0.42rem;
  width: 1.3rem;
  height: 1.3rem;
  border: 1px solid rgba(150, 171, 191, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #2b4258;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  z-index: 3;
}

.launches-art-primary-remove:hover,
.launches-art-primary-remove:focus-visible {
  border-color: #7e9fbe;
  background: #ffffff;
  outline: none;
}

.launches-art-empty {
  margin: 0;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.85rem;
  color: #5b6f84;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
}

.launches-art-empty[role='button'] {
  cursor: pointer;
}

.launches-art-empty[role='button']:focus-visible {
  outline: 2px solid rgba(31, 203, 119, 0.35);
  outline-offset: -2px;
}

.launches-art-icon-badge {
  position: absolute;
  right: 0.42rem;
  bottom: 0.42rem;
  border: 1px solid rgba(145, 171, 195, 0.9);
  border-radius: 0.62rem;
  background: rgba(247, 252, 255, 0.95);
  box-shadow: 0 8px 20px rgba(35, 56, 79, 0.14);
  padding: 0.26rem;
  display: grid;
  justify-items: center;
  gap: 0.12rem;
  min-width: 3.5rem;
  cursor: pointer;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.launches-art-icon-badge:hover,
.launches-art-icon-badge:focus-within {
  border-color: #97b3cf;
  box-shadow: 0 10px 22px rgba(35, 56, 79, 0.18);
  transform: translateY(-1px);
}

.launches-art-icon-badge.is-empty {
  background: rgba(242, 248, 254, 0.97);
}

.launches-art-icon-label {
  font-size: 0.56rem;
  font-weight: 800;
  color: #50657a;
}

.launches-art-icon-image {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 0.5rem;
  border: 1px solid #c7d5e1;
  background: #ffffff;
  object-fit: cover;
}

.launches-art-icon-empty {
  color: #697d91;
  font-size: 0.54rem;
  font-weight: 700;
}

.launches-art-icon-remove {
  position: absolute;
  top: -0.36rem;
  right: -0.36rem;
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid #98aec5;
  border-radius: 999px;
  background: #ffffff;
  color: #334a60;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.launches-art-icon-remove:hover,
.launches-art-icon-remove:focus-visible {
  border-color: #7894b0;
  background: #f4f8fd;
  outline: none;
}

.launches-art-thumbs {
  min-height: 6rem;
  display: flex;
  align-items: stretch;
  gap: 0.44rem;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 0.12rem;
  scroll-snap-type: x proximity;
}

.launches-art-thumb {
  margin: 0;
  border: 1px solid #c9d8e8;
  border-radius: 0.76rem;
  background: #f4f8fc;
  flex: 0 0 clamp(5.8rem, 29%, 7.2rem);
  min-height: 5.2rem;
  aspect-ratio: 4 / 3;
  padding: 0;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  scroll-snap-align: start;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.launches-art-thumb.is-draggable {
  cursor: grab;
}

.launches-art-thumb.is-dragging {
  opacity: 0.62;
}

.launches-art-thumb.is-drop-target {
  border-color: #82a6ca;
  box-shadow: 0 0 0 2px rgba(95, 139, 189, 0.25);
}

.launches-art-thumb-add {
  border-style: dashed;
  color: #4f6780;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f8fbff;
}

.launches-art-thumb.is-active {
  border-color: #89a7c7;
  box-shadow: 0 0 0 2px rgba(99, 136, 179, 0.24);
}

.launches-art-thumb:hover,
.launches-art-thumb:focus-visible {
  transform: translateY(-1px);
  border-color: #9cb8d4;
  outline: none;
}

.launches-art-thumb img,
.launches-art-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.launches-art-thumb video {
  background: #0f1b28;
}

.launches-art-thumb-label {
  position: absolute;
  left: 0.34rem;
  bottom: 0.3rem;
  border-radius: 999px;
  background: rgba(13, 28, 42, 0.72);
  color: #f1f7ff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.16rem 0.38rem;
}

.launches-art-thumb-remove {
  position: absolute;
  top: 0.26rem;
  right: 0.26rem;
  width: 1.06rem;
  height: 1.06rem;
  border: 1px solid rgba(157, 178, 199, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #2f445a;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.launches-art-thumb-remove:hover,
.launches-art-thumb-remove:focus-visible {
  border-color: #86a4c2;
  background: #ffffff;
  outline: none;
}

.launches-art-thumbs-empty {
  margin: 0;
  flex: 1;
  border: 1px dashed #bfcee0;
  border-radius: 0.7rem;
  background: rgba(248, 251, 255, 0.9);
  color: #62778d;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
  padding: 0.54rem 0.58rem;
}

.launches-art-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.36rem;
  min-height: 0.9rem;
}

.launches-art-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  border: 0;
  background: #c4d0dd;
  cursor: pointer;
  transition: transform 130ms ease, background-color 130ms ease;
}

.launches-art-dot.is-active {
  background: #f26d5b;
  transform: scale(1.15);
}

.launches-start-content {
  padding: clamp(1rem, 2.7vw, 1.55rem);
  display: grid;
  align-content: start;
  gap: 0.74rem;
}

.launches-start-title {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(1.75rem, 4.2vw, 2.6rem);
  letter-spacing: -0.03em;
}

.launches-start-copy {
  margin: 0;
  color: #4e5f73;
  line-height: 1.56;
  max-width: 54ch;
}

.launches-start-form {
  margin-top: 0.3rem;
  display: grid;
  gap: 0.55rem;
}

.launches-start-form label {
  font-weight: 700;
  color: #233446;
}

.launches-start-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.72rem 0.78rem;
  font: inherit;
  color: var(--ink);
  background: #ffffff;
}

.launches-start-form input:focus-visible {
  outline: 2px solid rgba(31, 203, 119, 0.34);
  outline-offset: 1px;
}

.launches-start-actions {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.56rem;
}

.launches-start-status {
  margin: 0;
  min-height: 1.2rem;
  color: #50657b;
  font-size: 0.86rem;
  font-weight: 600;
}

.launches-start-status.is-error {
  color: #b03232;
}

.launches-start-steps {
  margin: 0.2rem 0 0;
  padding-left: 1.14rem;
  color: #455a70;
  font-size: 0.9rem;
  line-height: 1.6;
}

.launches-start-steps li {
  transition: color 140ms ease, font-weight 140ms ease;
}

.launches-start-steps li.is-active {
  color: #1f5f3f;
  font-weight: 700;
}

.launches-start-steps li.is-complete {
  color: #355469;
}

.launches-start-steps li+li {
  margin-top: 0.12rem;
}

.launches-carousel {
  margin-top: 0.1rem;
  border-top: 1px solid #dbe5dd;
  padding-top: 0.78rem;
  display: grid;
  gap: 0.76rem;
}

.launches-carousel-form {
  margin-top: 0;
}

.launches-carousel-panel {
  display: none;
  gap: 0.86rem;
}

.launches-carousel-panel.is-active {
  display: grid;
}

.launches-carousel-title {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  letter-spacing: -0.02em;
}

.launches-carousel-copy {
  margin: 0;
  color: #52657a;
  line-height: 1.46;
}

.launches-carousel-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.56rem;
}

.launches-carousel-submit {
  width: auto;
  min-width: 12rem;
}

.launches-history-shell {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 30px rgba(18, 31, 22, 0.08);
  padding: clamp(0.9rem, 2.2vw, 1.2rem);
}

.launches-history-shell .section-head {
  margin-bottom: 1rem;
  text-align: left;
}

.launches-history-shell .section-head h2 {
  margin-top: 0.44rem;
}

.launches-history-copy {
  margin: 0.5rem 0 0;
  color: #56687c;
  max-width: 64ch;
  line-height: 1.48;
}

.launches-signed-out-prompt {
  margin: 0.16rem 0 0.9rem;
  border: 1px dashed #c7d7cb;
  border-radius: 0.78rem;
  background: #fbfdfb;
  color: #52657a;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.68rem 0.74rem;
}

body.dashboard-page .bg-veil-a {
  background: radial-gradient(circle at 10% 12%, rgba(72, 133, 255, 0.18), transparent 58%);
}

body.dashboard-page .bg-veil-b {
  background: radial-gradient(circle at 88% 10%, rgba(84, 163, 255, 0.17), transparent 54%);
}

.dashboard-preview-main {
  padding-top: clamp(2.2rem, 5.8vw, 3.9rem);
  padding-bottom: clamp(2.3rem, 5.9vw, 4.5rem);
}

.dashboard-preview-shell {
  border: 1px solid #c7d9f2;
  border-radius: 1.12rem;
  background:
    linear-gradient(150deg, rgba(241, 248, 255, 0.97), rgba(233, 244, 255, 0.96)),
    radial-gradient(circle at 86% 18%, rgba(114, 174, 255, 0.26), transparent 45%);
  box-shadow: 0 18px 44px rgba(45, 79, 127, 0.15);
  padding: clamp(1rem, 2.8vw, 1.6rem);
}

.dashboard-preview-shell h1 {
  margin: 0.5rem 0 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 4.4vw, 2.7rem);
  letter-spacing: -0.03em;
  color: #12284a;
}

.dashboard-preview-copy {
  margin: 0.66rem 0 0;
  color: #325378;
  max-width: 58ch;
  line-height: 1.55;
}

.dashboard-preview-actions {
  margin-top: 0.9rem;
}

.dashboard-preview-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
  position: relative;
}

.dashboard-preview-grid.is-obscured .dashboard-preview-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.dashboard-preview-grid.is-obscured .dashboard-preview-card>* {
  filter: blur(12px) saturate(0.62);
  opacity: 0.4;
}

.dashboard-preview-grid.is-obscured .dashboard-preview-chart {
  filter: blur(16px) saturate(0.52);
  opacity: 0.32;
}

.dashboard-preview-grid.is-obscured .dashboard-preview-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(241, 247, 255, 0.66), rgba(230, 240, 254, 0.9));
  backdrop-filter: blur(4px);
  pointer-events: none;
  z-index: 2;
}

.dashboard-preview-grid.is-obscured::before {
  content: '';
  position: absolute;
  inset: -0.2rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(237, 245, 255, 0.58), rgba(229, 240, 255, 0.76));
  backdrop-filter: blur(5px);
  pointer-events: none;
  z-index: 4;
}

.dashboard-preview-grid.is-obscured::after {
  content: 'Analytics Preview Hidden';
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(117, 149, 195, 0.46);
  border-radius: 999px;
  background: rgba(245, 250, 255, 0.92);
  color: #335782;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.36rem 0.72rem;
  pointer-events: none;
  z-index: 5;
}

.dashboard-preview-card {
  border: 1px solid rgba(117, 149, 195, 0.34);
  border-radius: 0.92rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.82rem 0.88rem;
  display: grid;
  gap: 0.26rem;
}

.dashboard-preview-card strong {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #14315a;
}

.dashboard-preview-label {
  color: #446487;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dashboard-preview-card small {
  color: #5f7ea2;
  font-size: 0.8rem;
  font-weight: 600;
}

.dashboard-preview-card.is-chart {
  grid-column: span 3;
}

.dashboard-preview-chart {
  margin-top: 0.2rem;
  height: 168px;
  border-radius: 0.82rem;
  border: 1px solid rgba(123, 154, 198, 0.3);
  background:
    linear-gradient(180deg, rgba(99, 157, 255, 0.12), rgba(99, 157, 255, 0.03)),
    repeating-linear-gradient(90deg,
      rgba(82, 122, 174, 0.12) 0 1px,
      transparent 1px 50px),
    repeating-linear-gradient(0deg,
      rgba(82, 122, 174, 0.12) 0 1px,
      transparent 1px 36px);
  position: relative;
  overflow: hidden;
}

.dashboard-preview-chart-area {
  content: '';
  position: absolute;
  inset: 9% 3% 12% 3%;
  background: linear-gradient(180deg, rgba(80, 146, 255, 0.34), rgba(80, 146, 255, 0.08));
  clip-path: polygon(0% 88%, 4% 82%, 8% 68%, 12% 56%, 16% 58%, 20% 64%, 24% 52%, 28% 44%, 32% 47%, 36% 54%, 40% 41%, 44% 36%, 48% 32%, 52% 38%, 56% 35%, 60% 29%, 64% 22%, 68% 26%, 72% 33%, 76% 24%, 80% 18%, 84% 21%, 88% 16%, 92% 13%, 96% 8%, 100% 10%, 100% 100%, 0% 100%);
}

.dashboard-preview-chart-trace {
  position: absolute;
  inset: 10% 3% 14% 3%;
  background:
    linear-gradient(70deg, transparent 0 45%, rgba(70, 142, 255, 0.95) 45% 56%, transparent 56%) 0% 57%/12% 28% no-repeat,
    linear-gradient(-20deg, transparent 0 45%, rgba(70, 142, 255, 0.95) 45% 56%, transparent 56%) 11% 45%/12% 24% no-repeat,
    linear-gradient(34deg, transparent 0 45%, rgba(70, 142, 255, 0.95) 45% 56%, transparent 56%) 22% 38%/12% 22% no-repeat,
    linear-gradient(-36deg, transparent 0 45%, rgba(70, 142, 255, 0.95) 45% 56%, transparent 56%) 33% 30%/12% 20% no-repeat,
    linear-gradient(32deg, transparent 0 45%, rgba(70, 142, 255, 0.95) 45% 56%, transparent 56%) 44% 24%/12% 18% no-repeat,
    linear-gradient(-42deg, transparent 0 45%, rgba(70, 142, 255, 0.95) 45% 56%, transparent 56%) 55% 18%/12% 16% no-repeat,
    linear-gradient(36deg, transparent 0 45%, rgba(70, 142, 255, 0.95) 45% 56%, transparent 56%) 66% 14%/12% 14% no-repeat,
    linear-gradient(-26deg, transparent 0 45%, rgba(70, 142, 255, 0.95) 45% 56%, transparent 56%) 77% 10%/12% 12% no-repeat,
    linear-gradient(16deg, transparent 0 45%, rgba(70, 142, 255, 0.95) 45% 56%, transparent 56%) 88% 8%/12% 12% no-repeat;
  filter: drop-shadow(0 0 7px rgba(74, 142, 255, 0.33));
}

.dashboard-preview-chart-trace.is-secondary {
  inset: 16% 3% 18% 3%;
  opacity: 0.82;
  background:
    linear-gradient(56deg, transparent 0 45%, rgba(118, 191, 255, 0.86) 45% 56%, transparent 56%) 2% 64%/12% 22% no-repeat,
    linear-gradient(-16deg, transparent 0 45%, rgba(118, 191, 255, 0.86) 45% 56%, transparent 56%) 14% 58%/12% 18% no-repeat,
    linear-gradient(26deg, transparent 0 45%, rgba(118, 191, 255, 0.86) 45% 56%, transparent 56%) 26% 54%/12% 15% no-repeat,
    linear-gradient(-30deg, transparent 0 45%, rgba(118, 191, 255, 0.86) 45% 56%, transparent 56%) 38% 47%/12% 14% no-repeat,
    linear-gradient(24deg, transparent 0 45%, rgba(118, 191, 255, 0.86) 45% 56%, transparent 56%) 50% 43%/12% 13% no-repeat,
    linear-gradient(-28deg, transparent 0 45%, rgba(118, 191, 255, 0.86) 45% 56%, transparent 56%) 62% 37%/12% 12% no-repeat,
    linear-gradient(20deg, transparent 0 45%, rgba(118, 191, 255, 0.86) 45% 56%, transparent 56%) 74% 34%/12% 12% no-repeat,
    linear-gradient(-18deg, transparent 0 45%, rgba(118, 191, 255, 0.86) 45% 56%, transparent 56%) 86% 31%/12% 11% no-repeat;
}

.dashboard-preview-chart-points {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 66%, rgba(71, 146, 255, 0.62) 0 4px, transparent 5px),
    radial-gradient(circle at 39% 50%, rgba(71, 146, 255, 0.62) 0 4px, transparent 5px),
    radial-gradient(circle at 56% 38%, rgba(71, 146, 255, 0.62) 0 4px, transparent 5px),
    radial-gradient(circle at 71% 30%, rgba(71, 146, 255, 0.62) 0 4px, transparent 5px),
    radial-gradient(circle at 93% 18%, rgba(71, 146, 255, 0.62) 0 4px, transparent 5px);
  opacity: 0.8;
}

body.profile-page .launches-signed-out-prompt,
body.profile-edit-page .launches-signed-out-prompt {
  margin-bottom: 0;
}

body.profile-page .launches-history-copy,
body.profile-edit-page .launches-history-copy {
  max-width: 58ch;
}

.profile-main {
  padding-top: clamp(2.1rem, 5.4vw, 3.5rem);
  padding-bottom: clamp(2.4rem, 5.8vw, 4.4rem);
}

.profile-shell {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(18, 31, 22, 0.08);
  padding: clamp(0.9rem, 2.2vw, 1.2rem);
}

.profile-content {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.profile-status {
  margin: 0;
  color: #567084;
  font-size: 0.86rem;
  font-weight: 600;
}

.profile-card {
  border: 1px solid #d5ded8;
  border-radius: 0.9rem;
  background: #ffffff;
  padding: 0.85rem;
  display: grid;
  gap: 0.74rem;
}

.profile-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.profile-card-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.profile-avatar-wrap {
  position: relative;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  border: 1px solid #c9d7cb;
  background: #f2f8f3;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar-edit-wrap {
  position: relative;
}

.profile-avatar-edit-button {
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 33, 25, 0.04);
  color: #f2fff7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.26rem;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  cursor: pointer;
  transition: opacity 150ms ease, background-color 150ms ease;
}

.profile-avatar-edit-button:disabled,
.profile-avatar-edit-button.is-busy {
  opacity: 1;
  cursor: progress;
  background: rgba(12, 31, 23, 0.74);
}

.profile-avatar-edit-icon {
  width: 0.88rem;
  height: 0.88rem;
  fill: currentColor;
}

.profile-avatar-edit-wrap:hover .profile-avatar-edit-button,
.profile-avatar-edit-wrap:focus-within .profile-avatar-edit-button {
  opacity: 1;
  background: rgba(16, 34, 25, 0.66);
}

.profile-avatar-edit-button:focus-visible {
  opacity: 1;
  background: rgba(12, 30, 22, 0.74);
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: -2px;
}

.profile-avatar-fallback {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1.44rem;
  font-weight: 700;
  color: #1f4d33;
}

.profile-meta {
  flex: 1;
  min-width: 220px;
}

.profile-username {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  letter-spacing: -0.02em;
  font-size: 1.18rem;
  color: #1d2a39;
}

.profile-contact {
  margin: 0.24rem 0 0;
  color: #5d6f83;
  font-weight: 600;
}

.profile-about-wrap h3 {
  margin: 0;
  font-size: 1rem;
  color: #1f2e3f;
}

.profile-about {
  margin: 0.45rem 0 0;
  color: #4f6379;
  line-height: 1.58;
  white-space: pre-line;
}

.profile-block {
  border: 1px solid #d8e1da;
  border-radius: 0.84rem;
  background: #ffffff;
  padding: 0.8rem;
  display: grid;
  gap: 0.62rem;
}

.profile-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.profile-block-head h3 {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1rem;
  color: #1f2d3d;
}

.profile-launches-count {
  margin: 0;
  color: #5a6d82;
  font-size: 0.84rem;
  font-weight: 700;
}

.profile-plan-summary {
  margin: 0;
  color: #4f6379;
  line-height: 1.55;
}

.profile-plan-status {
  margin: -0.1rem 0 0;
  min-height: 1.2rem;
  color: #50657b;
  font-size: 0.86rem;
  font-weight: 600;
}

.profile-plan-status.is-error {
  color: #b03232;
}

.profile-plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.profile-plan-action {
  min-width: 12rem;
}

.profile-plan-action.is-current {
  border-color: #98cfb0;
  background: #e8f7ee;
  color: #1f5f3f;
}

.profile-product-links-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.profile-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c3d6ca;
  border-radius: 999px;
  background: #f3faf5;
  color: #21563a;
  text-decoration: none;
  padding: 0.35rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 700;
  transition: border-color 150ms ease, background-color 150ms ease;
}

.profile-product-link:hover,
.profile-product-link:focus-visible {
  border-color: #9fbeab;
  background: #e9f4ed;
  outline: none;
}

.profile-edit-main .profile-shell {
  max-width: 920px;
  margin: 0 auto;
}

.profile-edit-content {
  margin-top: 1rem;
}

.profile-edit-form {
  display: grid;
  gap: 0.65rem;
}

.profile-edit-form label {
  font-weight: 700;
  color: #213548;
}

.profile-edit-form input,
.profile-edit-form textarea {
  width: 100%;
  border: 1px solid #ccd9cf;
  border-radius: 0.8rem;
  background: #ffffff;
  color: #223446;
  font: inherit;
  padding: 0.68rem 0.74rem;
}

.profile-edit-form input:focus-visible,
.profile-edit-form textarea:focus-visible {
  outline: 2px solid rgba(31, 203, 119, 0.34);
  outline-offset: 1px;
}

.profile-edit-form textarea {
  min-height: 8.8rem;
  resize: vertical;
}

.profile-edit-hero {
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.86rem;
  flex-wrap: wrap;
}

.profile-edit-hero .profile-avatar-wrap {
  width: 4.6rem;
  height: 4.6rem;
}

.profile-edit-hero-meta {
  display: grid;
  gap: 0.46rem;
}

.profile-edit-contact {
  margin: 0;
  color: #556a7e;
  font-weight: 600;
  font-size: 0.9rem;
}

.profile-edit-links-head {
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.profile-edit-links-head h3 {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1rem;
  color: #1f2d3d;
}

.profile-edit-links-list {
  display: grid;
  gap: 0.55rem;
}

.profile-edit-link-row {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr) auto;
  gap: 0.5rem;
  align-items: center;
}

.profile-edit-link-remove {
  border: 1px solid #d5dbd5;
  border-radius: 999px;
  background: #f8f9f8;
  color: #4f5f72;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.45rem 0.62rem;
  cursor: pointer;
}

.profile-edit-link-remove:hover,
.profile-edit-link-remove:focus-visible {
  border-color: #b8c8bb;
  background: #edf3ee;
  outline: none;
}

.profile-edit-status {
  margin: 0.2rem 0 0;
  min-height: 1.2rem;
  color: #50657b;
  font-size: 0.86rem;
  font-weight: 600;
}

.profile-edit-status.is-error {
  color: #b03232;
}

.profile-edit-actions {
  margin-top: 0.3rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.56rem;
  flex-wrap: wrap;
}

body.launches-page .account-section {
  padding-top: 0;
  padding-bottom: 0;
}

.dashboard-main {
  padding-top: clamp(1.35rem, 3.8vw, 2.5rem);
  padding-bottom: clamp(1.35rem, 3.8vw, 2.5rem);
  font-size: 0.93rem;
}

.dashboard-hero {
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(21, 40, 28, 0.12);
  padding: clamp(0.9rem, 2vw, 1.3rem);
}

.dashboard-title {
  margin: 0.64rem 0 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(1.34rem, 3.3vw, 2rem);
  letter-spacing: -0.03em;
}

.dashboard-copy {
  margin: 0.62rem 0 0;
  color: #4f6073;
  line-height: 1.44;
}

.dashboard-meta {
  margin: 0.64rem 0 0;
  color: #38596b;
  font-size: 0.82rem;
  font-weight: 700;
}

.dashboard-empty {
  margin-top: 1.2rem;
  border: 1px dashed #b5c5b7;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.86);
  padding: 1.2rem;
}

.dashboard-empty h2 {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1.25rem;
}

.dashboard-empty p {
  margin: 0.75rem 0 1rem;
  color: #516175;
}

.dashboard-results {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.72rem;
}

.dashboard-tabs-shell {
  display: grid;
  gap: 0.62rem;
}

.dashboard-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
  overflow-x: auto;
  padding-bottom: 0.1rem;
}

.dashboard-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  border: 1px solid #ccd8cc;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #2f4356;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 0.36rem 0.66rem;
  cursor: pointer;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}

.dashboard-tab-icon {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.61rem;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  background: #607285;
  flex: 0 0 auto;
}

.dashboard-tab-icon.is-reddit {
  background: #ff4500;
}

.dashboard-tab-icon.is-x {
  background: #111111;
}

.dashboard-tab-icon.is-linkedin {
  background: #0a66c2;
}

.dashboard-tab-icon.is-hn {
  background: #ff6600;
}

.dashboard-tab-icon.is-betalist {
  background: #2d8cff;
}

.dashboard-tab-icon.is-github {
  background: #24292f;
}

.dashboard-tab-icon.is-trustmrr {
  background: #1f2732;
}

.dashboard-tab-icon.is-product-hunt {
  background: #da552f;
}

.dashboard-tab-icon.is-search-console {
  background: #1a73e8;
}

.dashboard-tab-icon.is-stores {
  background: #1a8656;
}

.dashboard-tab-icon.is-assets {
  background: #6a56a3;
}

.dashboard-tab-label {
  display: inline-block;
}

.dashboard-tab:hover,
.dashboard-tab:focus-visible {
  background: #f3f7f2;
  border-color: #a9c0b0;
  outline: none;
}

.dashboard-tab.is-active {
  background: #1f2d3c;
  border-color: #1f2d3c;
  color: #f5fbff;
}

.dashboard-tab-panels {
  display: grid;
}

.dashboard-tab-panel {
  min-width: 0;
}

.dashboard-tab-stack {
  display: grid;
  gap: 0.72rem;
}

.dashboard-readiness {
  border: 1px solid var(--line);
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(18, 31, 22, 0.08);
  padding: 0.78rem;
}

.dashboard-readiness h2 {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 0.98rem;
}

.dashboard-readiness-list {
  margin-top: 0.56rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.dashboard-readiness-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.52rem;
  border: 1px solid #dce5d8;
  border-radius: 0.8rem;
  padding: 0.5rem 0.56rem;
}

.dashboard-readiness-item p {
  margin: 0;
  color: #304255;
  font-weight: 700;
  font-size: 0.8rem;
}

.dashboard-readiness-item span {
  border-radius: 999px;
  padding: 0.16rem 0.42rem;
  font-size: 0.67rem;
  font-weight: 700;
}

.dashboard-readiness-item.is-complete span {
  background: #dbf6e6;
  color: #1d6a41;
}

.dashboard-readiness-item.is-missing span {
  background: #ffe7e7;
  color: #b13838;
}

.dashboard-readiness-actions {
  margin-top: 0.56rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
  align-items: center;
}

.dashboard-pack-format {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  border: 1px solid #dce5d8;
  border-radius: 999px;
  background: #ffffff;
  padding: 0.24rem 0.38rem 0.24rem 0.46rem;
}

.dashboard-pack-format span {
  color: #395165;
  font-size: 0.7rem;
  font-weight: 700;
}

.dashboard-pack-format-select {
  border: 1px solid #cfe1d4;
  border-radius: 999px;
  background: #f8fcf9;
  color: #233f2f;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.18rem 0.38rem;
}

.dashboard-readiness-feedback {
  margin: 0.36rem 0 0;
  color: #49617a;
  font-size: 0.76rem;
}

.dashboard-copy-section {
  border: 1px solid var(--line);
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(18, 31, 22, 0.08);
  padding: 0.78rem;
}

.dashboard-copy-section h2 {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 0.98rem;
}

.dashboard-copy-grid {
  margin-top: 0.62rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.54rem;
}

.dashboard-platform-grid {
  margin-top: 0.62rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.54rem;
}

.dashboard-platform-card {
  border: 1px solid #dce5d8;
  border-radius: 0.85rem;
  background: #ffffff;
  padding: 0.58rem;
}

.dashboard-platform-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.dashboard-platform-card h3 {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 0.84rem;
}

.dashboard-platform-card p {
  margin: 0.36rem 0 0;
  color: #4f6073;
  font-size: 0.76rem;
  line-height: 1.36;
  white-space: pre-wrap;
}

.dashboard-platform-actions {
  margin-top: 0.4rem;
  display: flex;
  justify-content: flex-end;
}

.dashboard-copy-block {
  border: 1px solid #dce5d8;
  border-radius: 0.8rem;
  background: #ffffff;
  padding: 0.58rem;
}

.dashboard-copy-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.dashboard-copy-block h4 {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 0.82rem;
}

.dashboard-copy-button {
  border: 1px solid #b8d8c6;
  border-radius: 999px;
  background: #f4fcf8;
  color: #1f5f3f;
  font-size: 0.67rem;
  font-weight: 700;
  padding: 0.18rem 0.46rem;
  cursor: pointer;
}

.dashboard-copy-button:hover,
.dashboard-copy-button:focus-visible {
  background: #dbf6e6;
  border-color: #96c9ad;
}

.dashboard-image-download {
  margin-top: 0.38rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.dashboard-image-download-label {
  display: inline-flex;
  align-items: center;
  gap: 0.26rem;
  color: #4f6378;
  font-size: 0.68rem;
  font-weight: 700;
}

.dashboard-image-format-select {
  border: 1px solid #bfd3c4;
  border-radius: 999px;
  background: #f8fcf9;
  color: #233f2f;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 0.14rem 0.32rem;
}

.dashboard-image-download-status {
  color: #5d7188;
  font-size: 0.66rem;
  font-weight: 700;
}

.dashboard-copy-block p {
  margin: 0.34rem 0 0;
  color: #4f6073;
  font-size: 0.76rem;
  line-height: 1.36;
  white-space: pre-wrap;
}

.dashboard-copy-list {
  margin: 0.34rem 0 0;
  padding-left: 0.9rem;
  color: #4f6073;
  font-size: 0.76rem;
  line-height: 1.36;
}

.dashboard-originals,
.dashboard-variant-group {
  border: 1px solid var(--line);
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(18, 31, 22, 0.08);
  padding: 0.78rem;
}

.dashboard-originals h2,
.dashboard-variant-group h2 {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 0.98rem;
}

.dashboard-originals-list {
  margin: 0.54rem 0 0;
  display: grid;
  gap: 0.42rem;
}

.dashboard-original-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid #dce5d8;
  border-radius: 0.8rem;
  background: #fdfefc;
  padding: 0.5rem 0.58rem;
}

.dashboard-original-item p {
  margin: 0;
  color: #3d4e62;
  font-weight: 600;
  font-size: 0.78rem;
}

.dashboard-original-item a,
.dashboard-variant-card a {
  color: #16663d;
  font-weight: 700;
  text-decoration: none;
}

.dashboard-original-item a:hover,
.dashboard-original-item a:focus-visible,
.dashboard-variant-card a:hover,
.dashboard-variant-card a:focus-visible {
  text-decoration: underline;
}

.dashboard-variant-group+.dashboard-variant-group {
  margin-top: 0.56rem;
}

.dashboard-variant-group-head {
  margin-top: 0.5rem;
  color: #4f6073;
  font-size: 0.8rem;
}

.dashboard-variant-grid {
  margin-top: 0.62rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.54rem;
}

.dashboard-variant-card {
  border: 1px solid #dce5d8;
  border-radius: 0.9rem;
  background: #ffffff;
  overflow: hidden;
  display: grid;
}

.dashboard-variant-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #12231d;
}

.dashboard-variant-card-body {
  padding: 0.54rem;
  display: grid;
  gap: 0.22rem;
}

.dashboard-variant-card h3 {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 0.82rem;
}

.dashboard-variant-card p {
  margin: 0;
  color: #516175;
  font-size: 0.74rem;
  line-height: 1.33;
}

.reddit-tab-intro {
  margin: 0.48rem 0 0;
  color: #45586b;
  font-size: 0.8rem;
  line-height: 1.38;
}

.reddit-compose-grid {
  margin-top: 0.62rem;
  display: grid;
  gap: 0.72rem;
}

.reddit-compose-card {
  border: 1px solid #c6cfdb;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(21, 40, 62, 0.08);
  padding: 0.72rem;
}

.reddit-compose-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.reddit-compose-head h3 {
  margin: 0;
  font-size: clamp(0.96rem, 2.2vw, 1.45rem);
  letter-spacing: -0.02em;
}

.reddit-subreddit-pill {
  margin: 0.56rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  border-radius: 999px;
  background: #e9eef4;
  color: #1f2c3a;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 0.36rem 0.62rem;
}

.reddit-subreddit-logo {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: #223448;
  color: #ffffff;
  font-size: 0.54rem;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.reddit-subreddit-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reddit-subreddit-name {
  display: inline-block;
}

.reddit-compose-modes {
  margin-top: 0.62rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.74rem;
  border-bottom: 1px solid #d4dce7;
}

.reddit-compose-mode-button {
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  color: #5a6d81;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.06rem 0 0.38rem;
}

.reddit-compose-mode-button.is-active {
  color: #1f2e3d;
}

.reddit-compose-mode-button.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 0.19rem;
  border-radius: 999px;
  background: #2d67c4;
}

.reddit-compose-mode-button:hover,
.reddit-compose-mode-button:focus-visible {
  color: #1f2e3d;
  outline: none;
}

.reddit-mode-panel {
  margin-top: 0.46rem;
}

.reddit-text-image-wrap {
  display: grid;
  gap: 0.36rem;
}

.reddit-title-field {
  margin-top: 0.6rem;
  border: 1px solid #c6cfdb;
  border-radius: 1rem;
  background: #ffffff;
  padding: 0.54rem 0.64rem;
}

.reddit-title-field span {
  display: block;
  color: #64778a;
  font-size: 0.68rem;
  font-weight: 800;
}

.reddit-title-field p {
  margin: 0.2rem 0 0;
  color: #202f3f;
  font-size: clamp(0.92rem, 2vw, 1.3rem);
  line-height: 1.16;
}

.reddit-title-counter {
  margin: 0.24rem 0 0;
  text-align: right;
  color: #5f7184;
  font-size: 0.74rem;
  font-weight: 800;
}

.reddit-flair-row {
  margin-top: 0.46rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.reddit-flair-pill {
  border-radius: 999px;
  background: #e9eef4;
  color: #1e2d3d;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.3rem 0.58rem;
}

.reddit-flair-row small {
  color: #5b6d81;
  font-size: 0.7rem;
  font-weight: 800;
}

.reddit-editor {
  margin-top: 0.5rem;
  border: 1px solid #c6cfdb;
  border-radius: 0.88rem;
  overflow: hidden;
  background: #ffffff;
}

.reddit-editor-toolbar {
  border-bottom: 1px solid #d5deea;
  background: #f6f9fc;
  color: #5c6d7f;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.38rem 0.56rem;
}

.reddit-editor p {
  margin: 0;
  color: #28394b;
  font-size: 0.84rem;
  line-height: 1.56;
  white-space: pre-wrap;
  padding: 0.56rem 0.56rem 0.62rem;
  max-height: none;
  overflow: visible;
  word-break: break-word;
}

.reddit-media-preview {
  margin: 0.54rem 0 0;
  border: 1px solid #d0dae6;
  border-radius: 0.78rem;
  overflow: hidden;
  background: #f6f9fc;
}

.reddit-media-preview img {
  display: block;
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}

.reddit-media-preview figcaption {
  margin: 0;
  color: #5b6d80;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.36rem 0.5rem;
  border-top: 1px solid #d6dfea;
}

.reddit-mode-subhead {
  display: grid;
  gap: 0.14rem;
}

.reddit-mode-subhead p {
  margin: 0;
  color: #223447;
  font-size: 0.76rem;
  font-weight: 800;
}

.reddit-mode-subhead small {
  color: #5f7287;
  font-size: 0.67rem;
  line-height: 1.3;
  font-weight: 700;
}

.reddit-mode-input,
.reddit-mode-textarea {
  width: 100%;
  border: 1px solid #c5d2e3;
  border-radius: 0.6rem;
  background: #ffffff;
  color: #21374c;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.36rem 0.46rem;
  font-family: inherit;
}

.reddit-mode-textarea {
  min-height: 4.4rem;
  resize: vertical;
  margin-top: 0.34rem;
}

.reddit-mode-input:focus-visible,
.reddit-mode-textarea:focus-visible {
  outline: 2px solid rgba(45, 103, 196, 0.22);
  outline-offset: 1px;
}

.reddit-mode-actions {
  margin-top: 0.34rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.32rem;
}

.reddit-video-controls {
  margin-top: 0.36rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.32rem;
}

.reddit-video-input {
  max-width: 100%;
  font-size: 0.72rem;
  color: #2a4257;
}

.reddit-video-preview {
  width: 100%;
  margin-top: 0.36rem;
  border: 1px solid #c8d5e5;
  border-radius: 0.7rem;
  max-height: 260px;
  background: #000000;
}

.reddit-link-preview {
  margin-top: 0.36rem;
  border: 1px solid #ccd7e7;
  border-radius: 0.68rem;
  background: #f8fbff;
  padding: 0.42rem 0.5rem;
}

.reddit-link-preview-title {
  margin: 0;
  color: #273a4f;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.27;
}

.reddit-link-preview-url {
  display: inline-block;
  margin-top: 0.24rem;
  color: #265eb0;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  word-break: break-all;
}

.reddit-link-preview-url:hover,
.reddit-link-preview-url:focus-visible {
  text-decoration: underline;
  outline: none;
}

.reddit-link-preview-url.is-disabled {
  color: #607389;
  text-decoration: none;
  cursor: default;
}

.reddit-poll-options {
  margin-top: 0.36rem;
  display: grid;
  gap: 0.32rem;
}

.reddit-poll-option-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.3rem;
  align-items: center;
}

.reddit-mode-note {
  margin: 0.5rem 0 0;
  border: 1px dashed #c8d5e5;
  border-radius: 0.6rem;
  background: #f3f7fc;
  color: #556b82;
  font-size: 0.73rem;
  line-height: 1.3;
  padding: 0.4rem 0.48rem;
}

.reddit-guidance-note {
  margin: 0.52rem 0 0;
  border: 1px solid #d3deea;
  border-radius: 0.64rem;
  background: #f2f6fb;
  color: #43576a;
  font-size: 0.74rem;
  line-height: 1.33;
  padding: 0.42rem 0.5rem;
}

.reddit-draft-actions {
  margin-top: 0.46rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.32rem;
}

.xstudio-tab-intro {
  margin: 0.48rem 0 0;
  color: #45586b;
  font-size: 0.8rem;
  line-height: 1.38;
}

.xstudio-compose-grid {
  margin-top: 0.62rem;
  display: grid;
  gap: 0.72rem;
}

.xstudio-compose-card {
  border: 1px solid #cfd9e6;
  border-radius: 0.98rem;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(24, 37, 52, 0.08);
  padding: 0.72rem;
}

.xstudio-community-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.42rem;
}

.xstudio-community-meta h3 {
  margin: 0;
  color: #1f2f40;
  font-size: clamp(0.94rem, 2vw, 1.28rem);
  letter-spacing: -0.02em;
}

.xstudio-community-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  border-radius: 999px;
  background: #eef3f8;
  color: #223548;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.24rem 0.48rem;
}

.xstudio-community-note {
  margin: 0.44rem 0 0;
  border: 1px solid #d7e1ed;
  border-radius: 0.68rem;
  background: #f6faff;
  color: #465d73;
  font-size: 0.73rem;
  line-height: 1.34;
  padding: 0.4rem 0.5rem;
}

.xstudio-shell {
  margin-top: 0.5rem;
  border: 1px solid #d8e2ef;
  border-radius: 0.92rem;
  background: #ffffff;
  padding: 0.56rem;
}

.xstudio-account-row {
  display: flex;
  align-items: center;
  gap: 0.44rem;
}

.xstudio-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #1c2f44;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.xstudio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xstudio-account-meta {
  min-width: 0;
}

.xstudio-account-name {
  margin: 0;
  color: #1d2d40;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
}

.xstudio-account-handle {
  margin: 0.1rem 0 0;
  color: #64788f;
  font-size: 0.7rem;
  font-weight: 700;
}

.xstudio-more-button {
  margin-left: auto;
  border: none;
  background: transparent;
  color: #627890;
  font-size: 1rem;
  font-weight: 900;
  cursor: default;
  padding: 0.06rem 0.24rem;
}

.xstudio-mode-row {
  margin-top: 0.54rem;
  display: flex;
  gap: 0.46rem;
  border-bottom: 1px solid #dce6f2;
}

.xstudio-mode-button {
  border: none;
  background: transparent;
  color: #5c6f84;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  padding: 0.08rem 0 0.38rem;
}

.xstudio-mode-button.is-active {
  color: #1f2f43;
}

.xstudio-mode-button.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 0.18rem;
  border-radius: 999px;
  background: #1d9bf0;
}

.xstudio-panel {
  margin-top: 0.48rem;
}

.xstudio-compose-box {
  border: 1px solid #d3ddea;
  border-radius: 0.82rem;
  background: #ffffff;
  overflow: hidden;
}

.xstudio-post-text {
  margin: 0;
  color: #18293e;
  font-size: 0.84rem;
  line-height: 1.34;
  white-space: pre-wrap;
  padding: 0.52rem 0.56rem 0;
}

.xstudio-post-tags {
  margin: 0.2rem 0 0;
  color: #1d8de0;
  font-size: 0.79rem;
  font-weight: 700;
  white-space: pre-wrap;
  padding: 0 0.56rem 0.52rem;
}

.xstudio-media {
  margin: 0;
  border-top: 1px solid #dce6f2;
  background: #f5f8fc;
}

.xstudio-media img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}

.xstudio-toolbar {
  margin-top: 0.34rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.46rem;
}

.xstudio-toolbar-tools {
  color: #1b8fe2;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.xstudio-toolbar-counter {
  color: #5f7389;
  font-size: 0.73rem;
  font-weight: 800;
}

.xstudio-toolbar-counter.is-over {
  color: #c13333;
}

.xstudio-thread-list {
  display: grid;
  gap: 0.44rem;
}

.xstudio-thread-item {
  border: 1px solid #d5dfec;
  border-radius: 0.74rem;
  background: #fbfdff;
  padding: 0.42rem 0.48rem;
}

.xstudio-thread-label {
  margin: 0;
  color: #4e637a;
  font-size: 0.69rem;
  font-weight: 800;
}

.xstudio-thread-text {
  margin: 0.22rem 0 0;
  color: #1f3348;
  font-size: 0.79rem;
  line-height: 1.33;
  white-space: pre-wrap;
}

.xstudio-thread-count {
  display: inline-block;
  margin-top: 0.28rem;
  color: #5f7389;
  font-size: 0.68rem;
  font-weight: 800;
}

.xstudio-thread-count.is-over {
  color: #c13333;
}

.xstudio-panel-actions {
  margin-top: 0.36rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.xstudio-card-actions {
  margin-top: 0.44rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.linkedinstudio-tab-intro {
  margin: 0.48rem 0 0;
  color: #45586b;
  font-size: 0.8rem;
  line-height: 1.38;
}

.linkedinstudio-compose-grid {
  margin-top: 0.62rem;
  display: grid;
  gap: 0.72rem;
}

.linkedinstudio-compose-card {
  border: 1px solid #ccd9e9;
  border-radius: 0.98rem;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(18, 35, 58, 0.08);
  padding: 0.72rem;
}

.linkedinstudio-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.42rem;
}

.linkedinstudio-meta h3 {
  margin: 0;
  color: #1f2f40;
  font-size: clamp(0.94rem, 2vw, 1.28rem);
  letter-spacing: -0.02em;
}

.linkedinstudio-audience-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  border-radius: 999px;
  background: #e8f2ff;
  color: #1e4675;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.24rem 0.48rem;
}

.linkedinstudio-note {
  margin: 0.44rem 0 0;
  border: 1px solid #d4e2f3;
  border-radius: 0.68rem;
  background: #f5f9ff;
  color: #456078;
  font-size: 0.73rem;
  line-height: 1.34;
  padding: 0.4rem 0.5rem;
}

.linkedinstudio-shell {
  margin-top: 0.5rem;
  border: 1px solid #d6e2f1;
  border-radius: 0.92rem;
  background: #ffffff;
  padding: 0.56rem;
}

.linkedinstudio-account-row {
  display: flex;
  align-items: center;
  gap: 0.44rem;
}

.linkedinstudio-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #0a66c2;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.linkedinstudio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.linkedinstudio-account-meta {
  min-width: 0;
}

.linkedinstudio-account-name {
  margin: 0;
  color: #162c45;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
}

.linkedinstudio-account-headline {
  margin: 0.1rem 0 0;
  color: #5f748c;
  font-size: 0.7rem;
  font-weight: 700;
}

.linkedinstudio-visibility {
  margin: 0.36rem 0 0;
  color: #4a6078;
  font-size: 0.7rem;
  font-weight: 700;
}

.linkedinstudio-mode-row {
  margin-top: 0.52rem;
  display: flex;
  gap: 0.46rem;
  border-bottom: 1px solid #dce7f4;
}

.linkedinstudio-mode-button {
  border: none;
  background: transparent;
  color: #5c6f84;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  padding: 0.08rem 0 0.38rem;
}

.linkedinstudio-mode-button.is-active {
  color: #1f2f43;
}

.linkedinstudio-mode-button.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 0.18rem;
  border-radius: 999px;
  background: #0a66c2;
}

.linkedinstudio-panel {
  margin-top: 0.48rem;
}

.linkedinstudio-compose-box {
  border: 1px solid #d3ddea;
  border-radius: 0.82rem;
  background: #ffffff;
  overflow: hidden;
}

.linkedinstudio-post-text {
  margin: 0;
  color: #18293e;
  font-size: 0.83rem;
  line-height: 1.35;
  white-space: pre-wrap;
  padding: 0.52rem 0.56rem;
}

.linkedinstudio-media {
  margin: 0;
  border-top: 1px solid #dce6f2;
  background: #f5f8fc;
}

.linkedinstudio-media img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}

.linkedinstudio-toolbar {
  margin-top: 0.34rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.46rem;
}

.linkedinstudio-toolbar-tools {
  color: #0a66c2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.linkedinstudio-toolbar-counter {
  color: #5f7389;
  font-size: 0.73rem;
  font-weight: 800;
}

.linkedinstudio-toolbar-counter.is-over {
  color: #c13333;
}

.linkedinstudio-poll-card,
.linkedinstudio-document-card {
  border: 1px solid #d5dfec;
  border-radius: 0.74rem;
  background: #fbfdff;
  padding: 0.46rem 0.52rem;
}

.linkedinstudio-poll-question,
.linkedinstudio-document-title {
  margin: 0;
  color: #1f3348;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.33;
}

.linkedinstudio-poll-options {
  margin: 0.34rem 0 0;
  color: #2f4459;
  font-size: 0.76rem;
  line-height: 1.35;
  padding-left: 1rem;
}

.linkedinstudio-poll-options li+li {
  margin-top: 0.14rem;
}

.linkedinstudio-poll-meta,
.linkedinstudio-document-meta {
  margin: 0.36rem 0 0;
  color: #5b718a;
  font-size: 0.7rem;
  line-height: 1.34;
}

.linkedinstudio-document-caption {
  margin: 0.32rem 0 0;
  color: #2a3f56;
  font-size: 0.75rem;
  line-height: 1.35;
  white-space: pre-wrap;
}

.linkedinstudio-panel-actions {
  margin-top: 0.36rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.linkedinstudio-card-actions {
  margin-top: 0.44rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.hnstudio-tab-intro {
  margin: 0.48rem 0 0;
  color: #45586b;
  font-size: 0.8rem;
  line-height: 1.38;
}

.hnstudio-compose-card {
  margin-top: 0.62rem;
  border: 1px solid #d7dde7;
  border-radius: 0.94rem;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(22, 35, 52, 0.08);
  padding: 0.74rem;
}

.hnstudio-compose-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.hnstudio-compose-head h3 {
  margin: 0;
  color: #1f2f40;
  font-size: clamp(0.96rem, 2.2vw, 1.3rem);
  letter-spacing: -0.02em;
}

.hnstudio-note {
  margin: 0.44rem 0 0;
  border: 1px solid #d9e1eb;
  border-radius: 0.68rem;
  background: #f8fbff;
  color: #4d6278;
  font-size: 0.73rem;
  line-height: 1.34;
  padding: 0.42rem 0.5rem;
}

.hnstudio-shell {
  margin-top: 0.52rem;
  border: 1px solid #d8e0ea;
  border-radius: 0.88rem;
  background: #ffffff;
  padding: 0.56rem;
}

.hnstudio-mode-row {
  display: flex;
  gap: 0.46rem;
  border-bottom: 1px solid #dde4ed;
}

.hnstudio-mode-button {
  border: none;
  background: transparent;
  color: #5c6f84;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  padding: 0.08rem 0 0.38rem;
}

.hnstudio-mode-button.is-active {
  color: #1f2f43;
}

.hnstudio-mode-button.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 0.18rem;
  border-radius: 999px;
  background: #ff6600;
}

.hnstudio-panel {
  margin-top: 0.48rem;
}

.hnstudio-field {
  border: 1px solid #d2dbe8;
  border-radius: 0.72rem;
  background: #fbfdff;
  padding: 0.48rem 0.54rem;
}

.hnstudio-field+.hnstudio-field {
  margin-top: 0.44rem;
}

.hnstudio-field span {
  display: block;
  color: #5e7288;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hnstudio-field p {
  margin: 0.2rem 0 0;
  color: #24384d;
  font-size: 0.8rem;
  line-height: 1.35;
  white-space: pre-wrap;
}

.hnstudio-field-title {
  font-weight: 800;
  color: #1e3248;
}

.hnstudio-field small {
  display: block;
  margin-top: 0.18rem;
  text-align: right;
  color: #667b91;
  font-size: 0.67rem;
  font-weight: 700;
}

.hnstudio-field-large p {
  max-height: none;
  overflow: visible;
  line-height: 1.5;
}

.hnstudio-panel-actions {
  margin-top: 0.44rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.hnstudio-checklist {
  margin: 0.58rem 0 0;
  border: 1px solid #d8e0ea;
  border-radius: 0.72rem;
  background: #f9fbff;
  color: #40576d;
  font-size: 0.74rem;
  line-height: 1.35;
  padding: 0.44rem 0.64rem 0.44rem 1.3rem;
}

.hnstudio-checklist li+li {
  margin-top: 0.2rem;
}

.hnstudio-card-actions {
  margin-top: 0.44rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.hnpreview-launch {
  margin-top: 0.62rem;
  border: 1px solid #d7dde7;
  border-radius: 0.94rem;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(22, 35, 52, 0.08);
  overflow: hidden;
}

.hnpreview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.52rem;
  padding: 0.74rem;
}

.hnpreview-head h3 {
  margin: 0;
  color: #1f2f40;
  font-size: clamp(0.96rem, 2.2vw, 1.28rem);
  letter-spacing: -0.02em;
}

.hnpreview-head p {
  margin: 0.22rem 0 0;
  color: #4f6479;
  font-size: 0.74rem;
  line-height: 1.35;
}

.hnpreview-head-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.3rem;
}

.hnpreview-shell {
  border-top: 1px solid #dde4ec;
  background: #f8f7f3;
  padding: 0.62rem;
}

.hnpreview-page {
  border: 1px solid #d6d0c5;
  border-radius: 0.68rem;
  background: #f6f6ef;
  color: #000000;
  font-family: Verdana, Geneva, sans-serif;
  overflow: hidden;
}

.hnpreview-topbar {
  background: #ff6600;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.24rem 0.34rem;
}

.hnpreview-topbar-left {
  display: flex;
  align-items: center;
  gap: 0.32rem;
  min-width: 0;
}

.hnpreview-logo {
  width: 1rem;
  height: 1rem;
  border: 1px solid #ffffff;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.hnpreview-nav,
.hnpreview-account {
  margin: 0;
  color: #000000;
  font-size: 0.72rem;
  line-height: 1.1;
  white-space: nowrap;
}

.hnpreview-account {
  flex-shrink: 0;
}

.hnpreview-content {
  padding: 0.64rem;
}

.hnpreview-welcome h4 {
  margin: 0;
  color: #202020;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.hnpreview-welcome p {
  margin: 0.44rem 0 0;
  color: #2e2e2e;
  font-size: 0.73rem;
  line-height: 1.44;
}

.hnpreview-sandbox {
  margin-top: 0.58rem;
  border: 1px solid #d8d0c2;
  border-radius: 0.58rem;
  background: #fbfaf4;
  padding: 0.52rem;
}

.hnpreview-sandbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.hnpreview-sandbox-head h5 {
  margin: 0;
  color: #222222;
  font-size: 0.74rem;
  font-weight: 700;
}

.hnpreview-mode-buttons {
  display: flex;
  gap: 0.24rem;
}

.hnpreview-mode-button {
  border: 1px solid #d6cebf;
  border-radius: 999px;
  background: #f3f1e8;
  color: #3e3e3e;
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.42rem;
}

.hnpreview-mode-button.is-active {
  border-color: #ff6600;
  background: #fff0e3;
  color: #723715;
}

.hnpreview-panel {
  margin-top: 0.48rem;
}

.hnpreview-itemline {
  margin: 0;
  color: #111111;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.34;
}

.hnpreview-meta {
  margin: 0.18rem 0 0;
  color: #7a7a7a;
  font-size: 0.66rem;
  line-height: 1.28;
}

.hnpreview-body {
  margin: 0.32rem 0 0;
  color: #242424;
  font-size: 0.74rem;
  line-height: 1.42;
  white-space: pre-wrap;
}

.hnpreview-reply {
  margin: 0.3rem 0 0;
  color: #575757;
  font-size: 0.66rem;
  line-height: 1.25;
  text-decoration: underline;
  text-decoration-color: #b8b8b8;
}

.hnpreview-comment-box {
  margin-top: 0.42rem;
  border: 1px solid #b8b8b8;
  background: #ffffff;
  height: 5.2rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0.2rem 0.3rem;
}

.hnpreview-comment-box span {
  color: #8b8b8b;
  font-size: 0.62rem;
  line-height: 1;
}

.hnpreview-fit {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.26rem;
}

.hnpreview-fit li {
  border-radius: 0.4rem;
  font-size: 0.67rem;
  line-height: 1.3;
  padding: 0.24rem 0.34rem;
}

.hnpreview-fit li.is-pass {
  background: #e8f4e6;
  color: #205f2d;
}

.hnpreview-fit li.is-warn {
  background: #fff0e1;
  color: #8f4a16;
}

@media (max-width: 820px) {
  .hnpreview-head {
    flex-direction: column;
  }

  .hnpreview-head-actions {
    justify-content: flex-start;
  }

  .hnpreview-shell {
    padding: 0.5rem;
  }

  .hnpreview-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hnpreview-topbar-left {
    width: 100%;
  }

  .hnpreview-nav {
    overflow-x: auto;
    width: 100%;
    padding-bottom: 0.06rem;
  }

  .hnpreview-sandbox-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.betalist-tab-intro {
  margin: 0.48rem 0 0;
  color: #45586b;
  font-size: 0.8rem;
  line-height: 1.38;
}

.betalist-compose-card {
  margin-top: 0.62rem;
  border: 1px solid #d3dff1;
  border-radius: 0.94rem;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(21, 40, 62, 0.08);
  padding: 0.74rem;
}

.betalist-compose-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.betalist-compose-head h3 {
  margin: 0;
  color: #1f2f40;
  font-size: clamp(0.96rem, 2.2vw, 1.3rem);
  letter-spacing: -0.02em;
}

.betalist-head-actions {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.betalist-note {
  margin: 0.44rem 0 0;
  border: 1px solid #d9e6f8;
  border-radius: 0.68rem;
  background: #f5f9ff;
  color: #4a6077;
  font-size: 0.73rem;
  line-height: 1.34;
  padding: 0.42rem 0.5rem;
}

.betalist-compose-grid {
  margin-top: 0.62rem;
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(240px, 1fr);
  gap: 0.58rem;
}

.betalist-compose-main,
.betalist-compose-side {
  display: grid;
  gap: 0.54rem;
  align-content: start;
}

.betalist-field {
  border: 1px solid #d2dceb;
  border-radius: 0.74rem;
  background: #fbfdff;
  padding: 0.48rem 0.56rem;
}

.betalist-field span {
  display: block;
  color: #5e7288;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.betalist-field p {
  margin: 0.2rem 0 0;
  color: #24384d;
  font-size: 0.8rem;
  line-height: 1.35;
  white-space: pre-wrap;
}

.betalist-field-large p {
  max-height: none;
  overflow: visible;
  line-height: 1.5;
}

.betalist-draft-actions,
.betalist-footer-actions {
  margin-top: 0.44rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.betalist-check-card,
.betalist-media-card {
  border: 1px solid #d6e2f2;
  border-radius: 0.74rem;
  background: #f9fbff;
  padding: 0.52rem;
}

.betalist-check-card h4,
.betalist-media-card h4 {
  margin: 0;
  color: #25384e;
  font-size: 0.76rem;
  font-weight: 800;
}

.betalist-checklist {
  margin: 0.42rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.32rem;
}

.betalist-check-item {
  border: 1px solid #d5dfec;
  border-radius: 0.62rem;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.36rem;
  padding: 0.34rem 0.44rem;
}

.betalist-check-item span {
  color: #384f66;
  font-size: 0.7rem;
  font-weight: 700;
}

.betalist-check-item strong {
  font-size: 0.68rem;
  font-weight: 800;
}

.betalist-check-item.is-pass strong {
  color: #1f7a49;
}

.betalist-check-item.is-warn strong {
  color: #a55a19;
}

.betalist-queue-note {
  margin: 0.42rem 0 0;
  color: #566b82;
  font-size: 0.69rem;
  line-height: 1.35;
}

.betalist-media-card img {
  margin-top: 0.42rem;
  display: block;
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 0.58rem;
  border: 1px solid #d5dfe9;
}

.betalist-media-meta {
  margin: 0.34rem 0 0;
  color: #5f748a;
  font-size: 0.7rem;
  line-height: 1.33;
}

.githubstudio-tab-intro {
  margin: 0.48rem 0 0;
  color: #45586b;
  font-size: 0.8rem;
  line-height: 1.38;
}

.githubstudio-note {
  margin: 0.42rem 0 0;
  border: 1px solid #dae2ec;
  border-radius: 0.68rem;
  background: #f8fbff;
  color: #4d6278;
  font-size: 0.73rem;
  line-height: 1.34;
  padding: 0.42rem 0.5rem;
}

.githubstudio-stack {
  margin-top: 0.58rem;
  display: grid;
  gap: 0.58rem;
}

.githubstudio-card {
  border: 1px solid #d7dee7;
  border-radius: 0.94rem;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(22, 35, 52, 0.08);
  padding: 0.72rem;
}

.githubstudio-card h3 {
  margin: 0;
  color: #1f2f40;
  font-size: clamp(0.96rem, 2.2vw, 1.24rem);
  letter-spacing: -0.02em;
}

.githubstudio-field-grid {
  margin-top: 0.56rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem;
}

.githubstudio-field {
  border: 1px solid #d6dfe9;
  border-radius: 0.74rem;
  background: #fbfdff;
  padding: 0.46rem 0.54rem;
}

.githubstudio-field span {
  display: block;
  color: #5e7288;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.githubstudio-field p {
  margin: 0.22rem 0 0;
  color: #25384d;
  font-size: 0.79rem;
  line-height: 1.34;
  white-space: pre-wrap;
}

.githubstudio-field-wide {
  margin-top: 0.52rem;
}

.githubstudio-field-empty {
  margin: 0;
  color: #607386;
  font-size: 0.74rem;
}

.githubstudio-topic-list {
  margin: 0.24rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
}

.githubstudio-topic-list span {
  border: 1px solid #cfdae8;
  border-radius: 999px;
  background: #eef3fa;
  color: #2a4054;
  font-size: 0.67rem;
  font-weight: 800;
  padding: 0.16rem 0.42rem;
}

.githubstudio-readiness {
  margin-top: 0.52rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.githubstudio-readiness-pill {
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.18rem 0.42rem;
}

.githubstudio-readiness-pill.is-ready {
  background: #dbf6e6;
  color: #1d6a41;
}

.githubstudio-readiness-pill.is-missing {
  background: #ffe7e7;
  color: #b13838;
}

.githubstudio-actions {
  margin-top: 0.52rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.githubstudio-readme-preview {
  margin-top: 0.52rem;
  border: 1px solid #d0d7de;
  border-radius: 0.74rem;
  background: #ffffff;
  padding: 0.72rem;
}

.githubstudio-markdown {
  color: #1f2f43;
  font-size: 0.83rem;
  line-height: 1.45;
}

.githubstudio-markdown h1,
.githubstudio-markdown h2,
.githubstudio-markdown h3,
.githubstudio-markdown h4,
.githubstudio-markdown h5,
.githubstudio-markdown h6 {
  margin: 0.7rem 0 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  letter-spacing: -0.02em;
}

.githubstudio-markdown h1 {
  margin-top: 0;
  font-size: 1.2rem;
}

.githubstudio-markdown h2 {
  font-size: 1rem;
  border-bottom: 1px solid #d8dee4;
  padding-bottom: 0.24rem;
}

.githubstudio-markdown h3 {
  font-size: 0.92rem;
}

.githubstudio-markdown p {
  margin: 0.48rem 0 0;
}

.githubstudio-markdown a {
  color: #0969da;
  text-decoration: none;
}

.githubstudio-markdown a:hover,
.githubstudio-markdown a:focus-visible {
  text-decoration: underline;
}

.githubstudio-markdown ul,
.githubstudio-markdown ol {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.githubstudio-markdown li+li {
  margin-top: 0.18rem;
}

.githubstudio-markdown pre {
  margin: 0.52rem 0 0;
  background: #f6f8fa;
  border: 1px solid #d0d7de;
  border-radius: 0.54rem;
  color: #1f2f43;
  padding: 0.5rem;
  font-size: 0.74rem;
  line-height: 1.36;
  overflow-x: auto;
}

.githubstudio-markdown code {
  background: #eef2f6;
  border-radius: 0.26rem;
  padding: 0.1rem 0.24rem;
  font-size: 0.73rem;
}

.githubstudio-markdown pre code {
  background: transparent;
  padding: 0;
}

.githubstudio-markdown blockquote {
  margin: 0.52rem 0 0;
  border-left: 3px solid #d0d7de;
  color: #4f6378;
  padding: 0.2rem 0 0.2rem 0.62rem;
}

.githubstudio-markdown figure {
  margin: 0.6rem 0 0;
}

.githubstudio-markdown img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border: 1px solid #d0d7de;
  border-radius: 0.46rem;
  display: block;
}

.githubstudio-markdown figcaption {
  margin-top: 0.28rem;
  color: #61758a;
  font-size: 0.7rem;
}

.githubstudio-release-notes {
  max-height: none;
  overflow: visible;
  white-space: pre-wrap;
  line-height: 1.5;
}

.githubstudio-checklist {
  margin: 0.52rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
}

.githubstudio-checklist li {
  border: 1px solid #d5dfec;
  border-radius: 0.62rem;
  background: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.32;
  padding: 0.34rem 0.44rem;
}

.githubstudio-checklist li.is-done {
  color: #1f7a49;
  border-color: #b8dec8;
  background: #f3fbf6;
}

.githubstudio-checklist li.is-pending {
  color: #8b5d17;
  border-color: #efd5b0;
  background: #fff9f0;
}

.githubstudio-assets-grid {
  margin-top: 0.54rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.52rem;
}

.githubstudio-asset-card {
  border: 1px solid #d6e2f2;
  border-radius: 0.74rem;
  background: #f9fbff;
  padding: 0.52rem;
}

.githubstudio-asset-card h4 {
  margin: 0;
  color: #25384e;
  font-size: 0.76rem;
  font-weight: 800;
}

.githubstudio-asset-card p {
  margin: 0.34rem 0 0;
  color: #5f748a;
  font-size: 0.7rem;
  line-height: 1.33;
}

.githubstudio-asset-card img {
  margin-top: 0.42rem;
  display: block;
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 0.58rem;
  border: 1px solid #d5dfe9;
}

.githubstudio-screenshot-list {
  margin: 0.42rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.32rem;
}

.githubstudio-screenshot-list li {
  border: 1px solid #d5dfec;
  border-radius: 0.62rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.34rem 0.44rem;
}

.githubstudio-screenshot-list a {
  color: #1f3f62;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.githubstudio-screenshot-list a:hover,
.githubstudio-screenshot-list a:focus-visible {
  text-decoration: underline;
}

.githubstudio-screenshot-list small {
  color: #627890;
  font-size: 0.67rem;
  font-weight: 700;
}

.searchconsole-tab-intro {
  margin: 0.48rem 0 0;
  color: #45586b;
  font-size: 0.8rem;
  line-height: 1.38;
}

.searchconsole-note {
  margin: 0.42rem 0 0;
  border: 1px solid #d7e5fb;
  border-radius: 0.68rem;
  background: #f4f9ff;
  color: #3c628f;
  font-size: 0.73rem;
  line-height: 1.34;
  padding: 0.42rem 0.5rem;
}

.searchconsole-stack {
  margin-top: 0.58rem;
  display: grid;
  gap: 0.58rem;
}

.searchconsole-card {
  border: 1px solid #d3dfef;
  border-radius: 0.94rem;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(22, 35, 52, 0.08);
  padding: 0.72rem;
}

.searchconsole-card h3 {
  margin: 0;
  color: #1f2f40;
  font-size: clamp(0.96rem, 2.2vw, 1.24rem);
  letter-spacing: -0.02em;
}

.searchconsole-property-grid {
  margin-top: 0.56rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem;
}

.searchconsole-field {
  border: 1px solid #d6dfe9;
  border-radius: 0.74rem;
  background: #fbfdff;
  padding: 0.46rem 0.54rem;
}

.searchconsole-field span {
  display: block;
  color: #5e7288;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.searchconsole-field p {
  margin: 0.22rem 0 0;
  color: #25384d;
  font-size: 0.79rem;
  line-height: 1.34;
  white-space: pre-wrap;
}

.searchconsole-robots-preview {
  margin-top: 0.52rem;
  border: 1px solid #d2def0;
  border-radius: 0.72rem;
  background: #f8fbff;
  padding: 0.44rem 0.5rem;
}

.searchconsole-robots-preview span {
  display: block;
  color: #4f647c;
  font-size: 0.68rem;
  font-weight: 800;
}

.searchconsole-robots-preview code {
  display: block;
  margin-top: 0.24rem;
  color: #1f3652;
  font-size: 0.76rem;
  font-weight: 700;
  background: #edf4fe;
  border-radius: 0.42rem;
  padding: 0.22rem 0.34rem;
  overflow-x: auto;
}

.searchconsole-readiness {
  margin-top: 0.52rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.searchconsole-readiness-pill {
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.18rem 0.42rem;
}

.searchconsole-readiness-pill.is-ready {
  background: #dbf6e6;
  color: #1d6a41;
}

.searchconsole-readiness-pill.is-missing {
  background: #ffe7e7;
  color: #b13838;
}

.searchconsole-actions {
  margin-top: 0.52rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.searchconsole-table-wrap {
  margin-top: 0.52rem;
  overflow-x: auto;
}

.searchconsole-table {
  width: 100%;
  min-width: 780px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #d6dfe9;
  border-radius: 0.72rem;
  overflow: hidden;
}

.searchconsole-table th,
.searchconsole-table td {
  border-bottom: 1px solid #e1e7ef;
  padding: 0.5rem 0.56rem;
  text-align: left;
  vertical-align: top;
}

.searchconsole-table thead th {
  background: #f6f9fd;
  color: #394f65;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.searchconsole-table tbody tr:last-child td {
  border-bottom: none;
}

.searchconsole-table td {
  color: #344a60;
  font-size: 0.74rem;
}

.searchconsole-table td:first-child a {
  color: #184c84;
  text-decoration: none;
  font-weight: 700;
}

.searchconsole-table td:first-child a:hover,
.searchconsole-table td:first-child a:focus-visible {
  text-decoration: underline;
}

.searchconsole-table td:first-child small {
  display: block;
  margin-top: 0.16rem;
  color: #5e7288;
  font-size: 0.67rem;
}

.searchconsole-status-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 700;
  padding: 0.16rem 0.4rem;
}

.searchconsole-status-chip.is-good {
  background: #dbf6e6;
  color: #1d6a41;
}

.searchconsole-status-chip.is-warn {
  background: #fff1dc;
  color: #9a5f17;
}

.searchconsole-status-chip.is-neutral {
  background: #edf3fb;
  color: #3b5773;
}

.searchconsole-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.22rem;
}

.searchconsole-summary-grid {
  margin-top: 0.54rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.46rem;
}

.searchconsole-summary-card {
  border: 1px solid #d6e2f2;
  border-radius: 0.72rem;
  background: #f8fbff;
  padding: 0.42rem 0.5rem;
}

.searchconsole-summary-card span {
  display: block;
  color: #5e738a;
  font-size: 0.68rem;
  font-weight: 800;
}

.searchconsole-summary-card strong {
  display: block;
  margin-top: 0.24rem;
  color: #1f3348;
  font-size: 1.02rem;
  font-weight: 900;
}

.searchconsole-issue-list {
  margin: 0.56rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.34rem;
}

.searchconsole-issue-item {
  border: 1px solid #d5dfec;
  border-radius: 0.66rem;
  background: #ffffff;
  display: grid;
  gap: 0.18rem;
  padding: 0.36rem 0.46rem;
}

.searchconsole-issue-item strong {
  color: #2a3f55;
  font-size: 0.74rem;
}

.searchconsole-issue-item span {
  color: #51667d;
  font-size: 0.72rem;
  line-height: 1.33;
}

.searchconsole-issue-item.is-warn {
  border-color: #f0d8b3;
  background: #fff9ef;
}

.searchconsole-issue-item.is-warn strong {
  color: #8b5d17;
}

.searchconsole-issue-item.is-ok {
  border-color: #bfdcc9;
  background: #f3fbf6;
}

.searchconsole-issue-item.is-ok strong {
  color: #1f7a49;
}

.searchconsole-fixes {
  margin-top: 0.56rem;
  border: 1px solid #d7e5fb;
  border-radius: 0.72rem;
  background: #f5f9ff;
  padding: 0.46rem 0.54rem;
}

.searchconsole-fixes h4 {
  margin: 0;
  color: #284d75;
  font-size: 0.74rem;
  font-weight: 800;
}

.searchconsole-fixes ul {
  margin: 0.38rem 0 0;
  padding-left: 1rem;
  color: #405a73;
  font-size: 0.73rem;
  line-height: 1.37;
}

.searchconsole-fixes li+li {
  margin-top: 0.2rem;
}

.searchconsole-performance-grid {
  margin-top: 0.54rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.46rem;
}

.searchconsole-mini-card {
  border: 1px solid #d6e2f2;
  border-radius: 0.72rem;
  background: #f9fbff;
  padding: 0.46rem 0.54rem;
}

.searchconsole-mini-card h4 {
  margin: 0;
  color: #2b4057;
  font-size: 0.74rem;
  font-weight: 800;
}

.searchconsole-keyword-list {
  margin: 0.34rem 0 0;
  padding-left: 0.98rem;
  color: #455b73;
  font-size: 0.74rem;
  line-height: 1.36;
}

.searchconsole-keyword-list li+li {
  margin-top: 0.16rem;
}

.searchconsole-keyword-list a {
  color: #1b4e86;
  text-decoration: none;
  font-weight: 700;
}

.searchconsole-keyword-list a:hover,
.searchconsole-keyword-list a:focus-visible {
  text-decoration: underline;
}

.searchconsole-metrics-grid {
  margin-top: 0.52rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.42rem;
}

.searchconsole-metric {
  border: 1px solid #d6e2f2;
  border-radius: 0.7rem;
  background: #ffffff;
  padding: 0.36rem 0.44rem;
}

.searchconsole-metric span {
  display: block;
  color: #5d7288;
  font-size: 0.67rem;
  font-weight: 800;
}

.searchconsole-metric strong {
  display: block;
  margin-top: 0.22rem;
  color: #2a3f55;
  font-size: 0.92rem;
  font-weight: 900;
}

.trustmrr-tab-intro {
  margin: 0.48rem 0 0;
  color: #45586b;
  font-size: 0.8rem;
  line-height: 1.38;
}

.trustmrr-card {
  margin-top: 0.62rem;
  border: 1px solid #d6dee7;
  border-radius: 0.94rem;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(22, 35, 52, 0.08);
  padding: 0.74rem;
}

.trustmrr-card h3 {
  margin: 0;
  color: #1f2f40;
  font-size: clamp(0.96rem, 2.2vw, 1.3rem);
  letter-spacing: -0.02em;
}

.trustmrr-warning {
  margin: 0.46rem 0 0;
  border: 1px solid #d7e8de;
  border-radius: 0.72rem;
  background: #f3fbf5;
  color: #325247;
  font-size: 0.73rem;
  line-height: 1.35;
  padding: 0.46rem 0.56rem;
}

.trustmrr-note {
  margin: 0.44rem 0 0;
  border: 1px solid #dae2ec;
  border-radius: 0.68rem;
  background: #f8fbff;
  color: #4d6278;
  font-size: 0.73rem;
  line-height: 1.34;
  padding: 0.42rem 0.5rem;
}

.trustmrr-checklist {
  margin: 0.52rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.34rem;
}

.trustmrr-checklist li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.42rem;
  border: 1px solid #d9e4ef;
  border-radius: 0.68rem;
  background: #fbfdff;
  padding: 0.34rem 0.48rem;
  color: #2f4357;
  font-size: 0.73rem;
  line-height: 1.32;
}

.trustmrr-checklist li small {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.1rem 0.44rem;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.trustmrr-checklist li.is-ready small {
  background: rgba(56, 157, 107, 0.14);
  color: #1f7c55;
}

.trustmrr-checklist li.is-missing small {
  background: rgba(227, 137, 48, 0.16);
  color: #915215;
}

.trustmrr-actions {
  margin-top: 0.52rem;
  display: flex;
  justify-content: flex-start;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.trustmrr-field-grid {
  margin-top: 0.58rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
}

.trustmrr-field {
  border: 1px solid #d7e2ee;
  border-radius: 0.72rem;
  background: #f9fbff;
  padding: 0.5rem 0.54rem;
}

.trustmrr-field h4 {
  margin: 0;
  color: #264056;
  font-size: 0.76rem;
  font-weight: 800;
}

.trustmrr-field p {
  margin: 0.34rem 0 0;
  color: #2f455b;
  font-size: 0.74rem;
  line-height: 1.36;
}

.trustmrr-field p.is-empty {
  color: #6a7d90;
}

.trustmrr-field-actions {
  margin-top: 0.42rem;
  display: flex;
  justify-content: flex-start;
}

.trustmrr-steps {
  margin-top: 0.58rem;
  border: 1px solid #d7e2ec;
  border-radius: 0.76rem;
  background: #f8fbff;
  padding: 0.52rem 0.56rem;
}

.trustmrr-steps h4 {
  margin: 0;
  color: #264056;
  font-size: 0.78rem;
  font-weight: 800;
}

.trustmrr-steps ol {
  margin: 0.42rem 0 0;
  padding-left: 1.12rem;
  display: grid;
  gap: 0.28rem;
  color: #31495e;
  font-size: 0.73rem;
  line-height: 1.34;
}

.trustmrr-steps-note {
  margin: 0.46rem 0 0;
  color: #5d6f83;
  font-size: 0.7rem;
  line-height: 1.34;
}

.producthunt-tab-intro {
  margin: 0.48rem 0 0;
  color: #45586b;
  font-size: 0.8rem;
  line-height: 1.38;
}

.producthunt-compose-card {
  margin-top: 0.62rem;
  border: 1px solid #d5deeb;
  border-radius: 0.94rem;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(21, 40, 62, 0.08);
  padding: 0.74rem;
}

.producthunt-compose-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.producthunt-compose-head h3 {
  margin: 0;
  color: #1f2f40;
  font-size: clamp(0.96rem, 2.2vw, 1.36rem);
  letter-spacing: -0.02em;
}

.producthunt-compose-grid {
  margin-top: 0.62rem;
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(240px, 1fr);
  gap: 0.58rem;
}

.producthunt-compose-main,
.producthunt-compose-side {
  display: grid;
  gap: 0.54rem;
  align-content: start;
}

.producthunt-field {
  border: 1px solid #d2dbea;
  border-radius: 0.74rem;
  background: #fbfdff;
  padding: 0.48rem 0.56rem;
}

.producthunt-field span {
  display: block;
  color: #5e7288;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.producthunt-field p {
  margin: 0.2rem 0 0;
  color: #24384d;
  font-size: 0.81rem;
  line-height: 1.34;
  white-space: pre-wrap;
}

.producthunt-field small {
  display: block;
  margin-top: 0.18rem;
  text-align: right;
  color: #667b91;
  font-size: 0.67rem;
  font-weight: 700;
}

.producthunt-field-large p {
  max-height: none;
  overflow: visible;
  line-height: 1.5;
}

.producthunt-topic-list {
  margin-top: 0.26rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.producthunt-topic-list span {
  border: 1px solid #cfdae8;
  border-radius: 999px;
  background: #eef3fa;
  color: #2a4054;
  font-size: 0.67rem;
  font-weight: 800;
  padding: 0.18rem 0.42rem;
}

.producthunt-preview-card,
.producthunt-gallery-card {
  border: 1px solid #d4deea;
  border-radius: 0.74rem;
  background: #f9fbff;
  padding: 0.52rem;
}

.producthunt-preview-card h4,
.producthunt-gallery-card h4 {
  margin: 0;
  color: #25384e;
  font-size: 0.76rem;
  font-weight: 800;
}

.producthunt-preview-name {
  margin: 0.42rem 0 0;
  color: #1d2f44;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.25;
}

.producthunt-preview-tagline {
  margin: 0.22rem 0 0;
  color: #41586f;
  font-size: 0.74rem;
  line-height: 1.32;
}

.producthunt-preview-meta {
  margin: 0.28rem 0 0;
  color: #61758a;
  font-size: 0.67rem;
  line-height: 1.3;
}

.producthunt-gallery-card img {
  display: block;
  width: 100%;
  margin-top: 0.42rem;
  border: 1px solid #d5deeb;
  border-radius: 0.56rem;
  max-height: 170px;
  object-fit: cover;
}

.producthunt-gallery-caption {
  margin: 0.32rem 0 0;
  color: #607386;
  font-size: 0.66rem;
  line-height: 1.3;
}

.producthunt-draft-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.32rem;
}

.producthunt-thumbnail-preview {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  max-height: 180px;
}

.producthunt-gallery-preview-list {
  margin-top: 0.42rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.38rem;
}

.producthunt-gallery-preview-item {
  margin: 0;
}

.producthunt-gallery-preview-item img {
  margin-top: 0;
  max-height: 120px;
}

.producthunt-guide-shell {
  margin-top: 0.62rem;
  border: 1px solid #d5deeb;
  border-radius: 0.94rem;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(21, 40, 62, 0.08);
  padding: 0.74rem;
}

.producthunt-guide-head h3 {
  margin: 0;
  color: #1f2f40;
  font-size: clamp(0.96rem, 2.2vw, 1.24rem);
  letter-spacing: -0.02em;
}

.producthunt-guide-head p {
  margin: 0.28rem 0 0;
  color: #53677e;
  font-size: 0.75rem;
  line-height: 1.35;
}

.producthunt-guide-grid {
  margin-top: 0.62rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 0.58rem;
}

.producthunt-guide-card {
  border: 1px solid #d4deea;
  border-radius: 0.74rem;
  background: #f9fbff;
  padding: 0.52rem;
}

.producthunt-guide-card h4 {
  margin: 0;
  color: #25384e;
  font-size: 0.8rem;
  font-weight: 800;
}

.producthunt-guide-card h5 {
  margin: 0.46rem 0 0;
  color: #334b61;
  font-size: 0.72rem;
  font-weight: 800;
}

.producthunt-guide-group+.producthunt-guide-group {
  margin-top: 0.34rem;
}

.producthunt-guide-list {
  margin: 0.28rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
}

.producthunt-guide-item {
  border: 1px solid #d5dfec;
  border-radius: 0.62rem;
  background: #ffffff;
  padding: 0.34rem 0.44rem;
}

.producthunt-guide-item.is-ready {
  border-color: #b9dec9;
  background: #f3fbf6;
}

.producthunt-guide-item.is-needs {
  border-color: #edd4af;
  background: #fff9f0;
}

.producthunt-guide-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.34rem;
}

.producthunt-guide-item-head strong {
  color: #2d455a;
  font-size: 0.7rem;
  font-weight: 800;
}

.producthunt-guide-item p {
  margin: 0.22rem 0 0;
  color: #4c6277;
  font-size: 0.68rem;
  line-height: 1.35;
}

.producthunt-guide-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.12rem 0.42rem;
}

.producthunt-guide-badge.is-ready {
  color: #1f7a49;
  border: 1px solid #acd5bd;
  background: #e9f8ef;
}

.producthunt-guide-badge.is-needs {
  color: #8b5d17;
  border: 1px solid #e6c999;
  background: #fff3de;
}

.producthunt-guide-badge.is-optional {
  color: #53677f;
  border: 1px solid #cad7e6;
  background: #f1f5fb;
}

.producthunt-tip-list {
  margin: 0.24rem 0 0;
  padding-left: 1.1rem;
  color: #41576e;
  font-size: 0.71rem;
  line-height: 1.38;
}

.producthunt-tip-list li+li {
  margin-top: 0.18rem;
}

.producthunt-guide-actions {
  margin-top: 0.44rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.producthunt-launch-preview {
  margin-top: 0.62rem;
  border: 1px solid #d5deeb;
  border-radius: 0.94rem;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(21, 40, 62, 0.08);
  overflow: hidden;
}

.producthunt-launch-preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.56rem;
  padding: 0.74rem;
}

.producthunt-launch-preview-head h3 {
  margin: 0;
  color: #1f2f40;
  font-size: clamp(0.96rem, 2.2vw, 1.3rem);
  letter-spacing: -0.02em;
}

.producthunt-launch-preview-head p {
  margin: 0.22rem 0 0;
  color: #53677e;
  font-size: 0.75rem;
  line-height: 1.35;
}

.producthunt-launch-preview-actions {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.producthunt-live-shell {
  border-top: 1px solid #e2e8f1;
  background: #f5f5f5;
  padding: 0.66rem;
}

.producthunt-live-browser {
  border: 1px solid #d8dde7;
  border-radius: 0.7rem;
  background: #f0f3f8;
  color: #526378;
  display: flex;
  align-items: center;
  gap: 0.42rem;
  font-family: 'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.34rem 0.46rem;
}

.producthunt-live-browser-dots {
  width: 2.1rem;
  height: 0.46rem;
  background:
    radial-gradient(circle at 0.23rem 0.23rem, #ff6c60 0.21rem, transparent 0.22rem),
    radial-gradient(circle at 0.86rem 0.23rem, #ffc454 0.21rem, transparent 0.22rem),
    radial-gradient(circle at 1.49rem 0.23rem, #3ecc69 0.21rem, transparent 0.22rem);
  flex-shrink: 0;
}

.producthunt-live-browser-address {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.producthunt-live-page {
  margin-top: 0.44rem;
  border: 1px solid #dedede;
  border-radius: 0.78rem;
  background: #ffffff;
  color: #111827;
  font-family: 'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow: hidden;
}

.producthunt-live-site-header {
  border-bottom: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.68rem;
  padding: 0.68rem 0.8rem;
}

.producthunt-live-site-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.56rem;
  min-width: 0;
}

.producthunt-live-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #ff6154;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.producthunt-live-search {
  border-radius: 999px;
  background: #f3f5f8;
  color: #99a2b2;
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1;
  min-width: 8.4rem;
  padding: 0.5rem 0.8rem;
  white-space: nowrap;
}

.producthunt-live-header-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.44rem;
  min-width: 0;
}

.producthunt-live-header-nav-item {
  color: #344054;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.producthunt-live-site-right {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.producthunt-live-submit {
  border: 1px solid #d7deea;
  border-radius: 999px;
  color: #2d3f54;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.46rem 0.78rem;
  white-space: nowrap;
}

.producthunt-live-header-icon {
  width: 1.9rem;
  height: 1.9rem;
  border: 1px solid #d8deea;
  border-radius: 999px;
  color: #74839a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  line-height: 1;
}

.producthunt-live-avatar {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  border: 1px solid #d8deea;
  object-fit: cover;
  flex-shrink: 0;
}

.producthunt-live-avatar.is-fallback {
  background: #1f2937;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
}

.producthunt-live-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  gap: 1rem;
  padding: 0.94rem 0.8rem 0.86rem;
}

.producthunt-live-main {
  display: grid;
  gap: 0.66rem;
  align-content: start;
}

.producthunt-live-product-card {
  padding: 0;
}

.producthunt-live-product-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.66rem;
}

.producthunt-live-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.64rem;
  min-width: 0;
}

.producthunt-live-brand-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.78rem;
  border: 1px solid #dedede;
  object-fit: cover;
  flex-shrink: 0;
}

.producthunt-live-brand-icon.is-fallback {
  background: #111827;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.02rem;
  font-weight: 700;
}

.producthunt-live-brand-copy {
  min-width: 0;
}

.producthunt-live-brand-copy h4 {
  margin: 0;
  color: #101828;
  font-size: 1.72rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.producthunt-live-subtitle {
  margin: 0.2rem 0 0;
  color: #344054;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.3;
}

.producthunt-live-rating {
  margin: 0.36rem 0 0;
  color: #f59e0b;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.producthunt-live-statline {
  margin: 0.18rem 0 0;
  color: #475467;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
}

.producthunt-live-product-actions {
  display: grid;
  justify-items: end;
  gap: 0.38rem;
}

.producthunt-live-badge {
  border-radius: 999px;
  background: #fff7ec;
  color: #b54708;
  font-size: 0.63rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.24rem 0.48rem;
  white-space: nowrap;
}

.producthunt-live-visit {
  border: 1px solid #d0d5dd;
  border-radius: 999px;
  color: #344054;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.52rem 0.9rem;
  white-space: nowrap;
}

.producthunt-live-visit:hover,
.producthunt-live-visit:focus-visible {
  background: #f9fafb;
}

.producthunt-live-topic-line {
  margin: 0.56rem 0 0;
  color: #475467;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.34;
}

.producthunt-live-description {
  margin: 0.44rem 0 0;
  color: #344054;
  font-size: 0.9rem;
  line-height: 1.46;
}

.producthunt-live-see-more {
  display: inline-block;
  margin-top: 0.14rem;
  color: #101828;
  font-size: 0.87rem;
  font-weight: 600;
}

.producthunt-live-tabs {
  margin-top: 0.62rem;
  border-bottom: 1px solid #eaecf0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.46rem;
  padding-bottom: 0.4rem;
}

.producthunt-live-tab {
  color: #475467;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.producthunt-live-tab.is-active {
  border-radius: 999px;
  background: #f2f4f7;
  color: #101828;
  padding: 0.3rem 0.56rem;
}

.producthunt-live-gallery-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.producthunt-live-gallery-card {
  margin: 0;
}

.producthunt-live-gallery-image {
  width: 100%;
  display: block;
  border-radius: 0.74rem;
  border: 1px solid #e2e8f0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.producthunt-live-ask-card {
  border: 1px solid #eaecf0;
  border-radius: 1rem;
  background: #ffffff;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.68rem 0.8rem;
}

.producthunt-live-ask-icon {
  width: 2rem;
  height: 2rem;
  border: 1px solid #d0d5dd;
  border-radius: 0.68rem;
  color: #344054;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
}

.producthunt-live-ask-text {
  margin: 0;
  color: #344054;
  font-size: 0.86rem;
  line-height: 1.36;
}

.producthunt-live-ask-button {
  border: 1px solid #d0d5dd;
  border-radius: 999px;
  color: #344054;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.5rem 0.82rem;
  white-space: nowrap;
}

.producthunt-live-maker-card {
  border: 1px solid #eaecf0;
  border-radius: 0.94rem;
  background: #ffffff;
  padding: 0.68rem 0.8rem;
}

.producthunt-live-maker-card h5 {
  margin: 0;
  color: #101828;
  font-size: 0.82rem;
  font-weight: 700;
}

.producthunt-live-maker-lead {
  margin: 0.32rem 0 0;
  color: #101828;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.34;
}

.producthunt-live-maker-body {
  margin: 0.3rem 0 0;
  color: #475467;
  font-size: 0.82rem;
  line-height: 1.42;
}

.producthunt-live-maker-stats {
  margin: 0.34rem 0 0;
  color: #667085;
  font-size: 0.74rem;
  line-height: 1.3;
}

.producthunt-live-sidebar {
  display: grid;
  gap: 0.68rem;
  align-content: start;
  padding-top: 0.06rem;
}

.producthunt-live-sidebar-card {
  border-radius: 0.4rem;
  padding: 0;
}

.producthunt-live-sidebar-card h5 {
  margin: 0;
  color: #101828;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.2;
}

.producthunt-live-link-list,
.producthunt-live-company-links,
.producthunt-live-detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.56rem;
}

.producthunt-live-sidebar-card h5+ :is(.producthunt-live-link-list, .producthunt-live-company-links, .producthunt-live-detail-list) {
  margin-top: 0.56rem;
}

.producthunt-live-link-list li,
.producthunt-live-company-links li,
.producthunt-live-detail-list li {
  color: #344054;
  font-size: 0.82rem;
  line-height: 1.34;
}

.producthunt-live-company-links li+li,
.producthunt-live-detail-list li+li {
  border-top: 1px solid #f0f2f5;
  padding-top: 0.46rem;
}

.producthunt-live-footnote {
  margin: 0.44rem 0 0;
  color: #667085;
  font-size: 0.7rem;
  line-height: 1.34;
}

@media (max-width: 1300px) {
  .producthunt-live-brand-copy h4 {
    font-size: 1.5rem;
  }

  .producthunt-live-subtitle {
    font-size: 0.92rem;
  }

  .producthunt-live-topic-line,
  .producthunt-live-description {
    font-size: 0.84rem;
  }

  .producthunt-live-sidebar-card h5 {
    font-size: 1rem;
  }

  .producthunt-live-link-list li,
  .producthunt-live-company-links li,
  .producthunt-live-detail-list li {
    font-size: 0.76rem;
  }
}

@media (max-width: 1024px) {
  .producthunt-live-layout {
    grid-template-columns: 1fr;
  }

  .producthunt-live-site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .producthunt-live-site-left,
  .producthunt-live-site-right {
    width: 100%;
  }

  .producthunt-live-site-right {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .producthunt-guide-grid {
    grid-template-columns: 1fr;
  }

  .producthunt-guide-item-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .producthunt-guide-actions {
    justify-content: flex-start;
  }

  .producthunt-gallery-preview-list {
    grid-template-columns: 1fr;
  }

  .producthunt-launch-preview-head {
    flex-direction: column;
  }

  .producthunt-launch-preview-actions {
    justify-content: flex-start;
  }

  .producthunt-live-shell {
    padding: 0.5rem;
  }

  .producthunt-live-search {
    display: none;
  }

  .producthunt-live-header-nav {
    overflow-x: auto;
    padding-bottom: 0.08rem;
    width: 100%;
  }

  .producthunt-live-brand-copy h4 {
    font-size: 1.28rem;
  }

  .producthunt-live-subtitle {
    font-size: 0.84rem;
  }

  .producthunt-live-product-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .producthunt-live-product-actions {
    justify-items: start;
  }

  .producthunt-live-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.56rem;
  }

  .producthunt-live-gallery-row {
    grid-template-columns: 1fr;
  }

  .producthunt-live-ask-card {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}

/* Launch dashboard overhaul */
body.launch-dashboard-page {
  --dash-green: #1fcb77;
  --dash-green-deep: #0ea85f;
  --dash-ink: #101915;
  --dash-ink-soft: #24352c;
  --dash-surface: #ffffff;
  --dash-line: #cfdbd0;
  background:
    radial-gradient(circle at 0% 0%, rgba(31, 203, 119, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(31, 203, 119, 0.08) 0%, transparent 42%),
    #f6faf6;
}

body.launch-dashboard-page::before {
  display: none;
}

body.launch-dashboard-page .bg-veil {
  display: none;
}

body.launch-dashboard-page .container {
  width: min(1260px, calc(100% - 2.6rem));
}

body.launch-dashboard-page .site-header {
  background: rgba(16, 25, 21, 0.95);
  border-bottom: 1px solid rgba(40, 73, 55, 0.95);
}

body.launch-dashboard-page .brand-text {
  color: #f4fff8;
}

body.launch-dashboard-page .brand-badge {
  box-shadow: 0 0 0 1px rgba(31, 203, 119, 0.45);
}

body.launch-dashboard-page .button-secondary {
  background: transparent;
  color: #e7fff1;
  border-color: rgba(31, 203, 119, 0.54);
}

body.launch-dashboard-page .button-secondary:hover,
body.launch-dashboard-page .button-secondary:focus-visible {
  background: rgba(31, 203, 119, 0.2);
  border-color: rgba(31, 203, 119, 0.76);
}

body.launch-dashboard-page .dashboard-main {
  display: grid;
  gap: 1.4rem;
  padding-top: clamp(1.2rem, 2.8vw, 2rem);
  padding-bottom: clamp(1.8rem, 3.2vw, 2.8rem);
}

body.launch-dashboard-page .dashboard-hero {
  border: 1px solid #173324;
  border-radius: 1.35rem;
  background: linear-gradient(126deg, #0f1713 0%, #13211a 58%, #185336 100%);
  box-shadow: 0 22px 46px rgba(6, 16, 10, 0.28);
  padding: clamp(1.25rem, 2.6vw, 2rem);
}

body.launch-dashboard-page .dashboard-hero .eyebrow {
  color: rgba(135, 252, 187, 0.9);
}

body.launch-dashboard-page .dashboard-title {
  margin-top: 0.5rem;
  color: #f4fff8;
  font-size: clamp(1.65rem, 3.2vw, 2.7rem);
  line-height: 1.1;
}

body.launch-dashboard-page .dashboard-copy {
  margin-top: 0.72rem;
  max-width: 68ch;
  color: rgba(229, 241, 235, 0.9);
  font-size: 1rem;
  line-height: 1.55;
}

body.launch-dashboard-page .dashboard-meta {
  margin-top: 0.82rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(133, 241, 181, 0.34);
  border-radius: 999px;
  background: rgba(7, 20, 14, 0.5);
  color: #d4f7df;
  font-size: 0.79rem;
  font-weight: 700;
  padding: 0.34rem 0.72rem;
}

body.launch-dashboard-page .dashboard-results {
  margin-top: 0;
  display: block;
}

body.launch-dashboard-page #readinessPanel {
  display: none;
}

body.launch-dashboard-page .dashboard-command-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  border: 1px solid var(--dash-line);
  border-radius: 1.4rem;
  background: var(--dash-surface);
  overflow: hidden;
  min-height: 720px;
}

body.launch-dashboard-page .dashboard-command-side {
  background: linear-gradient(180deg, #111b16 0%, #13221a 100%);
  color: #d9f4e5;
  padding: 1.15rem;
  display: grid;
  align-content: start;
  gap: 0.88rem;
  border-right: 1px solid rgba(36, 73, 52, 0.9);
}

body.launch-dashboard-page .dashboard-command-head h2 {
  margin: 0.34rem 0 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  color: #f5fff9;
  letter-spacing: -0.02em;
  font-size: 1.48rem;
}

body.launch-dashboard-page .dashboard-command-head p {
  margin: 0.5rem 0 0;
  color: rgba(215, 238, 224, 0.8);
  font-size: 0.86rem;
  line-height: 1.48;
}

body.launch-dashboard-page .dashboard-command-eyebrow {
  margin: 0;
  color: rgba(133, 241, 181, 0.88);
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

body.launch-dashboard-page .dashboard-readiness-rail {
  border: 1px solid rgba(58, 95, 74, 0.96);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
  padding: 0.8rem;
}

body.launch-dashboard-page .dashboard-readiness-rail h2 {
  color: #eefcf4;
  font-size: 0.98rem;
}

body.launch-dashboard-page .dashboard-readiness-rail .dashboard-readiness-list {
  margin-top: 0.54rem;
  grid-template-columns: 1fr;
  gap: 0.42rem;
}

body.launch-dashboard-page .dashboard-readiness-rail .dashboard-readiness-item {
  border: 1px solid rgba(61, 97, 78, 0.85);
  border-radius: 0.75rem;
  background: rgba(12, 27, 20, 0.94);
  padding: 0.42rem 0.5rem;
}

body.launch-dashboard-page .dashboard-readiness-rail .dashboard-readiness-item p {
  color: #d8ecdf;
  font-size: 0.74rem;
}

body.launch-dashboard-page .dashboard-readiness-rail .dashboard-readiness-item span {
  font-size: 0.63rem;
  padding: 0.14rem 0.38rem;
}

body.launch-dashboard-page .dashboard-readiness-rail .dashboard-readiness-item.is-complete span {
  background: rgba(31, 203, 119, 0.18);
  color: #9ff0c3;
}

body.launch-dashboard-page .dashboard-readiness-rail .dashboard-readiness-item.is-missing span {
  background: rgba(255, 126, 126, 0.16);
  color: #ffc0c0;
}

body.launch-dashboard-page .dashboard-readiness-rail .dashboard-readiness-actions {
  margin-top: 0.52rem;
  display: grid;
  gap: 0.4rem;
}

body.launch-dashboard-page .dashboard-readiness-rail .button-primary {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, var(--dash-green), #5ee19f);
  color: #072613;
  border-color: transparent;
  box-shadow: none;
}

body.launch-dashboard-page .dashboard-readiness-rail .button-primary:hover,
body.launch-dashboard-page .dashboard-readiness-rail .button-primary:focus-visible {
  background: linear-gradient(135deg, var(--dash-green-deep), #3bcb86);
  color: #f2fff7;
}

body.launch-dashboard-page .dashboard-readiness-rail .dashboard-pack-format {
  border: 1px solid rgba(62, 95, 78, 0.88);
  border-radius: 0.68rem;
  background: rgba(10, 22, 16, 0.9);
  padding: 0.32rem 0.42rem;
}

body.launch-dashboard-page .dashboard-readiness-rail .dashboard-pack-format span {
  color: #bde9cf;
  font-size: 0.67rem;
}

body.launch-dashboard-page .dashboard-readiness-rail .dashboard-pack-format-select {
  border: 1px solid rgba(80, 132, 102, 0.8);
  border-radius: 0.48rem;
  background: rgba(17, 34, 25, 0.96);
  color: #e6faef;
  font-size: 0.66rem;
}

body.launch-dashboard-page .dashboard-readiness-rail .dashboard-readiness-feedback {
  margin-top: 0.2rem;
  color: #b8dbc8;
  font-size: 0.7rem;
}

body.launch-dashboard-page .dashboard-channel-label {
  margin: 0.2rem 0 0;
  color: rgba(147, 241, 189, 0.85);
  font-size: 0.71rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

body.launch-dashboard-page .dashboard-tabs {
  display: grid;
  gap: 0.4rem;
  overflow: auto;
  padding-right: 0.08rem;
}

body.launch-dashboard-page .dashboard-tab {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.48rem;
  width: 100%;
  border: 1px solid rgba(56, 90, 72, 0.8);
  border-radius: 0.78rem;
  background: rgba(13, 28, 20, 0.9);
  color: #d2ebdd;
  text-align: left;
  padding: 0.46rem 0.52rem;
  font-size: 0.81rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 130ms ease, background-color 130ms ease, color 130ms ease;
}

body.launch-dashboard-page .dashboard-tab:hover,
body.launch-dashboard-page .dashboard-tab:focus-visible {
  border-color: rgba(83, 129, 102, 0.92);
  background: rgba(18, 37, 27, 0.94);
  outline: none;
}

body.launch-dashboard-page .dashboard-tab.is-active {
  border-color: rgba(130, 229, 173, 0.88);
  background: linear-gradient(135deg, rgba(31, 203, 119, 0.28), rgba(22, 58, 40, 0.95));
  color: #f0fff6;
}

body.launch-dashboard-page .dashboard-tab-icon {
  width: 1.06rem;
  height: 1.06rem;
  font-size: 0.58rem;
}

body.launch-dashboard-page .dashboard-tab-index {
  color: rgba(162, 209, 184, 0.78);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

body.launch-dashboard-page .dashboard-command-main {
  display: grid;
  align-content: start;
  gap: 0.82rem;
  background: linear-gradient(180deg, #f8fcf8 0%, #f5faf6 100%);
  padding: 1.05rem 1.1rem 1.2rem;
}

body.launch-dashboard-page .dashboard-panel-head {
  border: 1px solid #d6e0d7;
  border-radius: 1rem;
  background: #ffffff;
  padding: 0.86rem 0.95rem;
}

body.launch-dashboard-page .dashboard-active-eyebrow {
  margin: 0;
  color: #4d7f63;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

body.launch-dashboard-page .dashboard-active-title {
  margin: 0.36rem 0 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  letter-spacing: -0.02em;
  color: #14211a;
  font-size: clamp(1.18rem, 2.3vw, 1.8rem);
}

body.launch-dashboard-page .dashboard-active-copy {
  margin: 0.42rem 0 0;
  color: #4f6357;
  font-size: 0.9rem;
  line-height: 1.45;
}

body.launch-dashboard-page .dashboard-tab-panels {
  display: grid;
  min-width: 0;
}

body.launch-dashboard-page .dashboard-tab-panel {
  min-width: 0;
}

body.launch-dashboard-page .dashboard-tab-stack {
  display: grid;
  gap: 0.82rem;
}

body.launch-dashboard-page .dashboard-copy-section,
body.launch-dashboard-page .dashboard-originals,
body.launch-dashboard-page .dashboard-variant-group,
body.launch-dashboard-page .dashboard-tab-panel :is(.reddit-compose-card,
  .xstudio-compose-card,
  .linkedinstudio-compose-card,
  .hnstudio-compose-card,
  .betalist-compose-card,
  .githubstudio-card,
  .searchconsole-card,
  .searchconsole-summary-card,
  .searchconsole-mini-card,
  .searchconsole-metric,
  .trustmrr-card,
  .producthunt-compose-card,
  .producthunt-launch-preview,
  .producthunt-preview-card,
  .producthunt-gallery-card) {
  border-color: #d7e1d8;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: none;
  padding: 0.9rem;
}

body.launch-dashboard-page .dashboard-copy-section h2,
body.launch-dashboard-page .dashboard-originals h2,
body.launch-dashboard-page .dashboard-variant-group h2 {
  font-size: 1.03rem;
  color: #16241b;
}

body.launch-dashboard-page .dashboard-tab-panel [class$='-tab-intro'] {
  margin-top: 0.58rem;
  color: #53675b;
  font-size: 0.88rem;
  line-height: 1.48;
}

body.launch-dashboard-page .dashboard-copy-grid,
body.launch-dashboard-page .dashboard-platform-grid,
body.launch-dashboard-page .dashboard-variant-grid {
  margin-top: 0.7rem;
  gap: 0.62rem;
}

body.launch-dashboard-page .dashboard-copy-block,
body.launch-dashboard-page .dashboard-platform-card,
body.launch-dashboard-page .dashboard-original-item,
body.launch-dashboard-page .dashboard-variant-card {
  border: 1px solid #dbe5dd;
  border-radius: 0.82rem;
  background: #fbfdfb;
}

body.launch-dashboard-page .dashboard-variant-card img {
  background: #f3f7f3;
}

body.launch-dashboard-page .dashboard-tab-panel [class$='-field'] {
  border-color: #dce5de;
  background: #fcfefc;
}

body.launch-dashboard-page .producthunt-field {
  padding: 0.56rem 0.62rem;
}

body.launch-dashboard-page .producthunt-field p {
  margin-top: 0.24rem;
  font-size: 0.83rem;
  line-height: 1.43;
}

body.launch-dashboard-page .producthunt-field-large p {
  max-height: none;
  overflow: visible;
}

body.launch-dashboard-page .producthunt-topic-list span {
  border-color: #d3ddda;
  background: #edf3ef;
  color: #244033;
}

body.launch-dashboard-page .dashboard-tab-panel :is(.button, .dashboard-copy-button) {
  border-radius: 0.62rem;
  font-size: 0.74rem;
  padding: 0.32rem 0.56rem;
  transform: none;
}

body.launch-dashboard-page .dashboard-tab-panel :is(.button, .dashboard-copy-button):hover,
body.launch-dashboard-page .dashboard-tab-panel :is(.button, .dashboard-copy-button):focus-visible {
  transform: none;
}

body.launch-dashboard-page .hnpreview-launch {
  border-color: #d7e1d8;
  border-radius: 1rem;
  box-shadow: none;
}

body.launch-dashboard-page .hnpreview-shell {
  background: #f6f8f5;
}

body.launch-dashboard-page .dashboard-tab-panel .dashboard-open-platform-button {
  border: 1px solid rgba(16, 137, 78, 0.72);
  border-radius: 0.82rem;
  background: linear-gradient(135deg, #1fcb77 0%, #3bd88e 100%);
  color: #f5fff9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.3rem 0.68rem;
  box-shadow: 0 8px 18px rgba(31, 203, 119, 0.24);
}

body.launch-dashboard-page .dashboard-tab-panel .dashboard-open-platform-button:hover,
body.launch-dashboard-page .dashboard-tab-panel .dashboard-open-platform-button:focus-visible {
  border-color: rgba(12, 114, 65, 0.86);
  background: linear-gradient(135deg, #16b96a 0%, #2ccf83 100%);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(22, 185, 106, 0.28);
}

body.launch-dashboard-page .dashboard-tab-panel .button-primary {
  background: linear-gradient(135deg, var(--dash-green), #56de9a);
  color: #072613;
  border-color: transparent;
  box-shadow: none;
}

body.launch-dashboard-page .dashboard-tab-panel .button-primary:hover,
body.launch-dashboard-page .dashboard-tab-panel .button-primary:focus-visible {
  background: linear-gradient(135deg, var(--dash-green-deep), #3ec988);
  color: #effff5;
}

body.launch-dashboard-page .dashboard-tab-panel .button-secondary {
  background: #f2f7f2;
  color: #203328;
  border-color: #d2ddd3;
}

@media (max-width: 1040px) {
  body.launch-dashboard-page .container {
    width: min(100%, calc(100% - 1.5rem));
  }

  body.launch-dashboard-page .dashboard-command-shell {
    grid-template-columns: 280px minmax(0, 1fr);
  }
}

@media (max-width: 880px) {
  body.launch-dashboard-page .dashboard-command-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.launch-dashboard-page .dashboard-command-side {
    border-right: 0;
    border-bottom: 1px solid rgba(46, 82, 62, 0.84);
  }

  body.launch-dashboard-page .dashboard-tabs {
    display: flex;
    gap: 0.44rem;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  body.launch-dashboard-page .dashboard-tab {
    min-width: 180px;
  }

  body.launch-dashboard-page .dashboard-tab-index {
    display: none;
  }
}

@media (max-width: 640px) {
  body.launch-dashboard-page .container {
    width: min(100%, calc(100% - 1rem));
  }

  body.launch-dashboard-page .dashboard-main {
    gap: 0.88rem;
    padding-top: 0.9rem;
  }

  body.launch-dashboard-page .dashboard-hero {
    border-radius: 1rem;
    padding: 1rem;
  }

  body.launch-dashboard-page .dashboard-meta {
    display: flex;
    border-radius: 0.68rem;
    white-space: normal;
  }

  body.launch-dashboard-page .dashboard-command-side {
    padding: 0.82rem;
  }

  body.launch-dashboard-page .dashboard-command-main {
    padding: 0.78rem;
  }

  body.launch-dashboard-page .dashboard-panel-head {
    padding: 0.74rem;
  }

  body.launch-dashboard-page .dashboard-copy-section,
  body.launch-dashboard-page .dashboard-originals,
  body.launch-dashboard-page .dashboard-variant-group,
  body.launch-dashboard-page .dashboard-tab-panel :is(.reddit-compose-card,
    .xstudio-compose-card,
    .linkedinstudio-compose-card,
    .hnstudio-compose-card,
    .betalist-compose-card,
    .githubstudio-card,
    .searchconsole-card,
    .searchconsole-summary-card,
    .searchconsole-mini-card,
    .searchconsole-metric,
    .trustmrr-card,
    .producthunt-compose-card,
    .producthunt-launch-preview,
    .producthunt-preview-card,
    .producthunt-gallery-card) {
    padding: 0.72rem;
  }
}

.hero-board {
  margin: 2.6rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.board-card {
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
  padding: 1.05rem;
  box-shadow: 0 12px 30px rgba(16, 34, 22, 0.08);
  backdrop-filter: blur(7px);
}

.board-label {
  margin: 0;
  color: #356f4d;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  font-weight: 700;
  text-transform: uppercase;
}

.board-card h3 {
  margin: 0.6rem 0 0.42rem;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1.08rem;
}

.board-card p {
  margin: 0;
  color: #516072;
  line-height: 1.45;
}

.section-head {
  text-align: center;
  margin-bottom: 1.6rem;
}

.section-head h2 {
  margin: 0.8rem 0 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  letter-spacing: -0.03em;
  font-size: clamp(1.65rem, 4.2vw, 2.5rem);
}

.pricing-note {
  margin: 0.8rem 0 0;
  color: #3f4f62;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing-note-subtle {
  margin-top: 0.28rem;
  color: #5f6f84;
  font-size: 0.88rem;
}

.launch-section,
.community-fit-section,
.pricing-section,
.links-section {
  padding-top: 3.2rem;
}

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

.launch-grid article {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface-strong);
  padding: 1.08rem;
  box-shadow: 0 10px 22px rgba(20, 33, 25, 0.06);
}

.launch-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.66rem;
  background: #0e2119;
  color: #e8ffee;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-weight: 700;
}

.launch-grid h3 {
  margin: 0.8rem 0 0.5rem;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1.12rem;
}

.launch-grid p {
  margin: 0;
  color: #526073;
  line-height: 1.5;
}

.community-fit-card {
  border: 1px solid rgba(119, 147, 129, 0.4);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(224, 252, 235, 0.7), rgba(255, 241, 227, 0.72));
  padding: clamp(1.2rem, 2.6vw, 2rem);
  box-shadow: 0 12px 30px rgba(22, 47, 33, 0.1);
}

.community-fit-card h2 {
  margin: 0.8rem 0 0;
  max-width: 20ch;
  font-family: 'Sora', 'Manrope', sans-serif;
  letter-spacing: -0.03em;
  font-size: clamp(1.55rem, 3.7vw, 2.3rem);
}

.community-fit-copy {
  margin: 0.9rem 0 0;
  max-width: 72ch;
  color: #3f5064;
  line-height: 1.56;
}

.community-fit-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1rem;
}

.community-fit-grid article {
  border: 1px solid rgba(121, 148, 132, 0.44);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.84);
  padding: 1rem;
}

.community-fit-grid h3 {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1.06rem;
}

.community-fit-grid ul {
  margin: 0.74rem 0 0;
  padding-left: 1.1rem;
  color: #415267;
  line-height: 1.62;
}

.community-fit-quote {
  display: flex;
  align-items: center;
}

.community-fit-quote p {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  letter-spacing: -0.022em;
  color: #1a2a3a;
  font-size: clamp(1rem, 2.2vw, 1.28rem);
  line-height: 1.5;
}

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

.price-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface-strong);
  padding: 1.2rem;
  box-shadow: 0 10px 22px rgba(26, 44, 31, 0.06);
}

.price-card h3 {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1.24rem;
}

.price {
  margin: 0.88rem 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.price span {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  font-size: 0.96rem;
  color: #607086;
  margin-left: 0.2rem;
}

.price-card ul {
  margin: 0 0 1.1rem;
  padding-left: 1rem;
  color: #4d5d70;
  line-height: 1.6;
}

.price-goal {
  margin: -0.3rem 0 1rem;
  color: #5f6f84;
  font-size: 0.86rem;
  font-weight: 700;
}

.button-purchase-credit {
  width: 100%;
  margin-top: 0.56rem;
}

.price-meta {
  margin: -0.28rem 0 0.9rem;
  color: #5d6c7f;
  font-size: 0.9rem;
  font-weight: 600;
}

.price-note-card {
  margin: -0.3rem 0 1rem;
  color: #5d6c7f;
  font-size: 0.83rem;
  line-height: 1.45;
}

.price-note-card+.price-note-card {
  margin-top: -0.7rem;
}

.featured {
  border-color: rgba(31, 203, 119, 0.62);
  background: linear-gradient(165deg, rgba(222, 254, 235, 0.9), #ffffff);
  box-shadow: 0 14px 34px rgba(18, 95, 54, 0.14);
}

.founder {
  border-color: rgba(255, 142, 59, 0.56);
  background: linear-gradient(165deg, rgba(255, 236, 219, 0.92), #ffffff);
  box-shadow: 0 14px 30px rgba(138, 80, 28, 0.13);
}

.featured-pill {
  margin: 0 0 0.66rem;
  display: inline-flex;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #16663d;
  border: 1px solid rgba(22, 102, 61, 0.28);
  border-radius: 999px;
  padding: 0.25rem 0.56rem;
}

.founder .featured-pill {
  color: #8d4e1d;
  border-color: rgba(141, 78, 29, 0.34);
}

.directory-main {
  padding-top: clamp(2.1rem, 5.2vw, 3.4rem);
  padding-bottom: clamp(2.2rem, 5.6vw, 4rem);
  display: grid;
  gap: 1rem;
}

.directory-hero {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(18, 31, 22, 0.09);
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
}

.directory-title {
  margin: 0.72rem 0 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  letter-spacing: -0.03em;
  font-size: clamp(1.55rem, 4.5vw, 2.35rem);
}

.directory-copy {
  margin: 0.76rem 0 0;
  color: #556679;
  max-width: 62ch;
  line-height: 1.5;
}

.directory-week-controls {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  flex-wrap: wrap;
}

.directory-week-button {
  border: 1px solid #c7d5cb;
  border-radius: 999px;
  background: #f6fbf7;
  color: #204c34;
  font-family: inherit;
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.5rem 0.78rem;
  cursor: pointer;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
}

.directory-week-button:hover,
.directory-week-button:focus-visible {
  border-color: #9fbeac;
  background: #e9f5ed;
  outline: none;
}

.directory-week-button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.directory-week-range {
  margin: 0;
  color: #324659;
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.directory-hero .directory-status {
  margin: 0.82rem 0 0;
}

.directory-leaderboard {
  display: grid;
}

.weekly-directory-list {
  display: grid;
  gap: 0.76rem;
}

.weekly-directory-item {
  border: 1px solid var(--line);
  border-radius: 0.98rem;
  background: var(--surface-strong);
  box-shadow: 0 10px 24px rgba(18, 31, 22, 0.07);
  padding: 0.86rem;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: flex-start;
  gap: 0.82rem;
}

.weekly-directory-rank {
  margin: 0;
  color: #4a5f73;
  font-size: 0.84rem;
  font-weight: 800;
  min-width: 2.05rem;
  text-align: center;
  padding-top: 0.14rem;
}

.weekly-vote-panel {
  width: 2.6rem;
  border: 1px solid #d0ddd3;
  border-radius: 0.78rem;
  background: #f7fcf8;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.18rem;
  padding: 0.24rem 0.2rem;
}

.weekly-vote-button {
  width: 1.78rem;
  height: 1.5rem;
  border: 0;
  border-radius: 0.46rem;
  background: transparent;
  color: #5d7183;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.weekly-vote-button:hover,
.weekly-vote-button:focus-visible {
  background: #e9f3ec;
  color: #224938;
  outline: none;
}

.weekly-vote-button.is-active {
  background: #dcf4e5;
  color: #0f5f3b;
}

.weekly-vote-score {
  margin: 0;
  color: #203246;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.weekly-directory-body {
  min-width: 0;
  display: grid;
  gap: 0.44rem;
}

.weekly-directory-title {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1.03rem;
  line-height: 1.24;
  letter-spacing: -0.018em;
  color: #1e2a38;
}

.weekly-directory-title a {
  color: inherit;
  text-decoration: none;
}

.weekly-directory-title a:hover,
.weekly-directory-title a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.weekly-directory-tagline {
  margin: 0;
  color: #3f5569;
  font-size: 0.91rem;
  font-weight: 700;
}

.weekly-directory-description {
  margin: 0;
  color: #5b6e81;
  font-size: 0.87rem;
  line-height: 1.45;
}

.weekly-directory-meta {
  margin: 0;
  color: #697c8f;
  font-size: 0.78rem;
  font-weight: 600;
}

.weekly-directory-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.08rem;
  border: 1px solid #bfd3c5;
  border-radius: 999px;
  background: #f5fbf7;
  color: #1f5d3c;
  text-decoration: none;
  padding: 0.24rem 0.58rem;
  font-size: 0.79rem;
  font-weight: 700;
}

.weekly-directory-link:hover,
.weekly-directory-link:focus-visible {
  border-color: #93b6a1;
  background: #eaf6ef;
  outline: none;
}

.directory-section {
  padding-top: 0.2rem;
}

.directory-status {
  margin: -0.3rem 0 1rem;
  color: #5f7084;
  font-size: 0.88rem;
  font-weight: 600;
}

.directory-status.is-error {
  color: #9f2d2d;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.92rem;
}

.directory-card {
  border: 1px solid var(--line);
  border-radius: 0.96rem;
  background: var(--surface-strong);
  box-shadow: 0 10px 24px rgba(18, 31, 22, 0.07);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.directory-card-image {
  aspect-ratio: 16 / 9;
  background: #edf3ec;
}

.directory-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.directory-card-body {
  padding: 0.8rem 0.86rem 0.9rem;
  display: grid;
  gap: 0.44rem;
}

.directory-card-badge {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(141, 78, 29, 0.34);
  border-radius: 999px;
  background: rgba(255, 236, 219, 0.92);
  color: #8d4e1d;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.18rem 0.46rem;
}

.directory-card-title {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1rem;
  color: #1f2b39;
  line-height: 1.25;
}

.directory-card-tagline {
  margin: 0;
  color: #495d72;
  font-size: 0.88rem;
  line-height: 1.4;
  font-weight: 600;
}

.directory-card-description {
  margin: 0;
  color: #5a6d81;
  font-size: 0.84rem;
  line-height: 1.45;
}

.directory-card-meta {
  margin: 0;
  color: #6c7e90;
  font-size: 0.77rem;
  font-weight: 600;
}

.directory-card-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.24rem;
  border: 1px solid #bfd3c5;
  border-radius: 999px;
  background: #f5fbf7;
  color: #1f5d3c;
  text-decoration: none;
  padding: 0.24rem 0.58rem;
  font-size: 0.79rem;
  font-weight: 700;
}

.directory-card-link:hover,
.directory-card-link:focus-visible {
  border-color: #93b6a1;
  background: #eaf6ef;
  outline: none;
}

.account-section {
  padding-top: 0.2rem;
  padding-bottom: 3.6rem;
}

.account-shell {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface-strong);
  box-shadow: 0 12px 28px rgba(18, 31, 22, 0.08);
  padding: 1.15rem;
}

.account-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.account-identity {
  min-width: 240px;
  display: grid;
  gap: 0.42rem;
}

.account-user-name {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: #1d2a39;
}

.account-plan-summary {
  margin: 0;
  color: #5b6b7f;
  font-weight: 600;
  font-size: 0.9rem;
}

.account-badges {
  display: flex;
  align-items: center;
  gap: 0.44rem;
  flex-wrap: wrap;
}

.account-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #c8d8cd;
  border-radius: 999px;
  padding: 0.24rem 0.6rem;
  background: #f3fbf5;
  color: #1d5638;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
}

.account-badge.is-paid {
  border-color: #9fd4b3;
  background: #e9f8ee;
  color: #1a603e;
}

.account-badge.is-founder {
  border-color: rgba(141, 78, 29, 0.34);
  background: rgba(255, 236, 219, 0.92);
  color: #8d4e1d;
}

.account-launch-count {
  margin: 0.96rem 0 0.8rem;
  color: #415367;
  font-size: 0.88rem;
  font-weight: 700;
}

.account-error {
  margin: 0 0 0.7rem;
  color: #9f2d2d;
  font-weight: 600;
  font-size: 0.86rem;
}

.account-launch-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.account-launch-item {
  border: 1px solid #d5ded8;
  border-radius: 0.84rem;
  background: #ffffff;
  padding: 0.74rem 0.82rem;
  display: grid;
  gap: 0.44rem;
}

.account-launch-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.55rem;
}

.account-launch-title {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 0.96rem;
  line-height: 1.3;
  color: #1f2b39;
}

.account-launch-date {
  margin: 0;
  color: #5c6f84;
  font-size: 0.78rem;
  white-space: nowrap;
}

.account-launch-tagline {
  margin: 0;
  color: #485a6e;
  font-size: 0.86rem;
  line-height: 1.4;
}

.account-launch-meta {
  margin: 0;
  color: #6a7b8e;
  font-size: 0.76rem;
  font-weight: 700;
}

.account-launch-actions {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.account-launch-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c0d2c6;
  border-radius: 999px;
  background: #f6fbf8;
  color: #1d5c3b;
  padding: 0.25rem 0.58rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 150ms ease, background-color 150ms ease;
}

.account-launch-open:hover,
.account-launch-open:focus-visible {
  border-color: #95b5a1;
  background: #ebf6ef;
  outline: none;
}

.account-empty {
  margin: 0.22rem 0 0;
  border: 1px dashed #c9d8ce;
  border-radius: 0.72rem;
  background: #fbfdfb;
  color: #5e7388;
  padding: 0.66rem 0.7rem;
  font-size: 0.84rem;
}

.links-section {
  padding-bottom: 4.2rem;
}

.external-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.88rem;
}

.external-links a {
  border: 1px solid var(--line);
  border-radius: 0.92rem;
  padding: 0.88rem;
  text-decoration: none;
  color: #1f2a38;
  font-weight: 700;
  text-align: center;
  background: var(--surface-strong);
  box-shadow: 0 10px 24px rgba(18, 31, 22, 0.06);
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.external-links .site-link-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
}

.external-links a:hover,
.external-links a:focus-visible {
  transform: translateY(-2px);
  background: #ecf8ef;
  border-color: rgba(22, 109, 64, 0.36);
  outline: none;
}

.site-footer {
  border-top: 1px solid rgba(214, 223, 209, 0.8);
  background: rgba(250, 251, 247, 0.9);
}

.footer-wrap {
  padding: 2.8rem 0 1.2rem;
  display: grid;
  gap: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem 1.6rem;
}

.footer-column h3 {
  margin: 0 0 0.9rem;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: #1f2a38;
}

.footer-column h3 a {
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.footer-column h3 a:hover,
.footer-column h3 a:focus-visible {
  color: #125e37;
  outline: none;
}

.footer-subheading {
  margin: 0 0 0.65rem;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5e6d7e;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.footer-column a {
  color: #304153;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.4;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #125e37;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  outline: none;
}

.footer-copyright {
  margin: 0;
  color: #566577;
  font-weight: 600;
  font-size: 0.95rem;
  border-top: 1px solid rgba(214, 223, 209, 0.72);
  padding-top: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 620ms ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 80ms;
}

.reveal:nth-child(3) {
  animation-delay: 140ms;
}

.reveal:nth-child(4) {
  animation-delay: 200ms;
}

.reveal:nth-child(5) {
  animation-delay: 250ms;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .site-nav {
    gap: 0.4rem;
  }

  .nav-link,
  .button-nav {
    font-size: 0.9rem;
    padding: 0.5rem 0.76rem;
  }

  .hero-board,
  .launch-grid,
  .pricing-grid,
  .directory-grid,
  .external-links,
  .community-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .launches-start {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  }

  .launches-start-art {
    min-height: 20rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .producthunt-compose-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    min-height: 4rem;
  }

  .brand-text {
    font-size: 1.42rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 1.2rem;
    left: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    display: grid;
    padding: 0.68rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav .button-nav,
  .site-nav .nav-link {
    width: 100%;
    justify-content: center;
  }

  .links-panel {
    position: static;
    width: 100%;
    margin-top: 0.4rem;
    box-shadow: none;
    border-color: rgba(202, 214, 198, 0.86);
    background: #f8fbf5;
  }

  .account-panel {
    position: static;
    width: 100%;
    margin-top: 0.4rem;
    box-shadow: none;
    border-color: rgba(202, 214, 198, 0.86);
    background: #f8fbf5;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .product-hunt-floating-badge {
    right: 0.85rem;
    left: 0.85rem;
    bottom: 0.85rem;
    width: auto;
  }

  .launches-main {
    padding-top: 1.6rem;
    gap: 0.9rem;
  }

  .dashboard-preview-main {
    padding-top: 1.6rem;
  }

  .dashboard-preview-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-preview-card.is-chart {
    grid-column: auto;
  }

  .profile-main {
    padding-top: 1.6rem;
  }

  .profile-shell {
    padding: 0.86rem;
  }

  .profile-card-head {
    align-items: flex-start;
  }

  .profile-meta {
    min-width: 0;
  }

  .launches-start {
    grid-template-columns: 1fr;
  }

  .portal-segmented {
    width: 100%;
  }

  .portal-segmented-option {
    flex: 1;
  }

  .portal-segmented-option span {
    width: 100%;
    min-width: 0;
  }

  .launches-start-art {
    min-height: 0;
    border-bottom: 1px solid rgba(195, 207, 224, 0.72);
    padding: 0.62rem;
  }

  .launches-art-preview {
    max-width: none;
    padding: 0.56rem;
  }

  .launches-art-stage {
    max-height: none;
    min-height: 176px;
  }

  .launches-art-thumbs {
    overflow-x: auto;
  }

  .launches-art-thumb {
    flex-basis: 6rem;
    min-height: 72px;
  }

  .launches-start-content {
    padding: 0.9rem;
  }

  .launches-start-actions .button {
    width: 100%;
  }

  .launches-carousel-actions .button {
    width: 100%;
  }

  .launches-history-shell {
    padding: 0.86rem;
  }

  .profile-edit-link-row {
    grid-template-columns: 1fr;
  }

  .profile-edit-link-remove {
    justify-self: start;
  }

  .profile-edit-actions .button {
    width: 100%;
    justify-content: center;
  }

  .profile-plan-actions .button {
    width: 100%;
    justify-content: center;
  }

  .profile-avatar-edit-button {
    opacity: 1;
    background: rgba(12, 31, 23, 0.56);
  }

  .hero-platform-chip {
    width: 2.05rem;
    height: 2.05rem;
    border-radius: 0.64rem;
  }

  .hero-platform-icon {
    width: 1.3rem;
    height: 1.3rem;
  }

  .portal-main {
    min-height: auto;
    padding-top: 1.6rem;
  }

  .dashboard-variant-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-copy-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-platform-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-readiness-list {
    grid-template-columns: 1fr;
  }

  .dashboard-original-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-tab {
    font-size: 0.74rem;
    padding: 0.34rem 0.58rem;
  }

  .reddit-compose-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .reddit-compose-modes {
    gap: 0.56rem;
  }

  .reddit-compose-mode-button {
    font-size: 0.76rem;
  }

  .reddit-title-field p {
    font-size: 0.94rem;
  }

  .reddit-editor p {
    font-size: 0.82rem;
    max-height: none;
  }

  .reddit-video-preview {
    max-height: 190px;
  }

  .reddit-poll-option-row {
    grid-template-columns: 1fr;
  }

  .xstudio-community-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .xstudio-shell {
    padding: 0.48rem;
  }

  .xstudio-account-row {
    align-items: flex-start;
  }

  .xstudio-post-text {
    font-size: 0.82rem;
  }

  .xstudio-post-tags {
    font-size: 0.76rem;
  }

  .xstudio-media img {
    max-height: 180px;
  }

  .linkedinstudio-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .linkedinstudio-shell {
    padding: 0.48rem;
  }

  .linkedinstudio-account-row {
    align-items: flex-start;
  }

  .linkedinstudio-post-text {
    font-size: 0.81rem;
  }

  .linkedinstudio-media img {
    max-height: 180px;
  }

  .hnstudio-compose-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hnstudio-shell {
    padding: 0.48rem;
  }

  .hnstudio-field p {
    font-size: 0.76rem;
  }

  .hnstudio-field-large p {
    max-height: none;
  }

  .betalist-compose-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .betalist-compose-grid {
    grid-template-columns: 1fr;
  }

  .betalist-field p {
    font-size: 0.76rem;
  }

  .betalist-field-large p {
    max-height: none;
  }

  .githubstudio-field-grid {
    grid-template-columns: 1fr;
  }

  .githubstudio-assets-grid {
    grid-template-columns: 1fr;
  }

  .githubstudio-actions {
    justify-content: flex-start;
  }

  .githubstudio-readme-preview {
    padding: 0.56rem;
  }

  .githubstudio-markdown {
    font-size: 0.79rem;
  }

  .githubstudio-markdown img {
    max-height: 180px;
  }

  .searchconsole-property-grid,
  .searchconsole-summary-grid,
  .searchconsole-performance-grid,
  .searchconsole-metrics-grid {
    grid-template-columns: 1fr;
  }

  .searchconsole-actions {
    justify-content: flex-start;
  }

  .searchconsole-table {
    min-width: 640px;
  }

  .searchconsole-row-actions {
    justify-content: flex-start;
  }

  .trustmrr-field-grid {
    grid-template-columns: 1fr;
  }

  .producthunt-compose-grid {
    grid-template-columns: 1fr;
  }

  .producthunt-guide-grid {
    grid-template-columns: 1fr;
  }

  .producthunt-field p {
    font-size: 0.76rem;
  }

  .producthunt-field-large p {
    max-height: none;
  }

  .producthunt-gallery-preview-list {
    grid-template-columns: 1fr;
  }

  .producthunt-gallery-card img {
    max-height: 140px;
  }

  .hero-board,
  .launch-grid,
  .pricing-grid,
  .directory-grid,
  .external-links,
  .community-fit-grid {
    grid-template-columns: 1fr;
  }

  .account-shell {
    padding: 0.96rem;
  }

  .account-head {
    flex-direction: column;
    align-items: stretch;
  }

  .account-launch-list {
    grid-template-columns: 1fr;
  }

  .account-launch-item-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .directory-week-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
  }

  .directory-week-range {
    grid-column: 1 / -1;
  }

  .directory-week-button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .weekly-directory-item {
    grid-template-columns: auto 1fr;
    gap: 0.62rem;
    padding: 0.72rem;
  }

  .weekly-directory-rank {
    min-width: 1.8rem;
  }

  .weekly-vote-panel {
    width: 2.3rem;
  }

  .weekly-directory-body {
    gap: 0.38rem;
  }

  .footer-wrap {
    padding: 2.1rem 0 1.1rem;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .footer-column h3 {
    margin-bottom: 0.72rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.auth-modal-open,
body.feedback-modal-open {
  overflow: hidden;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

.auth-modal[hidden] {
  display: none;
}

.feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 82;
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

.feedback-modal[hidden] {
  display: none;
}

.feedback-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 25, 0.56);
  backdrop-filter: blur(1px);
}

.feedback-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 30rem);
  background: #ffffff;
  border: 1px solid #d8e0d4;
  border-radius: 1rem;
  box-shadow: 0 24px 60px rgba(14, 28, 21, 0.22);
  padding: 1.4rem 1.3rem 1.2rem;
}

.feedback-close {
  position: absolute;
  top: 0.82rem;
  right: 0.82rem;
  border: none;
  border-radius: 999px;
  width: 1.85rem;
  height: 1.85rem;
  background: #101820;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
  cursor: pointer;
}

.feedback-close-icon {
  width: 0.98rem;
  height: 0.98rem;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
}

.feedback-title {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1.35rem;
  line-height: 1.16;
}

.feedback-subtitle {
  margin: 0.45rem 0 1rem;
  color: #637388;
  font-weight: 600;
  font-size: 0.92rem;
}

.feedback-form {
  display: grid;
  gap: 0.68rem;
}

.feedback-form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #213446;
}

.feedback-form :is(input, textarea, select) {
  width: 100%;
  border: 1px solid #d4dce7;
  border-radius: 0.72rem;
  padding: 0.74rem 0.82rem;
  background: #ffffff;
  color: #192534;
  font-family: inherit;
  font-size: 0.93rem;
}

.feedback-form textarea {
  min-height: 8.6rem;
  resize: vertical;
}

.feedback-form :is(input, textarea, select):focus-visible {
  outline: none;
  border-color: #19b969;
  box-shadow: 0 0 0 3px rgba(31, 203, 119, 0.18);
}

.feedback-status {
  min-height: 1.2rem;
  margin: 0;
  color: #4f5f73;
  font-size: 0.84rem;
  font-weight: 600;
}

.feedback-status.is-error {
  color: #a91e2b;
}

.feedback-actions {
  margin-top: 0.2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.56rem;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 25, 0.56);
  backdrop-filter: blur(1px);
}

.auth-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 27rem);
  background: #ffffff;
  border: 1px solid #d8e0d4;
  border-radius: 1rem;
  box-shadow: 0 24px 60px rgba(14, 28, 21, 0.22);
  padding: 1.6rem 1.5rem 1.3rem;
  text-align: center;
}

.auth-close {
  position: absolute;
  top: 0.82rem;
  right: 0.82rem;
  border: none;
  border-radius: 999px;
  width: 1.85rem;
  height: 1.85rem;
  background: #101820;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
  cursor: pointer;
}

.auth-close-icon {
  width: 0.98rem;
  height: 0.98rem;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
}

.auth-title {
  margin: 0;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 1.5rem;
  line-height: 1.16;
}

.auth-subtitle {
  margin: 0.45rem 0 1.1rem;
  color: #637388;
  font-weight: 600;
  font-size: 0.93rem;
}

.auth-tabs {
  margin: 0 auto 1rem;
  width: fit-content;
  display: inline-flex;
  padding: 0.22rem;
  border-radius: 999px;
  background: #e8ecef;
  gap: 0.24rem;
}

.auth-tab {
  border: 1px solid transparent;
  background: transparent;
  border-radius: 999px;
  min-width: 6.5rem;
  padding: 0.5rem 0.9rem;
  color: #47566a;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.auth-tab.is-active {
  background: #0f1114;
  color: #ffffff;
}

.auth-form {
  display: grid;
  gap: 0.72rem;
  text-align: left;
}

.auth-form[hidden] {
  display: none;
}

.auth-signup-fields {
  display: grid;
  gap: 0.72rem;
  text-align: left;
}

.auth-signup-fields[hidden] {
  display: none;
}

.auth-form input {
  width: 100%;
  border: 1px solid #d4dce7;
  border-radius: 0.72rem;
  padding: 0.76rem 0.86rem;
  color: #192534;
  font-family: inherit;
  font-size: 0.94rem;
}

.auth-form input::placeholder {
  color: #8490a2;
}

.auth-form input:focus-visible {
  outline: none;
  border-color: #19b969;
  box-shadow: 0 0 0 3px rgba(31, 203, 119, 0.18);
}

.auth-link-button {
  justify-self: center;
  margin: -0.18rem 0 0.04rem;
  padding: 0;
  border: none;
  background: transparent;
  color: #617083;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.auth-link-button:hover,
.auth-link-button:focus-visible {
  color: #1f2a38;
}

.auth-submit {
  border: 1px solid transparent;
  border-radius: 0.72rem;
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  color: #0f1f17;
}

.auth-submit-signin {
  background: #8db1e6;
}

.auth-submit-signup {
  background: #83dca8;
}

.auth-submit:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.auth-status {
  min-height: 1.25rem;
  margin: 0.64rem 0 0;
  color: #4f5f73;
  font-size: 0.84rem;
  font-weight: 600;
}

.auth-status.is-error {
  color: #a91e2b;
}

.auth-divider {
  margin: 0.66rem 0 0.72rem;
  display: flex;
  align-items: center;
  gap: 0.66rem;
  color: #7c8899;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #d8e0e8;
}

.auth-provider-list {
  display: grid;
  gap: 0.58rem;
}

.auth-provider-button {
  border: 1px solid #d2dae5;
  border-radius: 0.72rem;
  background: #f5f8fb;
  color: #1f2c3a;
  min-height: 2.75rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.54rem;
  cursor: pointer;
}

.auth-email-button {
  width: 100%;
}

.auth-email-button:focus,
.auth-email-button:focus-visible {
  outline: none;
  box-shadow: none;
}

.auth-email-button[hidden] {
  display: none;
}

.auth-provider-icon {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  border: 1px solid #c7d0dc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0f1114;
  flex: 0 0 1.3rem;
}

.auth-provider-icon svg {
  width: 0.92rem;
  height: 0.92rem;
  display: block;
}

.auth-provider-icon.auth-provider-icon-x svg {
  width: 0.84rem;
  height: 0.84rem;
}

.auth-provider-button:hover,
.auth-provider-button:focus-visible {
  background: #edf2f7;
}

.auth-provider-button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.auth-terms {
  margin: 0.88rem auto 0;
  max-width: 22rem;
  color: #69778a;
  font-size: 0.76rem;
  line-height: 1.45;
}

.auth-terms a {
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .auth-dialog {
    padding: 1.4rem 1rem 1.1rem;
  }

  .feedback-dialog {
    padding: 1.3rem 1rem 1rem;
  }

  .auth-tab {
    min-width: 5.85rem;
    padding-inline: 0.6rem;
  }
}
