:root {
  --cream: #000000;
  --cream-deep: #0a0a0a;
  --ink: #ededed;
  --ink-soft: #8a8a8a;
  --ink-mute: #a1a1a1;
  --green: #0f6a54;
  --green-deep: #0b5342;
  --black: #000000;
  --paper: #fdfbe9;
  --on-accent: #16160f;
  --lav: #e3d3fb;
  --lav-mid: #cdb2f6;
  --lav-deep: #a983ec;
  --orange: #f0623a;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.08);
  --serif: "EB Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}
#product,
#how-it-works,
#pricing,
#faq {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  background: #000;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0;
}

p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

/* ---------- buttons (Resend-style outline) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}
.btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}
.btn--ghost {
  background: transparent;
  border-color: transparent;
  color: var(--ink-mute);
  padding-inline: 10px;
}
.btn--ghost:hover {
  color: #fff;
  background: transparent;
  border-color: transparent;
}
.btn--grad {
  position: relative;
  isolation: isolate;
  z-index: 0;
  border: 1px solid rgba(205, 178, 246, 0.38);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(169, 131, 236, 0.04),
    0 0 12px rgba(169, 131, 236, 0.06);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.btn--grad::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(169, 131, 236, 0.45);
  filter: blur(12px);
  opacity: 0.1;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.btn--grad:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(227, 211, 251, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(169, 131, 236, 0.08),
    0 0 16px rgba(169, 131, 236, 0.1);
}
.btn--grad:hover::after {
  opacity: 0.18;
}
.btn--quiet {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  color: #fff;
  box-shadow: none;
}
.btn--quiet:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}
.btn svg {
  flex: none;
}

/* ---------- nav (Resend floating + frost on scroll) ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 16px 28px;
  pointer-events: none;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    backdrop-filter 0.25s ease,
    -webkit-backdrop-filter 0.25s ease;
}
header.is-scrolled {
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
header nav {
  pointer-events: auto;
}
nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.nav-left {
  justify-self: start;
}
.nav-center {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-self: center;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}
.brand {
  display: flex;
  align-items: center;
  line-height: 0;
}
.brand img {
  display: block;
  height: 28px;
  width: auto;
}
.navlinks {
  display: flex;
  gap: 22px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.navlinks a,
.navlinks span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: inherit;
}
.navlinks a:hover,
.navlinks span:hover {
  color: #fff;
}
.caret {
  width: 8px;
  height: 8px;
  opacity: 0.55;
}
.navdiv {
  display: none;
}

/* ---------- hero (Resend floor + light-ray technique) ---------- */
.hero {
  position: relative;
  min-height: min(100vh, 950px);
  padding: 100px 0 160px;
  text-align: left;
  overflow: hidden;
  background: #000;
}
/* Floor img — same stack as Resend: absolute, h-screen, opacity-80, bottom fade mask */
.hero-floor {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  display: none;
  width: 100%;
  height: 100vh;
  max-width: none;
  margin-inline: auto;
  object-fit: cover;
  object-position: center top;
  user-select: none;
  opacity: 0.8;
  -webkit-mask-image: linear-gradient(to top, transparent 15%, #000 25%);
  mask-image: linear-gradient(to top, transparent 15%, #000 25%);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
/* Light ray img — same mask, pulled up with -top-20 */
.hero-light {
  pointer-events: none;
  position: absolute;
  top: -5rem;
  left: 0;
  right: 0;
  z-index: 0;
  display: none;
  width: 100%;
  height: 100vh;
  max-width: none;
  margin-inline: auto;
  object-fit: cover;
  object-position: center top;
  user-select: none;
  -webkit-mask-image: linear-gradient(to top, transparent 15%, #000 25%);
  mask-image: linear-gradient(to top, transparent 15%, #000 25%);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
@media (min-width: 768px) {
  .hero-floor,
  .hero-light {
    display: block;
  }
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr);
  gap: 40px;
  align-items: center;
  min-height: calc(min(100vh, 950px) - 200px);
}
.hero-copy {
  max-width: 520px;
  padding-top: 24px;
  margin-left: 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12.5px;
  color: var(--ink-mute);
  margin-bottom: 28px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.hero-badge:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.hero-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lav-deep);
  box-shadow: 0 0 10px rgba(169, 131, 236, 0.7);
}
.hero h1 {
  font-size: clamp(3.2rem, 6.5vw, 5.2rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: #fff;
  white-space: normal;
}
.hero-line2 {
  display: inline-block;
  margin-top: 0.12em;
}
.hero-caret {
  display: inline-block;
  width: 0.06em;
  height: 0.78em;
  margin: 0 0 0 0.1em;
  vertical-align: -0.02em;
  background: #fff;
  border-radius: 1px;
  animation: heroCaretBlink 1.05s steps(1) infinite;
  transition:
    opacity 0.22s ease,
    width 0.28s ease,
    margin 0.28s ease;
}
.hero-ghost {
  font-family: var(--serif);
  color: var(--ink-soft);
  font-style: italic;
  font-weight: 400;
  border-radius: 0.08em;
  transition:
    color 0.35s ease,
    background 0.45s ease,
    box-shadow 0.45s ease;
}
.hero h1.is-accepted .hero-caret {
  width: 0;
  margin: 0;
  opacity: 0;
  animation: none;
}
.hero h1.is-accepted .hero-ghost {
  color: inherit;
  font-style: normal;
  font-family: inherit;
}
.hero h1.is-accepted .hero-ghost.is-flash {
  background: rgba(227, 211, 251, 0.28);
  box-shadow: 0 0 0 0.12em rgba(227, 211, 251, 0.28);
}
@keyframes heroCaretBlink {
  50% {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-caret {
    animation: none;
  }
  .hero-caret,
  .hero-ghost {
    transition: none;
  }
}
.hero .sub {
  margin: 24px 0 0;
  max-width: 480px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.55;
  text-wrap: balance;
}
.hero .cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.hero .cta .btn {
  padding: 12px 18px;
  font-size: 14.5px;
}
.hero .cta .btn:not(.btn--grad) {
  border-radius: 8px;
}
.hero .fine {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-soft);
}
.hero-visual {
  position: relative;
  height: min(560px, 62vh);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  margin-left: -48px;
  padding-left: 48px;
  width: calc(100% + 48px);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 42%, transparent 78%),
    linear-gradient(
      180deg,
      transparent 0%,
      #000 18%,
      #000 78%,
      transparent 100%
    );
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 42%, transparent 78%),
    linear-gradient(
      180deg,
      transparent 0%,
      #000 18%,
      #000 78%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.hero-kb {
  --kb-key: 48px;
  --kb-gap: 5px;
  --kb-radius: 10px;
  --kb-border: rgba(255, 255, 255, 0.14);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--kb-gap);
  padding: 28px 0 40px 8px;
}
.kb-row {
  display: flex;
  gap: var(--kb-gap);
  align-items: center;
}
.kb-row--2 {
  padding-left: 0;
}
.kb-key {
  flex: none;
  width: var(--kb-key);
  height: var(--kb-key);
  border-radius: var(--kb-radius);
  border: 1.5px solid var(--kb-border);
  background: transparent;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  color: rgba(237, 237, 237, 0.55);
}
.kb-key--tab {
  width: calc(var(--kb-key) * 1.55);
  color: rgba(237, 237, 237, 0.92);
  border-color: rgba(110, 180, 255, 0.75);
  box-shadow:
    0 0 0 1px rgba(110, 180, 255, 0.2),
    0 0 18px rgba(80, 160, 255, 0.55),
    0 0 42px rgba(80, 160, 255, 0.28);
  animation: tabGlow 2.8s ease-in-out infinite;
}
.kb-key--caps {
  width: calc(var(--kb-key) * 1.85);
  color: rgba(237, 237, 237, 0.45);
}
.kb-key--shift {
  width: calc(var(--kb-key) * 1.85);
  color: rgba(237, 237, 237, 0.4);
}
.kb-key--mod {
  width: calc(var(--kb-key) * 1.15);
  color: rgba(237, 237, 237, 0.35);
}
.kb-key--cmd {
  width: calc(var(--kb-key) * 1.3);
  color: rgba(237, 237, 237, 0.35);
}
.kb-key--space {
  width: calc(var(--kb-key) * 5.2);
  color: rgba(237, 237, 237, 0.3);
}
.kb-key svg {
  width: 18px;
  height: 18px;
  display: block;
}
.kb-key--tab svg {
  width: 20px;
  height: 20px;
}
@keyframes tabGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(110, 180, 255, 0.18),
      0 0 16px rgba(80, 160, 255, 0.45),
      0 0 36px rgba(80, 160, 255, 0.22);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(110, 180, 255, 0.35),
      0 0 24px rgba(80, 160, 255, 0.7),
      0 0 52px rgba(80, 160, 255, 0.38);
  }
}
@media (prefers-reduced-motion: reduce) {
  .kb-key--tab {
    animation: none;
  }
}

.tabkey {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  background: var(--paper);
  border: 1.6px solid var(--on-accent);
  border-radius: 12px;
  box-shadow: 0 3px 0 var(--on-accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--on-accent);
}
.tabglyph {
  font-size: 15px;
  opacity: 0.5;
}
.caretbar {
  display: inline-block;
  vertical-align: -3px;
  width: 2px;
  height: 17px;
  background: var(--on-accent);
  animation: blink 1.05s steps(1) infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* ---------- kitchen: mac-window logo tabs ---------- */
.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.kitchen {
  padding: 48px 0 96px;
}
.kitchen-stage {
  width: min(1080px, 100%);
  margin: 0 auto;
}
.kitchen-window {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(
      42% 10% at 50% 0%,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(180deg, #101010 0%, rgba(0, 0, 0, 0.8) 100%);
  box-shadow: none;
  overflow: hidden;
  text-align: left;
  -webkit-mask-image: linear-gradient(to bottom, #000 58%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 58%, transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.kitchen-glow {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: min(600px, 70%);
  height: 1px;
  transform: translateX(-50%);
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.85) 50%,
    transparent 100%
  );
}
.kitchen-glow::before,
.kitchen-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.kitchen-glow::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    #fff 50%,
    transparent 100%
  );
  filter: blur(3px);
}
.kitchen-glow::after {
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--lav-mid) 50%,
    transparent 100%
  );
  filter: blur(0.5px);
}
.kitchen-tb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  flex: none;
  padding: 14px 14px 0 12px;
  min-height: 64px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.kitchen-lights {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: none;
  padding-left: 4px;
  align-self: center;
  margin-bottom: 14px;
}
.kitchen-lights i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  box-sizing: border-box;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}
.kitchen-tabs {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  flex: 1;
  overflow: hidden;
  padding-bottom: 14px;
  mask-image: linear-gradient(90deg, #000 82%, transparent);
  -webkit-mask-image: linear-gradient(90deg, #000 82%, transparent);
}
.kitchen-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
  height: 36px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.48);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.kitchen-tab img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex: none;
  pointer-events: none;
  opacity: 0.78;
  transition: opacity 0.2s ease;
}
.kitchen-tab:hover {
  color: rgba(255, 255, 255, 0.88);
}
.kitchen-tab:hover img {
  opacity: 0.95;
}
.kitchen-tab.is-on {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.kitchen-tab.is-on img {
  opacity: 1;
}
.kitchen-tab.is-on::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 2px;
  border-radius: 0;
  background: var(--orange);
  z-index: 1;
}
.kitchen-tab[data-app="x"] img,
.kitchen-tab[data-app="notion"] img,
.kitchen-tab[data-app="cursor"] img,
.kitchen-tab[data-app="linear"] img,
.kitchen-tab[data-app="github"] img,
.kitchen-tab[data-app="apple"] img {
  filter: invert(1);
}
.kitchen-body {
  position: relative;
  flex: 1;
  min-height: 360px;
  margin: 14px;
  border-radius: 12px;
  overflow: hidden;
  background: #0f0f10;
  transition: opacity 0.28s ease;
}
.kitchen-body.is-fading {
  opacity: 0;
}
.kitchen-body > .skin {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
}

/* shared bits inside skins */
.skin-lights {
  display: flex;
  gap: 7px;
  flex: none;
}
.skin-lights i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d9d5bd;
}
.skin-lights i:nth-child(1) {
  background: #ef7a6b;
}
.skin-lights i:nth-child(2) {
  background: #f2c14e;
}
.skin-lights i:nth-child(3) {
  background: #6ec38b;
}
.skin-line {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: inherit;
}
.skin-ghost {
  color: rgba(255, 255, 255, 0.32);
}
.skin-mail .caretbar,
.skin-slack .caretbar,
.skin-gpt .caretbar,
.skin-notion .caretbar,
.skin-x .caretbar,
.skin-term .caretbar,
.skin-cur .caretbar,
.skin-linear .caretbar,
.skin-figma .caretbar,
.skin-gh .caretbar,
.skin-vsc .caretbar,
.skin-obs .caretbar,
.skin-dc .caretbar,
.skin-generic .caretbar {
  background: rgba(255, 255, 255, 0.85);
}
.skin-accept {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}
.skin-accept .tabkey {
  font-size: 11.5px;
  padding: 5px 10px;
  border-radius: 8px;
  background: #2a2a2c;
  color: #f3f1e6;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 2px 0 #000;
  transition:
    transform 0.09s ease,
    background 0.09s ease,
    box-shadow 0.09s ease;
}
.skin-accept .tabkey.is-down {
  background: var(--lav);
  color: #16160f;
  border-color: var(--lav);
  transform: translateY(2px);
  box-shadow: 0 0 0 #000;
}

/* ---- Mail ---- */
.skin-mail {
  background: #141416;
  color: #ececec;
  border: 1px solid #2a2a2c;
}
.skin-mail-tb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: #1a1a1c;
  border-bottom: 1px solid #2a2a2c;
  font-size: 12px;
  color: #8e8e93;
}
.skin-mail-tb b {
  color: #f5f5f7;
  font-weight: 600;
}
.skin-mail-fields {
  padding: 2px 16px 0;
  font-size: 13px;
  color: #8e8e93;
}
.skin-mail-fields div {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #2a2a2c;
}
.skin-mail-fields span {
  width: 58px;
  flex: none;
  color: #6e6e73;
}
.skin-mail-fields strong {
  color: #f5f5f7;
  font-weight: 500;
}
.skin-mail-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
  min-height: 0;
}
.skin-mail-body .skin-line {
  font-size: 15px;
  line-height: 1.6;
}
.skin-mail-foot {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  padding-top: 16px;
}

/* ---- Slack ---- */
.skin.skin-slack {
  background: #1a1d21;
  color: #d1d2d3;
  border: 1px solid #2c2f33;
  flex-direction: row;
}
.skin-slack-side {
  width: 176px;
  flex: none;
  display: flex;
  flex-direction: column;
  background: #19171d;
  border-right: 1px solid #2c2f33;
  overflow: hidden;
}
.skin-slack-ws {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.skin-slack-ws i {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
}
.skin-slack-ws i::before {
  content: "";
  position: absolute;
  inset: 7px 4px 7px;
  background: #fff;
  opacity: 0.7;
}
.skin-slack-side-nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 10px 8px;
  font-size: 13px;
  color: #ababad;
  overflow: hidden;
}
.skin-slack-side-nav em {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  color: #ababad;
  padding: 8px 8px 4px;
}
.skin-slack-side-nav span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 6px;
}
.skin-slack-side-nav span.is-on {
  background: #1164a3;
  color: #fff;
}
.skin-slack-side-nav i {
  width: 14px;
  flex: none;
  text-align: center;
  font-style: normal;
  font-size: 13px;
  opacity: 0.85;
}
.skin-slack-side-nav i.dm {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #611f69;
}
.skin-slack-side-nav i.dm.b {
  background: #1264a3;
}
.skin-slack-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #1a1d21;
}
.skin-slack-tb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  background: #1a1d21;
  border-bottom: 1px solid #2c2f33;
  font-size: 13px;
  color: #9a9b9e;
  flex: none;
}
.skin-slack-tb b {
  color: #fff;
  font-weight: 700;
}
.skin-slack-tb em {
  font-style: normal;
  color: #ababad;
  margin-right: 2px;
}
.skin-slack-meta {
  font-size: 12px;
  color: #9a9b9e;
}
.skin-slack-msgs {
  flex: 1;
  padding: 12px 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  overflow: hidden;
}
.skin-slack-msg {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
}
.skin-slack-ava {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: #611f69;
}
.skin-slack-ava.b {
  background: #1264a3;
}
.skin-slack-msg b {
  font-size: 12.5px;
  color: #fff;
  margin-right: 6px;
}
.skin-slack-msg time {
  font-size: 11px;
  color: #9a9b9e;
}
.skin-slack-msg p {
  margin: 2px 0 0;
  color: #d1d2d3;
}
.skin-slack-compose {
  margin: 0 12px 12px;
  padding: 10px 12px 8px;
  border: 1px solid #565856;
  border-radius: 8px;
  background: #222529;
}
.skin-slack-compose-hd {
  font-size: 12px;
  color: #9a9b9e;
  margin-bottom: 6px;
}
.skin-slack-compose-hd b {
  color: #d1d2d3;
  font-weight: 600;
}
.skin-slack-compose .skin-line {
  font-size: 14px;
  color: #f8f8f8;
  min-height: 28px;
}
.skin-slack-compose .skin-ghost {
  color: #8b8d8f;
}
.skin-slack-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
}
.skin-slack-tools {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #ababad;
}
.skin-slack-tools span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}
.skin-slack-tools .plus {
  font-size: 16px;
  font-weight: 500;
}
.skin-slack-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.skin-slack-bar .skin-accept {
  color: #9a9b9e;
}
.skin-slack-bar .tabkey {
  background: #2c2f33;
  color: #f8f8f8;
  border-color: #8b8d8f;
  box-shadow: 0 2px 0 #111;
}
.skin-slack-bar .tabkey.is-down {
  background: #611f69;
  border-color: #9b6ba3;
  box-shadow: 0 0 0 #111;
}
.skin-slack-send {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #007a5a;
  display: grid;
  place-items: center;
}
.skin-slack-send svg {
  width: 13px;
  height: 13px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- ChatGPT ---- */
.skin-gpt {
  background: #212121;
  color: #ececec;
  border: 1px solid #2f2f2f;
}
.skin-gpt-tb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #2f2f2f;
}
.skin-gpt-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #f5f5f5;
}
.skin-gpt-brand img {
  width: 18px;
  height: 18px;
  filter: invert(1);
}
.skin-gpt-model {
  font-size: 12px;
  color: #b4b4b4;
  padding: 5px 10px;
  border: 1px solid #3a3a3a;
  border-radius: 999px;
}
.skin-gpt-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 20px 8px;
  color: #8f8f8f;
  font-size: 14px;
  text-align: center;
  min-height: 0;
}
.skin-gpt-main img {
  filter: invert(1);
  opacity: 0.85;
}
.skin-gpt-main strong {
  display: block;
  margin-top: 8px;
  color: #f5f5f5;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.skin-gpt-bar {
  margin: 8px 16px 16px;
  padding: 14px 14px 12px;
  border: 1px solid #3a3a3a;
  border-radius: 22px;
  background: #2f2f2f;
  box-shadow: none;
}
.skin-gpt-bar .skin-line {
  font-size: 14.5px;
  color: #f5f5f5;
  text-align: left;
}
.skin-gpt-bar .skin-ghost {
  color: #8a8a8a;
}
.skin-gpt-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 12px;
}
.skin-gpt-send {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
}
.skin-gpt-send svg {
  width: 13px;
  height: 13px;
  stroke: #0d0d0d;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- Notion ---- */
.skin.skin-notion {
  background: #191919;
  color: #e3e2e0;
  border: 1px solid #2f2f2f;
  flex-direction: row;
}
.skin-notion-side {
  width: 168px;
  flex: none;
  display: flex;
  flex-direction: column;
  background: #202020;
  border-right: 1px solid #2f2f2f;
  overflow: hidden;
}
.skin-notion-ws {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 12px 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.skin-notion-ws img {
  width: 16px;
  height: 16px;
  filter: invert(1);
}
.skin-notion-side-nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 4px 8px 10px;
  font-size: 12.5px;
  color: #9b9a97;
}
.skin-notion-side-nav em {
  font-style: normal;
  font-size: 11px;
  color: #6f6e69;
  padding: 10px 8px 4px;
}
.skin-notion-side-nav span {
  padding: 5px 8px;
  border-radius: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.skin-notion-side-nav span.is-on {
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}
.skin-notion-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.skin-notion-tb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid #2f2f2f;
  font-size: 12px;
  color: #9b9a97;
  flex: none;
}
.skin-notion-tb b {
  color: #fff;
  font-weight: 600;
}
.skin-notion-share {
  margin-left: auto;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: #2383e2;
  border-radius: 6px;
  padding: 4px 10px;
}
.skin-notion-page {
  flex: 1;
  padding: 18px 28px 14px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.skin-notion-emoji {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}
.skin-notion-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: #fff;
}
.skin-notion-props {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #2f2f2f;
  font-size: 12.5px;
}
.skin-notion-props div {
  display: flex;
  gap: 16px;
  align-items: center;
}
.skin-notion-props span {
  width: 56px;
  color: #6f6e69;
  flex: none;
}
.skin-notion-props b {
  font-weight: 500;
  color: #e3e2e0;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  padding: 2px 8px;
}
.skin-notion-page .skin-line {
  font-size: 15px;
  line-height: 1.65;
}
.skin-notion-page .skin-ghost {
  color: #6f6e69;
}
.skin-notion-foot {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  padding-top: 14px;
}

/* ---- X ---- */
.skin-x {
  background: #000;
  color: #e7e9ea;
  border: 1px solid #2f3336;
}
.skin-x-tb {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
}
.skin-x-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: -4px 0 -4px -6px;
  border-radius: 50%;
  color: #e7e9ea;
  justify-self: start;
}
.skin-x-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.skin-x-logo {
  width: 18px;
  height: 18px;
  filter: invert(1);
  justify-self: center;
}
.skin-x-drafts {
  color: #1d9bf0;
  font-weight: 700;
  font-size: 15px;
  justify-self: end;
}
.skin-x-reply {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 4px 16px 0;
  position: relative;
}
.skin-x-reply::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: #333639;
}
.skin-x-reply header {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 14px;
  line-height: 1.2;
}
.skin-x-reply header b {
  color: #e7e9ea;
  font-weight: 700;
}
.skin-x-reply header span {
  color: #71767b;
  font-size: 13px;
  font-weight: 400;
}
.skin-x-reply p {
  margin: 4px 0 10px;
  font-size: 14.5px;
  line-height: 1.4;
  color: #e7e9ea;
}
.skin-x-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 4px 16px 0;
  flex: 1;
  min-height: 0;
}
.skin-x-ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d9bf0, #7856ff);
  flex: none;
}
.skin-x-ava.sm {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f0623a, #a983ec);
}
.skin-x-compose {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-bottom: 4px;
}
.skin-x-replying {
  font-size: 13px;
  color: #71767b;
  margin-bottom: 2px;
}
.skin-x-replying b {
  color: #1d9bf0;
  font-weight: 400;
}
.skin-x-compose .skin-line {
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  padding-top: 4px;
  min-height: 56px;
}
.skin-x-compose .skin-ghost {
  color: #71767b;
}
.skin-x-audience {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin: 8px 0 4px;
  padding: 2px 10px 2px 8px;
  border-radius: 999px;
  color: #1d9bf0;
  font-size: 13px;
  font-weight: 700;
}
.skin-x-audience svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.skin-x-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 12px 12px;
  padding: 10px 4px 2px;
  border-top: 1px solid #2f3336;
}
.skin-x-tools {
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
}
.skin-x-tool {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #1d9bf0;
  flex: none;
}
.skin-x-tool svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.skin-x-tool--gif {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}
.skin-x-tool--gif span {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 16px;
  padding: 0 3px;
  border: 1.6px solid currentColor;
  border-radius: 4px;
}
.skin-x-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.skin-x-actions .skin-accept {
  color: #71767b;
}
.skin-x-actions .tabkey {
  background: #16181c;
  color: #e7e9ea;
  border-color: #536471;
  box-shadow: 0 2px 0 #000;
}
.skin-x-actions .tabkey.is-down {
  background: #1d9bf0;
  border-color: #1d9bf0;
  color: #fff;
  box-shadow: 0 0 0 #000;
}
.skin-x-count {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: conic-gradient(#1d9bf0 0 28%, #2f3336 0);
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 2.5px),
    #000 0
  );
  mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 0);
  flex: none;
}
.skin-x-post {
  padding: 8px 16px;
  border-radius: 999px;
  background: #1d9bf0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---- Discord ---- */
.skin.skin-dc {
  background: #313338;
  color: #dbdee1;
  border: 1px solid #1e1f22;
  flex-direction: row;
}
.skin-dc-servers {
  width: 56px;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  background: #1e1f22;
  overflow: hidden;
}
.skin-dc-servers span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #313338;
  color: #dbdee1;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  transition: border-radius 0.15s ease;
}
.skin-dc-servers span.home {
  background: #5865f2;
  border-radius: 14px;
  position: relative;
}
.skin-dc-servers span.home::before {
  content: "";
  width: 16px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 8px 8px 4px 4px;
}
.skin-dc-servers span.is-on {
  background: #5865f2;
  border-radius: 14px;
  color: #fff;
}
.skin-dc-servers i.sep {
  width: 28px;
  height: 2px;
  background: #35363c;
  border-radius: 1px;
  font-style: normal;
}
.skin-dc-channels {
  width: 168px;
  flex: none;
  display: flex;
  flex-direction: column;
  background: #2b2d31;
  overflow: hidden;
}
.skin-dc-guild {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  color: #f2f3f5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.skin-dc-chan-list {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 10px 8px;
  font-size: 13.5px;
  color: #949ba4;
  overflow: hidden;
}
.skin-dc-chan-list em {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #949ba4;
  padding: 8px 8px 4px;
}
.skin-dc-chan-list span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 4px;
}
.skin-dc-chan-list span.is-on {
  background: #404249;
  color: #fff;
}
.skin-dc-chan-list i {
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  color: #80848e;
  width: 16px;
  text-align: center;
}
.skin-dc-chan-list span.is-on i {
  color: #fff;
}
.skin-dc-chan-list i.vc {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  position: relative;
}
.skin-dc-chan-list i.vc::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}
.skin-dc-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #232428;
  flex: none;
}
.skin-dc-user div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.skin-dc-user b {
  font-size: 12px;
  color: #f2f3f5;
  font-weight: 600;
}
.skin-dc-user small {
  font-size: 11px;
  color: #949ba4;
}
.skin-dc-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #313338;
}
.skin-dc-tb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  flex: none;
  font-size: 14px;
  color: #949ba4;
}
.skin-dc-tb i {
  font-style: normal;
  font-size: 18px;
  font-weight: 500;
  color: #80848e;
}
.skin-dc-tb b {
  color: #f2f3f5;
  font-weight: 700;
}
.skin-dc-topic {
  margin-left: 4px;
  padding-left: 10px;
  border-left: 1px solid #3f4147;
  font-size: 12.5px;
  color: #949ba4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.skin-dc-msgs {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px 14px 8px;
  overflow: hidden;
}
.skin-dc-msg {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}
.skin-dc-ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex: none;
}
.skin-dc-ava.a {
  background: linear-gradient(135deg, #5865f2, #eb459e);
}
.skin-dc-ava.b {
  background: linear-gradient(135deg, #57f287, #3ba55d);
}
.skin-dc-ava.you {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #f0623a, #a983ec);
}
.skin-dc-msg header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.2;
}
.skin-dc-msg header b {
  font-size: 14px;
  font-weight: 600;
  color: #f2f3f5;
}
.skin-dc-msg header time {
  font-size: 11px;
  color: #949ba4;
}
.skin-dc-msg p {
  margin: 3px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: #dbdee1;
}
.skin-dc-compose {
  margin: 0 12px 12px;
  padding: 11px 14px;
  background: #383a40;
  border-radius: 8px;
  flex: none;
}
.skin-dc-compose .skin-line {
  font-size: 14.5px;
  line-height: 1.4;
  color: #dbdee1;
}
.skin-dc-compose .skin-ghost {
  color: #6d6f78;
}

/* ---- Obsidian ---- */
.skin.skin-obs {
  background: #1e1e1e;
  color: #dadada;
  border: 1px solid #2a2a2a;
  flex-direction: row;
}
.skin-obs-ribbon {
  width: 40px;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  background: #161616;
  border-right: 1px solid #2a2a2a;
}
.skin-obs-ribbon span {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
}
.skin-obs-ribbon span.is-on {
  background: rgba(124, 58, 237, 0.35);
  box-shadow: inset 0 0 0 1px rgba(167, 139, 250, 0.45);
}
.skin-obs-ribbon span::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1.4px solid rgba(255, 255, 255, 0.55);
  border-radius: 2px;
}
.skin-obs-ribbon span:nth-child(2)::before {
  border-radius: 50%;
}
.skin-obs-ribbon span:nth-child(3)::before {
  border: 0;
  background:
    linear-gradient(#fff, #fff) center / 60% 1.5px no-repeat,
    linear-gradient(#fff, #fff) center / 1.5px 60% no-repeat;
  opacity: 0.55;
}
.skin-obs-ribbon span:nth-child(4)::before {
  border-radius: 50%;
  border-style: dashed;
}
.skin-obs-side {
  width: 156px;
  flex: none;
  display: flex;
  flex-direction: column;
  background: #202020;
  border-right: 1px solid #2a2a2a;
  overflow: hidden;
}
.skin-obs-side-hd {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 12px 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #ececec;
}
.skin-obs-side-hd img {
  width: 16px;
  height: 16px;
}
.skin-obs-tree {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 4px 8px 10px;
  font-size: 12.5px;
  color: #b0b0b0;
}
.skin-obs-tree em {
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a7a7a;
  padding: 6px 8px 4px;
}
.skin-obs-tree span {
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.skin-obs-tree span.pad {
  padding-left: 18px;
}
.skin-obs-tree span.is-on {
  background: rgba(124, 58, 237, 0.28);
  color: #fff;
}
.skin-obs-ed {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #1e1e1e;
}
.skin-obs-tabs {
  display: flex;
  background: #161616;
  border-bottom: 1px solid #2a2a2a;
  font-size: 12px;
  color: #8a8a8a;
  flex: none;
}
.skin-obs-tabs span {
  padding: 8px 14px;
  border-right: 1px solid #2a2a2a;
}
.skin-obs-tabs span.is-on {
  background: #1e1e1e;
  color: #ececec;
  box-shadow: inset 0 -1px 0 #7c3aed;
}
.skin-obs-doc {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 18px 22px 12px;
}
.skin-obs-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #f2f2f2;
  margin-bottom: 8px;
}
.skin-obs-meta {
  font-size: 12px;
  color: #a78bfa;
  margin-bottom: 14px;
}
.skin-obs-doc .skin-line {
  font-size: 14.5px;
  line-height: 1.65;
  color: #dadada;
}
.skin-obs-doc .skin-ghost {
  color: rgba(218, 218, 218, 0.32);
}
.skin-obs-foot {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  padding-top: 12px;
}
.skin-obs-foot .tabkey {
  background: #2a2a2c;
  border-color: rgba(167, 139, 250, 0.35);
}
.skin-obs-foot .tabkey.is-down {
  background: #7c3aed;
  border-color: #7c3aed;
  color: #fff;
}

/* ---- Cursor ---- */
.skin.skin-cur {
  background: #141414;
  color: #e4e4e4;
  border: 1px solid #2a2a2a;
}
.skin-cur-work {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 40px 132px 1fr 200px;
}
.skin-cur-act {
  background: #0f0f0f;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 0;
  border-right: 1px solid #2a2a2a;
}
.skin-cur-act span {
  width: 40px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #6f6f6f;
  position: relative;
}
.skin-cur-act span.is-on,
.skin-cur-act span.chat {
  color: #ececec;
}
.skin-cur-act span.is-on::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  bottom: 7px;
  width: 2px;
  background: #fff;
}
.skin-cur-act span.chat {
  margin-top: auto;
  color: #82a9ff;
}
.skin-cur-act svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.skin-cur-side {
  background: #181818;
  border-right: 1px solid #2a2a2a;
  overflow: hidden;
}
.skin-cur-side-hd {
  padding: 10px 12px 8px;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a9a9a;
  font-weight: 600;
}
.skin-cur-tree {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 0 4px 8px;
  font-size: 12px;
  color: #c8c8c8;
}
.skin-cur-tree em {
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: #9a9a9a;
  padding: 4px 8px 6px;
  font-weight: 700;
}
.skin-cur-tree span {
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.skin-cur-tree span.pad {
  padding-left: 20px;
}
.skin-cur-tree span.is-on {
  background: #2a2a2a;
  color: #fff;
}
.skin-cur-ed {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #141414;
  border-right: 1px solid #2a2a2a;
}
.skin-cur-tabs {
  display: flex;
  background: #181818;
  border-bottom: 1px solid #2a2a2a;
  font-size: 12px;
  color: #8a8a8a;
  flex: none;
}
.skin-cur-tabs span {
  padding: 8px 12px;
  border-right: 1px solid #2a2a2a;
}
.skin-cur-tabs span.is-on {
  background: #141414;
  color: #fff;
}
.skin-cur-code {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 32px 1fr;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.55;
  padding: 10px 0;
  overflow: hidden;
}
.skin-cur-gutter {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 8px;
  color: #555;
  user-select: none;
}
.skin-cur-lines {
  padding-right: 10px;
  color: #d4d4d4;
  min-width: 0;
}
.skin-cur-lines .kw {
  color: #c792ea;
}
.skin-cur-lines .cm {
  color: #6a9955;
}
.skin-cur-lines .fn {
  color: #82aaff;
}
.skin-cur-chat {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #171717;
  overflow: hidden;
}
.skin-cur-chat-hd {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid #2a2a2a;
  font-size: 12.5px;
  color: #ececec;
  flex: none;
}
.skin-cur-chat-hd img {
  width: 14px;
  height: 14px;
  filter: invert(1);
}
.skin-cur-chat-hd b {
  font-weight: 600;
}
.skin-cur-chat-hd span {
  margin-left: auto;
  font-size: 11px;
  color: #82a9ff;
  background: rgba(130, 169, 255, 0.12);
  border: 1px solid rgba(130, 169, 255, 0.28);
  border-radius: 999px;
  padding: 2px 8px;
}
.skin-cur-thread {
  flex: 1;
  min-height: 0;
  padding: 12px;
  overflow: hidden;
}
.skin-cur-bubble {
  background: #222;
  border: 1px solid #2f2f2f;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12.5px;
  line-height: 1.45;
  color: #cfcfcf;
}
.skin-cur-bubble p {
  margin: 0;
}
.skin-cur-bubble code {
  font-family: var(--mono);
  font-size: 11.5px;
  color: #82a9ff;
  background: rgba(130, 169, 255, 0.1);
  padding: 1px 5px;
  border-radius: 4px;
}
.skin-cur-input {
  margin: 0 10px 10px;
  padding: 10px 12px;
  border: 1px solid #333;
  border-radius: 10px;
  background: #1c1c1c;
  flex: none;
}
.skin-cur-input .skin-line {
  font-size: 13px;
  line-height: 1.45;
  color: #e8e8e8;
}
.skin-cur-input .skin-ghost {
  color: rgba(232, 232, 232, 0.32);
}
.skin-cur-status {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
  padding: 3px 10px;
  background: #0f0f0f;
  border-top: 1px solid #2a2a2a;
  color: #9a9a9a;
  font-size: 11px;
}
.skin-cur-status .end {
  margin-left: auto;
  color: #82a9ff;
}

/* ---- Terminal (Claude Code–level fidelity) ---- */
.skin-term {
  background: #0c0c0c;
  color: #ececec;
  border: 1px solid #2a2a2a;
  font-family: var(--mono);
}
.skin-term-tb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #161616;
  border-bottom: 1px solid #2a2a2a;
  font-size: 11.5px;
  color: #8a8a8a;
}
.skin-term-tb img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.skin-term-tb b {
  color: #d0d0d0;
  font-weight: 500;
}
.skin-term-box {
  margin: 12px 12px 0;
  padding: 12px 14px;
  border: 1px solid #c45c26;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  font-size: 11px;
  line-height: 1.45;
  color: #bdbdbd;
}
.skin-term-box .hi {
  color: #f0a070;
}
.skin-term-box .ok {
  color: #7dcea0;
}
.skin-term-box h4 {
  margin: 0 0 6px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.skin-term-box .side {
  border-left: 1px solid #333;
  padding-left: 12px;
  color: #8f8f8f;
}
.skin-term-box .side b {
  display: block;
  color: #cfcfcf;
  margin-bottom: 4px;
  font-weight: 600;
}
.skin-term-prompt {
  flex: 1;
  padding: 14px 16px 8px;
  font-size: 13px;
  line-height: 1.55;
  min-height: 0;
}
.skin-term-prompt .chev {
  color: #6cb6ff;
  margin-right: 8px;
}
.skin-term-prompt .skin-line {
  display: inline;
  font-size: 13px;
  font-family: var(--mono);
}
.skin-term-prompt .skin-ghost {
  color: #5c5c5c;
}
.skin-term-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px 12px;
  font-size: 11px;
  color: #6a6a6a;
}
.skin-term-status .skin-accept {
  color: #8a8a8a;
}
.skin-term-status .tabkey {
  background: #1a1a1a;
  color: #ececec;
  border-color: #666;
  box-shadow: 0 2px 0 #000;
}
.skin-term-status .tabkey.is-down {
  background: #c45c26;
  border-color: #c45c26;
  color: #fff;
  box-shadow: 0 0 0 #000;
}

/* ---- Linear ---- */
.skin.skin-linear {
  background: #0f1011;
  color: #e8e8e8;
  border: 1px solid #232426;
  flex-direction: row;
}
.skin-linear-side {
  width: 168px;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 10px;
  background: #0c0c0d;
  border-right: 1px solid #232426;
}
.skin-linear-ws {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #f4f4f5;
}
.skin-linear-ws img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: invert(1);
}
.skin-linear-nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 12.5px;
  color: #9b9b9f;
}
.skin-linear-nav span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
}
.skin-linear-nav span.is-on {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.skin-linear-nav em {
  margin: 12px 8px 4px;
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5c5c60;
}
.skin-linear-nav i {
  width: 14px;
  height: 14px;
  flex: none;
  border-radius: 3px;
  border: 1.4px solid currentColor;
  opacity: 0.7;
  position: relative;
}
.skin-linear-nav i.li-inbox::before,
.skin-linear-nav i.li-mine::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 1px;
  background: currentColor;
  opacity: 0.55;
}
.skin-linear-nav i.li-views {
  border-radius: 50%;
}
.skin-linear-nav i.li-road {
  border: 0;
  background: linear-gradient(
    90deg,
    currentColor 0 2px,
    transparent 2px 5px,
    currentColor 5px 7px,
    transparent 7px 10px,
    currentColor 10px
  );
  opacity: 0.55;
}
.skin-linear-nav i.li-team {
  border-radius: 50%;
  background: #5e6ad2;
  border-color: #5e6ad2;
  opacity: 1;
}
.skin-linear-nav i.li-back {
  border-style: dashed;
}
.skin-linear-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 14px 18px 12px;
}
.skin-linear-crumb {
  font-size: 11.5px;
  color: #7a7a7e;
  margin-bottom: 10px;
}
.skin-linear-crumb span {
  margin: 0 4px;
  color: #3f3f42;
}
.skin-linear-crumb b {
  color: #c8c8cc;
  font-weight: 500;
}
.skin-linear-issue {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.skin-linear-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.skin-linear-pri {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
  padding: 0 2px;
}
.skin-linear-pri i {
  display: block;
  width: 3px;
  border-radius: 1px;
  background: #f2c94c;
}
.skin-linear-pri i:nth-child(1) {
  height: 4px;
}
.skin-linear-pri i:nth-child(2) {
  height: 7px;
}
.skin-linear-pri i:nth-child(3) {
  height: 10px;
}
.skin-linear-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #c8c8cc;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #2a2a2e;
}
.skin-linear-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid #f2c94c;
  box-shadow: inset 0 0 0 1.5px transparent;
  background: conic-gradient(#f2c94c 0 140deg, transparent 0);
}
.skin-linear-label {
  font-size: 11px;
  color: #a8b1ff;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(94, 106, 210, 0.18);
  border: 1px solid rgba(94, 106, 210, 0.35);
}
.skin-linear-issue h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #f4f4f5;
  margin: 0 0 14px;
}
.skin-linear-desc {
  flex: 1;
  min-height: 0;
}
.skin-linear-desc label {
  display: block;
  font-size: 11px;
  color: #6e6e72;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.skin-linear-desc .skin-line {
  font-size: 14px;
  line-height: 1.55;
  color: #d8d8dc;
}
.skin-linear-desc .skin-ghost {
  color: rgba(255, 255, 255, 0.28);
}
.skin-linear-foot {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  justify-content: flex-end;
}

/* ---- Figma ---- */
.skin-figma {
  background: #2c2c2c;
  color: #f5f5f5;
  border: 1px solid #3d3d3d;
}
.skin-figma-tb {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
  padding: 8px 12px;
  background: #2c2c2c;
  border-bottom: 1px solid #3d3d3d;
  font-size: 12px;
  color: #b0b0b0;
}
.skin-figma-tools {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border-radius: 8px;
  background: #1e1e1e;
}
.skin-figma-tools span {
  width: 28px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #cfcfcf;
}
.skin-figma-tools span.is-on {
  background: #0d99ff;
  color: #fff;
}
.skin-figma-tools svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.skin-figma-tools span:first-child svg {
  fill: currentColor;
  stroke: none;
}
.skin-figma-file {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  justify-content: center;
  color: #d4d4d4;
}
.skin-figma-file img {
  width: 14px;
  height: 14px;
}
.skin-figma-file b {
  color: #fff;
  font-weight: 600;
}
.skin-figma-zoom {
  font-size: 11.5px;
  color: #9a9a9a;
  min-width: 40px;
  text-align: right;
}
.skin-figma-body {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 148px 1fr 132px;
}
.skin-figma-layers,
.skin-figma-props {
  background: #2c2c2c;
  border-color: #3d3d3d;
  padding: 10px 8px;
  font-size: 11.5px;
  color: #c8c8c8;
  overflow: hidden;
}
.skin-figma-layers {
  border-right: 1px solid #3d3d3d;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.skin-figma-props {
  border-left: 1px solid #3d3d3d;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.skin-figma-layers em,
.skin-figma-props em {
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a8a8a;
  padding: 0 6px 6px;
}
.skin-figma-layers span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 6px;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.skin-figma-layers span.pad {
  padding-left: 18px;
}
.skin-figma-layers span.is-on {
  background: #0d99ff;
  color: #fff;
}
.skin-figma-layers i {
  width: 10px;
  height: 10px;
  flex: none;
  border: 1.2px solid currentColor;
  border-radius: 1.5px;
  opacity: 0.75;
}
.skin-figma-layers i.fi-note {
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
}
.skin-figma-row {
  display: grid;
  grid-template-columns: 36px 1fr 28px 1fr;
  gap: 4px 6px;
  align-items: center;
  padding: 0 4px;
}
.skin-figma-row span {
  color: #8a8a8a;
  font-size: 11px;
}
.skin-figma-row b {
  font-weight: 500;
  color: #ececec;
  background: #1e1e1e;
  border: 1px solid #3d3d3d;
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 11px;
}
.skin-figma-row:nth-child(n + 3) {
  grid-template-columns: 48px 1fr;
}
.skin-figma-canvas {
  background:
    radial-gradient(circle at 1px 1px, #3a3a3a 1px, transparent 0) 0 0 / 16px
      16px,
    #1e1e1e;
  display: grid;
  place-items: center;
  padding: 16px;
  min-width: 0;
}
.skin-figma-frame {
  position: relative;
  width: min(100%, 280px);
  background: #141416;
  border: 1px solid #0d99ff;
  border-radius: 2px;
  padding: 14px 14px 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.skin-figma-pin {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0d99ff;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 6px rgba(13, 153, 255, 0.45);
}
.skin-figma-note-hd {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  font-size: 11.5px;
  color: #9a9a9a;
}
.skin-figma-note-hd b {
  color: #f0f0f0;
  font-weight: 600;
}
.skin-figma-note-hd time {
  margin-left: auto;
  font-size: 10.5px;
}
.skin-figma-ava {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a259ff, #f24e1e);
  flex: none;
}
.skin-figma-note .skin-line {
  font-size: 13px;
  line-height: 1.5;
  color: #e8e8e8;
}
.skin-figma-note .skin-ghost {
  color: rgba(255, 255, 255, 0.3);
}
.skin-figma-note-ft {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}
.skin-figma-note-ft .tabkey {
  background: #2a2a2c;
  border-color: rgba(255, 255, 255, 0.18);
}
.skin-figma-note-ft .tabkey.is-down {
  background: #0d99ff;
  border-color: #0d99ff;
  color: #fff;
}

/* ---- GitHub ---- */
.skin-gh {
  background: #0d1117;
  color: #e6edf3;
  border: 1px solid #30363d;
}
.skin-gh-tb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
  padding: 10px 14px;
  background: #010409;
  border-bottom: 1px solid #21262d;
  font-size: 13px;
  color: #8b949e;
}
.skin-gh-tb img {
  width: 18px;
  height: 18px;
  filter: invert(1);
}
.skin-gh-repo b {
  color: #e6edf3;
  font-weight: 600;
}
.skin-gh-pill {
  margin-left: auto;
  font-size: 11px;
  color: #8b949e;
  border: 1px solid #30363d;
  border-radius: 999px;
  padding: 2px 8px;
}
.skin-gh-nav {
  display: flex;
  gap: 2px;
  padding: 0 12px;
  border-bottom: 1px solid #21262d;
  font-size: 12.5px;
  color: #c9d1d9;
  overflow-x: auto;
}
.skin-gh-nav span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 10px 9px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.skin-gh-nav span.is-on {
  border-bottom-color: #f78166;
  font-weight: 600;
  color: #e6edf3;
}
.skin-gh-nav em {
  font-style: normal;
  font-size: 11px;
  background: rgba(110, 118, 129, 0.4);
  color: #c9d1d9;
  border-radius: 999px;
  padding: 1px 7px;
  font-weight: 500;
}
.skin-gh-pr {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 12px 16px 10px;
}
.skin-gh-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.skin-gh-title h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: #e6edf3;
  margin: 0;
  flex: 1;
  min-width: 0;
}
.skin-gh-title em {
  font-style: normal;
  color: #8b949e;
  font-weight: 400;
}
.skin-gh-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: none;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #238636;
  border-radius: 999px;
  padding: 4px 10px;
}
.skin-gh-state i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid #fff;
}
.skin-gh-thread {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.skin-gh-cmt {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}
.skin-gh-ava {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex: none;
}
.skin-gh-ava.a {
  background: linear-gradient(135deg, #58a6ff, #1f6feb);
}
.skin-gh-ava.b {
  background: linear-gradient(135deg, #f0623a, #a983ec);
}
.skin-gh-cmt > div {
  border: 1px solid #30363d;
  border-radius: 8px;
  background: #0d1117;
  overflow: hidden;
  min-width: 0;
}
.skin-gh-cmt header {
  padding: 7px 12px;
  background: #161b22;
  border-bottom: 1px solid #30363d;
  font-size: 12px;
  color: #8b949e;
}
.skin-gh-cmt header b {
  color: #e6edf3;
  font-weight: 600;
  margin-right: 4px;
}
.skin-gh-cmt p {
  margin: 0;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #c9d1d9;
}
.skin-gh-cmt.is-compose > div {
  background: #0d1117;
}
.skin-gh-tabs {
  display: flex;
  gap: 0;
  padding: 6px 8px 0;
  border-bottom: 1px solid #30363d;
  background: #0d1117;
}
.skin-gh-tabs span {
  font-size: 12px;
  padding: 6px 10px 8px;
  color: #8b949e;
  border: 1px solid transparent;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}
.skin-gh-tabs span.is-on {
  color: #e6edf3;
  background: #0d1117;
  border-color: #30363d;
  margin-bottom: -1px;
}
.skin-gh-box {
  padding: 10px 12px;
  min-height: 72px;
}
.skin-gh-box .skin-line {
  font-size: 13.5px;
  line-height: 1.5;
  color: #e6edf3;
}
.skin-gh-box .skin-ghost {
  color: rgba(230, 237, 243, 0.32);
}
.skin-gh-foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 8px 10px 10px;
  border-top: 1px solid #21262d;
}
.skin-gh-btn {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #238636;
  border: 1px solid rgba(240, 246, 252, 0.1);
  border-radius: 6px;
  padding: 5px 12px;
}
.skin-gh-foot .tabkey {
  background: #21262d;
  border-color: #30363d;
  box-shadow: 0 2px 0 #010409;
}
.skin-gh-foot .tabkey.is-down {
  background: #238636;
  border-color: #238636;
  color: #fff;
  box-shadow: 0 0 0 #010409;
}

/* ---- VS Code ---- */
.skin-vsc {
  background: #1e1e1e;
  color: #d4d4d4;
  border: 1px solid #2b2b2b;
}
.skin-vsc-work {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 42px 148px 1fr;
}
.skin-vsc-act {
  background: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 0;
  border-right: 1px solid #2b2b2b;
}
.skin-vsc-act span {
  width: 42px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #858585;
  position: relative;
}
.skin-vsc-act span.is-on {
  color: #fff;
}
.skin-vsc-act span.is-on::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #fff;
}
.skin-vsc-act svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.skin-vsc-side {
  background: #252526;
  border-right: 1px solid #2b2b2b;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}
.skin-vsc-side-hd {
  padding: 10px 12px 8px;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbbbbb;
  font-weight: 600;
}
.skin-vsc-tree {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 0 4px 8px;
  font-size: 12px;
  color: #cccccc;
  font-family: var(--sans);
}
.skin-vsc-tree em {
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: #bbbbbb;
  padding: 4px 8px 6px;
  font-weight: 700;
}
.skin-vsc-tree span {
  padding: 3px 8px;
  border-radius: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.skin-vsc-tree span.pad {
  padding-left: 22px;
}
.skin-vsc-tree span.is-on {
  background: #37373d;
  color: #fff;
}
.skin-vsc-ed {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #1e1e1e;
}
.skin-vsc-tabs {
  display: flex;
  background: #252526;
  border-bottom: 1px solid #2b2b2b;
  font-size: 12px;
  color: #969696;
  flex: none;
}
.skin-vsc-tabs span {
  padding: 8px 14px;
  border-right: 1px solid #2b2b2b;
}
.skin-vsc-tabs span.is-on {
  background: #1e1e1e;
  color: #fff;
  box-shadow: inset 0 -1px 0 #007acc;
}
.skin-vsc-crumb {
  padding: 4px 12px;
  font-size: 11.5px;
  color: #959595;
  border-bottom: 1px solid #2b2b2b;
  flex: none;
}
.skin-vsc-code {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.55;
  padding: 10px 0;
  overflow: hidden;
}
.skin-vsc-gutter {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 10px;
  color: #6e7681;
  user-select: none;
}
.skin-vsc-gutter .is-on {
  color: #c6c6c6;
}
.skin-vsc-lines {
  padding-right: 12px;
  color: #d4d4d4;
  min-width: 0;
}
.skin-vsc-lines .kw {
  color: #569cd6;
}
.skin-vsc-lines .cm {
  color: #6a9955;
}
.skin-vsc-lines .skin-line {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.55;
  display: inline;
  margin: 0;
}
.skin-vsc-active {
  padding-left: 1.25em;
}
.skin-vsc-lines .skin-ghost {
  color: rgba(212, 212, 212, 0.38);
}
.skin-vsc-lines .caretbar {
  height: 15px;
  vertical-align: -2px;
  background: #aeafad;
}
.skin-vsc-hint {
  margin-top: auto;
  padding: 8px 14px 10px;
  display: flex;
  justify-content: flex-end;
  flex: none;
}
.skin-vsc-hint .tabkey {
  background: #2d2d2d;
  border-color: #3e3e42;
  box-shadow: 0 2px 0 #111;
}
.skin-vsc-hint .tabkey.is-down {
  background: #007acc;
  border-color: #007acc;
  color: #fff;
  box-shadow: 0 0 0 #111;
}
.skin-vsc-status {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
  padding: 3px 10px;
  background: #007acc;
  color: #fff;
  font-size: 11px;
  font-family: var(--sans);
}
.skin-vsc-status .end {
  margin-left: auto;
}

/* ---- Generic app compose (extra logo tabs) ---- */
.skin-generic {
  background: #141416;
  color: #ececec;
  border: 1px solid #2a2a2c;
}
.skin-generic-tb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
  padding: 12px 16px;
  border-bottom: 1px solid #2a2a2c;
  font-size: 13px;
  font-weight: 600;
  color: #f5f5f7;
}
.skin-generic-tb img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.skin-generic-tb img.is-dark {
  filter: invert(1);
}
.skin-generic-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 20px 16px;
  min-height: 0;
}
.skin-generic-body .skin-line {
  font-size: 15px;
  line-height: 1.55;
}
.skin-generic-foot {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  justify-content: flex-end;
}
.kitchen-cap {
  margin: -48px auto 0;
  position: relative;
  z-index: 1;
  max-width: 440px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-mute);
}
.kitchen-cap b {
  color: var(--ink);
  font-weight: 600;
}
/* ---------- section shells ---------- */
section {
  position: relative;
}
.band {
  padding: 80px 0 56px;
}
#pricing {
  padding-top: 128px;
}
.center {
  text-align: center;
}
.h2 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.kitchen-intro {
  text-align: center;
  margin: 0 auto 56px;
  max-width: min(720px, 100%);
  padding-inline: 16px;
}
.kitchen-title {
  margin: 0;
  line-height: 1.12;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .kitchen-title {
    white-space: normal;
  }
}
.kitchen-lede {
  margin: 20px auto 0;
  max-width: none;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.45;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .kitchen-lede {
    white-space: normal;
    max-width: 20em;
  }
}
.lede {
  margin: 22px auto 0;
  max-width: 520px;
  color: var(--ink-mute);
  font-size: 16.5px;
}

.swoosh {
  display: block;
  margin: -8px auto 0;
  width: 250px;
}
.swoosh path {
  stroke: var(--lav-mid);
  stroke-width: 7;
  fill: none;
  stroke-linecap: round;
}

/* ---------- window chrome ---------- */
.titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line-soft);
}
.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d9d5bd;
}
.dot:nth-child(1) {
  background: #ef7a6b;
}
.dot:nth-child(2) {
  background: #f2c14e;
}
.dot:nth-child(3) {
  background: #6ec38b;
}
.titlebar .name {
  margin-left: 8px;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.statusbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 11px 22px;
  border-top: 1px solid var(--line-soft);
  background: var(--cream-deep);
  font-size: 12px;
  color: var(--ink-soft);
}
.statusbar .live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.greendot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #23a06f;
}

/* ---------- keystroke duel (wispr-style) ---------- */
.duel .lede {
  max-width: 480px;
}
.race {
  position: relative;
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 14px;
  align-items: stretch;
  width: min(1040px, 100%);
  margin: 56px auto 0;
  text-align: left;
}
.race-pane {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
}
.race-pane--kbd {
  padding: 26px 24px 22px;
  border: 1px solid var(--line);
  background: var(--cream-deep);
  color: var(--ink);
}
.race-pane--chef {
  margin-left: -8px;
  padding: 30px 32px 26px;
  border: 1px solid rgba(169, 131, 236, 0.35);
  background:
    radial-gradient(
      55% 45% at 85% 0%,
      rgba(169, 131, 236, 0.18),
      transparent 60%
    ),
    radial-gradient(
      50% 40% at 10% 100%,
      rgba(227, 211, 251, 0.06),
      transparent 65%
    ),
    linear-gradient(165deg, #141218 0%, #0a0a0c 55%, #080809 100%);
  color: var(--ink);
  box-shadow:
    0 0 0 1px rgba(169, 131, 236, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.race-pane--chef::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(169, 131, 236, 0.04) 100%
  );
}
.race-pane--chef::after {
  content: none;
}
.race-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--lav);
  color: var(--on-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px rgba(169, 131, 236, 0.35);
}
.race-top {
  position: relative;
  z-index: 1;
}
.race-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.race-pane--chef .race-label {
  color: var(--lav-mid);
}
.race-count {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.88;
  letter-spacing: -0.055em;
  color: #fff;
}
.race-pane--kbd .race-count {
  font-size: clamp(40px, 5.2vw, 64px);
  color: var(--ink-mute);
}
.race-count i {
  font-family: var(--sans);
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-soft);
}
.race-pane--chef .race-count i {
  color: var(--lav-mid);
}
.race-text {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  height: 168px;
  overflow: hidden;
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--ink-mute);
}
.race-pane--kbd .race-text {
  font-size: 13.5px;
  opacity: 0.85;
}
.race-pane--chef .race-text {
  height: 176px;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink);
  transform: rotate(-0.6deg);
  transform-origin: left center;
  max-width: 95%;
}
.race-text .tabbed {
  border-radius: 4px;
  background: transparent;
  box-shadow: 0 0 0 0 transparent;
  transition:
    background 0.55s ease,
    box-shadow 0.55s ease;
}
.race-text .tabbed.flash {
  background: rgba(227, 211, 251, 0.22);
  box-shadow: 0 0 0 4px rgba(227, 211, 251, 0.18);
}
.race-meter {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 22px;
}
.race-meter-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.race-pane--chef .race-meter-track {
  background: rgba(169, 131, 236, 0.15);
}
.race-meter-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: var(--ink-soft);
  transition: width 0.08s linear;
}
.race-pane--chef .race-meter-fill {
  background: linear-gradient(
    90deg,
    var(--lav-deep),
    var(--lav-mid),
    var(--lav)
  );
}
.race-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.race-pane--chef .race-foot {
  color: var(--ink-mute);
}
.race-tabhint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.race-tabhint.is-on {
  opacity: 1;
  transform: translateY(0);
}
.race-tabhint .tabkey {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 8px;
  background: rgba(227, 211, 251, 0.1);
  color: var(--lav);
  border-color: rgba(227, 211, 251, 0.35);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}
.race-tabhint .tabkey.is-down {
  background: var(--lav);
  color: var(--on-accent);
  transform: translateY(2px);
  box-shadow: 0 0 0 transparent;
}

/* ---------- pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
  align-items: stretch;
}
.price {
  border: 1.6px solid var(--line);
  border-radius: 22px;
  background: var(--cream-deep);
  padding: 34px 32px 32px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price.alt {
  border: 1.4px solid var(--line);
  background: transparent;
}
.badge {
  position: absolute;
  top: -12px;
  left: 30px;
  background: var(--lav);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--on-accent);
}
.badge--alt {
  background: var(--green);
  border-color: var(--green);
  color: var(--paper);
}
.price .amt {
  font-family: var(--serif);
  font-size: 62px;
  line-height: 1;
}
.price .amt small {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 500;
}
.price h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.price ul {
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
}
.price li {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  font-size: 14.5px;
  color: var(--ink-mute);
}
.price li svg {
  flex: none;
  margin-top: 4px;
}
.price .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  min-height: 44px;
  box-sizing: border-box;
}
.price.alt .amt {
  font-size: 54px;
}
.price-note {
  margin: 28px auto 0;
  max-width: 420px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ---------- faq ---------- */
.faq .lede {
  max-width: 420px;
}
.faq-list {
  width: min(720px, 100%);
  margin: 48px auto 0;
  text-align: left;
  border-top: 1px solid var(--line-soft);
}
.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.35;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--ink-soft);
  border-bottom: 1.5px solid var(--ink-soft);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
  margin-top: -4px;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.faq-panel {
  overflow: hidden;
  transition: height 0.22s ease;
}
.faq-item:not([open]) .faq-panel {
  height: 0;
}
.faq-item p {
  margin: 0;
  padding: 0 28px 22px 4px;
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.55;
  max-width: 54ch;
}
@media (prefers-reduced-motion: reduce) {
  .faq-panel {
    transition: none;
  }
  .faq-item summary::after {
    transition: none;
  }
}

/* ---------- closing ---------- */
.closing {
  padding: 108px 0 96px;
  text-align: center;
}
.closing .btn {
  margin-top: 30px;
}

footer {
  border-top: 1px solid var(--line-soft);
  padding: 26px 0 46px;
  font-size: 13px;
  color: var(--ink-soft);
}
.footrow {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footrow nav {
  all: unset;
  display: flex;
  gap: 20px;
}

@media (max-width: 900px) {
  .nav-center,
  .navdiv {
    display: none;
  }
  nav {
    grid-template-columns: 1fr auto;
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding: 100px 0 48px;
  }
  .hero-floor,
  .hero-light {
    display: none;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    width: min(1120px, calc(100% - 40px));
  }
  .hero-copy {
    padding-top: 8px;
    max-width: none;
    margin-left: 0;
  }
  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }
  .hero .sub {
    font-size: 1.05rem;
    margin-top: 18px;
    max-width: 36rem;
  }
  .hero-visual {
    height: 280px;
    min-height: 240px;
    order: -1;
    margin-left: -16px;
    padding-left: 16px;
    width: calc(100% + 16px);
  }
  .hero-kb {
    --kb-key: 38px;
    --kb-gap: 4px;
    --kb-radius: 8px;
    padding: 20px 0 28px 4px;
  }
  .kitchen {
    padding: 0 0 64px;
  }
  .kitchen-window {
    min-height: 440px;
  }
  .kitchen-tb {
    gap: 12px;
    padding: 12px 10px 0 8px;
    min-height: 56px;
  }
  .kitchen-lights {
    margin-bottom: 12px;
  }
  .kitchen-tabs {
    padding-bottom: 12px;
    gap: 6px;
  }
  .kitchen-tab {
    height: 32px;
    padding: 0 10px;
    gap: 6px;
    font-size: 12px;
    border-radius: 8px;
  }
  .kitchen-tab.is-on::after {
    bottom: -13px;
  }
  .kitchen-body {
    min-height: 300px;
    margin: 10px;
  }
  .skin-x-actions {
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .skin-x-count {
    display: none;
  }
  .skin-x-tool:nth-child(n + 4) {
    display: none;
  }
  .skin-term-box {
    grid-template-columns: 1fr;
  }
  .skin-term-box .side {
    border-left: 0;
    border-top: 1px solid #333;
    padding-left: 0;
    padding-top: 10px;
  }
  .skin-linear-side {
    display: none;
  }
  .skin-slack-side {
    display: none;
  }
  .skin-notion-side {
    display: none;
  }
  .skin-obs-ribbon,
  .skin-obs-side {
    display: none;
  }
  .skin-dc-servers,
  .skin-dc-channels {
    display: none;
  }
  .skin-x-reply {
    display: none;
  }
  .skin-figma-layers,
  .skin-figma-props {
    display: none;
  }
  .skin-figma-body {
    grid-template-columns: 1fr;
  }
  .skin-vsc-act,
  .skin-vsc-side {
    display: none;
  }
  .skin-vsc-work {
    grid-template-columns: 1fr;
  }
  .skin-cur-act,
  .skin-cur-side {
    display: none;
  }
  .skin-cur-work {
    grid-template-columns: 1fr 180px;
  }
  .skin-gh-nav span:nth-child(n + 4) {
    display: none;
  }
  .skin-gh-title {
    flex-direction: column;
    align-items: flex-start;
  }
  .race {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .race-pane {
    height: auto;
    min-height: 340px;
  }
  .race-pane--kbd,
  .race-pane--chef {
    margin-left: 0;
  }
  .race-pane--chef .race-text {
    transform: none;
    font-size: 15px;
    height: 150px;
  }
  .race-pane--kbd .race-text {
    height: 150px;
  }
  .band {
    padding: 72px 0;
  }
  .btn {
    white-space: nowrap;
  }
  .swoosh {
    width: 190px;
  }
  .closing {
    padding: 78px 0 68px;
  }
}
@media (max-width: 560px) {
  .hero h1 {
    white-space: normal;
  }
  .statusbar .opt {
    display: none;
  }
  .race-pane--kbd .race-count,
  .race-count {
    font-size: 48px;
  }
  .race-badge {
    top: 16px;
    right: 16px;
  }
  .h2 {
    font-size: 34px;
  }
  .price {
    padding: 30px 24px 28px;
  }
}
