@font-face {
  font-family: "Anthropicons-Variable";
  src: url("assets/fonts/c0f671921-Bdg_ZDWn.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 400 700;
  font-display: block;
}

:root {
  color-scheme: dark;
  --always-black: 0 0% 0%;
  --brand-clay: 15 63% 60%;
  --brand-clay-strong: 15 54% 51%;
  --accent-000: 210 65.5% 67.1%;
  --bg-000: 60 2.1% 18.4%;
  --bg-100: 60 2.7% 14.5%;
  --bg-200: 30 3.3% 11.8%;
  --bg-300: 60 2.6% 7.6%;
  --bg-400: 0 0% 5%;
  --border: 51 16.5% 84.5%;
  --border-300: 51 16.5% 84.5%;
  --border-400: 51 16.5% 84.5%;
  --border-soft: hsl(var(--border) / 0.14);
  --pictogram-100: 48 3.4% 29.2%;
  --pictogram-200: 60 2.5% 23.3%;
  --pictogram-300: 60 2.1% 18.4%;
  --pictogram-400: 60 2.7% 14.5%;
  --text-000: 48 33.3% 97.1%;
  --text-100: 48 33.3% 97.1%;
  --text-200: 50 9% 73.7%;
  --text-300: 50 9% 73.7%;
  --text-400: 48 4.8% 59.2%;
  --text-500: 48 4.8% 59.2%;
  --sidebar-width: 18rem;
  --focus: 213 77% 68%;
  --font-ui: "Anthropic Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Anthropic Serif", Georgia, "Times New Roman", Times, "Hiragino Sans", "Yu Gothic", Meiryo, "PingFang SC", "Microsoft YaHei", serif;
  --font-anthropicons: "Anthropicons-Variable";
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  background: hsl(var(--bg-100));
  font-family: var(--font-ui);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body {
  min-height: 100dvh;
  margin: 0;
  overflow: hidden;
  background: hsl(var(--bg-100));
  color: hsl(var(--text-100));
}

button,
textarea,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

svg {
  display: block;
}

.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;
}

.app-shell {
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  min-height: 100dvh;
  overflow: hidden;
}

body.login-active {
  overflow: auto;
  background: hsl(var(--bg-300));
}

body.login-active .app-shell {
  grid-template-columns: 1fr;
}

body.login-active .main {
  overflow: auto;
  background: hsl(var(--bg-300));
}

body.login-active .sidebar,
body.login-active .mobile-sidebar-button,
body.login-active .incognito-button {
  display: none;
}

.sidebar {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  border-right: 1px solid var(--border-soft);
  background:
    linear-gradient(to top, hsl(var(--bg-200) / 0.05), hsl(var(--bg-200) / 0.3)),
    hsl(var(--bg-100));
}

.sidebar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3rem;
  padding: 0.5rem 0.75rem 0.375rem 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 5.125rem;
  height: 1.5rem;
  min-width: 0;
  color: hsl(var(--text-100));
}

.brand svg {
  width: 100%;
  height: 1.25rem;
  fill: currentColor;
  stroke: none;
}

.sidebar__actions {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: hsl(var(--text-300));
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease;
}

.icon-button svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.anthropicon {
  display: flex;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  font-family: var(--font-anthropicons);
  font-feature-settings: "liga" 0;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "opsz" var(--cds-opsz, 16), "wght" var(--cds-wght, 533.3);
  font-weight: var(--cds-wght, 533.3);
  line-height: 1;
  user-select: none;
}

.anthropicon--12 {
  --cds-opsz: 12;
  --cds-wght: 577.8;
  font-size: 0.75rem;
}

.anthropicon--16 {
  --cds-opsz: 16;
  --cds-wght: 533.3;
  font-size: 1rem;
}

.anthropicon--20 {
  --cds-opsz: 20;
  --cds-wght: 433.3;
  font-size: 1.25rem;
}

.anthropicon--heavy {
  --cds-wght: 700;
}

.icon-button:hover,
.icon-button:focus-visible,
.tool-button:hover,
.voice-button:hover,
.model-selector:hover,
.incognito-button:hover {
  background: hsl(var(--text-100) / 0.07);
  color: hsl(var(--text-000));
}

.icon-button:focus-visible,
.tool-button:focus-visible,
.voice-button:focus-visible,
.model-selector:focus-visible,
.prompt-categories button:focus-visible,
.account__button:focus-visible,
.nav-item:focus-visible,
.recent-list a:focus-visible,
.incognito-button:focus-visible,
.mobile-sidebar-button:focus-visible,
textarea:focus-visible {
  outline: 2px solid hsl(var(--focus));
  outline-offset: 2px;
}

.login-action:focus-visible,
.login-email:focus-visible,
.google-button-mount:focus-within,
.download-app:focus-visible,
.login-brand:focus-visible,
.pricing-tab:focus-visible,
.pricing-card__cta:focus-visible,
.pricing-footnote a:focus-visible {
  outline: 2px solid hsl(var(--focus));
  outline-offset: 2px;
}

.sidebar__scroll {
  min-height: 0;
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: hsl(var(--border) / 0.35) transparent;
  scrollbar-width: thin;
}

.nav-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 0.5rem;
}

.nav-item {
  display: flex;
  align-items: center;
  min-height: 2rem;
  gap: 0.75rem;
  overflow: hidden;
  border-radius: 9px;
  padding: 0.375rem 0.75rem;
  color: hsl(var(--text-200));
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  transition: background-color 120ms ease, color 120ms ease;
}

.nav-item:hover,
.nav-item:focus-visible,
.nav-item.is-active {
  background: hsl(var(--text-100) / 0.055);
  color: hsl(var(--text-000));
}

.nav-item > span:not(.nav-icon):not(.nav-extra) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-icon {
  display: inline-grid;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  place-items: center;
  color: hsl(var(--text-100));
}

.nav-icon--round {
  width: 1.4rem;
  height: 1.4rem;
  margin-inline: -0.2rem 0;
  border-radius: 999px;
  background: hsl(var(--text-500) / 0.15);
  transition: transform 150ms ease, background-color 150ms ease;
}

.nav-item--new:hover .nav-icon--round {
  transform: rotate(-3deg) scale(1.08);
  background: hsl(var(--text-500) / 0.25);
}

.nav-extra {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  color: hsl(var(--text-500));
}

.nav-section {
  margin-top: 0.875rem;
  padding-inline: 0.5rem;
}

.nav-section .nav-group {
  padding: 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 1.625rem;
}

.section-title {
  margin: 0 0 0.375rem;
  padding-left: 0.25rem;
  color: hsl(var(--text-500));
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
}

.section-head .section-title {
  margin-bottom: 0;
}

.icon-button--tiny {
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 0.25rem;
  color: hsl(var(--text-500));
}

.recent-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 0;
  padding: 0.25rem 0 1rem;
  list-style: none;
}

.recent-list a {
  display: block;
  min-height: 2rem;
  overflow: hidden;
  border-radius: 9px;
  padding: 0.46rem 0.75rem;
  color: hsl(var(--text-200));
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: background-color 120ms ease, color 120ms ease;
}

.recent-list a:hover,
.recent-list a:focus-visible {
  background: hsl(var(--text-100) / 0.055);
  color: hsl(var(--text-000));
}

.recent-list a.muted {
  color: hsl(var(--text-300) / 0.62);
}

.account {
  flex: 0 0 auto;
  border-top: 1px solid var(--border-soft);
}

.account__button {
  display: flex;
  width: 100%;
  min-height: 3.75rem;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  background: transparent;
  padding: 0.625rem 0.875rem;
  color: hsl(var(--text-100));
  text-align: left;
  transition: background-color 150ms ease;
}

.account__button:hover {
  background: hsl(var(--text-100) / 0.04);
}

.avatar {
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 999px;
}

.avatar svg {
  width: 100%;
  height: 100%;
  stroke: none;
}

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

.account__copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 0.125rem;
}

.account__copy strong,
.account__copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account__copy strong {
  font-size: 0.875rem;
  line-height: 1.15;
}

.account__copy span {
  color: hsl(var(--text-500));
  font-size: 0.75rem;
}

.account__download {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid hsl(var(--border) / 0.2);
  border-radius: 0.5rem;
  color: hsl(var(--text-300));
  transition: background-color 150ms ease, border-color 150ms ease;
}

.account__button:hover .account__download {
  background: hsl(var(--text-100) / 0.07);
  border-color: transparent;
}

.account__logout {
  flex: 0 0 auto;
  border: 1px solid hsl(var(--border) / 0.12);
  border-radius: 0.5rem;
  background: transparent;
  color: hsl(var(--text-300));
  cursor: pointer;
  padding: 0.375rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.account__logout:hover,
.account__logout:focus-visible {
  border-color: hsl(var(--border) / 0.24);
  background: hsl(var(--text-100) / 0.06);
  color: hsl(var(--text-100));
}

.account__chevrons svg {
  width: 0.875rem;
  height: 0.875rem;
  color: hsl(var(--text-500));
  fill: currentColor;
  stroke: none;
}

.main {
  position: relative;
  min-width: 0;
  min-height: 100dvh;
  overflow: auto;
  background: hsl(var(--bg-100));
}

.main::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, hsl(var(--bg-200)) 1px, transparent 1px),
    linear-gradient(to bottom, hsl(var(--bg-200)) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  opacity: 0;
}

.mobile-sidebar-button {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 8;
  display: none;
}

.incognito-button {
  position: fixed;
  top: 0.625rem;
  right: 0.75rem;
  z-index: 2;
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: hsl(var(--text-300));
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease;
}

.incognito-button svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: none;
  fill: currentColor;
}

.prompt-categories svg,
.claude-spark svg {
  stroke: none;
  fill: currentColor;
}

@keyframes look-around {
  0%,
  16.6%,
  100% {
    transform: translateX(-1.5px);
  }
  25%,
  41.6% {
    transform: translateX(1.5px);
  }
  50%,
  66.6% {
    transform: translateY(-1.5px);
  }
  75%,
  91.6% {
    transform: translate(0, 0);
  }
}

.incognito-button:hover .incognito-button__eyes {
  animation: look-around 2.4s ease-in-out infinite;
}

.login-screen[hidden],
.welcome[hidden] {
  display: none;
}

.login-screen {
  position: relative;
  display: block;
  min-height: 100dvh;
  overflow: visible;
  background:
    linear-gradient(to bottom, hsl(var(--bg-200) / 0.74), transparent 44rem),
    radial-gradient(circle at 50% 18rem, hsl(var(--brand-clay) / 0.08), transparent 32rem),
    hsl(var(--bg-300));
  color: hsl(var(--text-100));
  padding: 0;
}

.login-screen--split {
  display: none;
}

.login-screen::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 18rem;
  pointer-events: none;
  background: linear-gradient(to top, hsl(var(--always-black) / 0.16), transparent);
  content: "";
}

.login-nav {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid hsl(var(--border) / 0.08);
  background: hsl(var(--bg-300) / 0.88);
  backdrop-filter: blur(18px);
}

.login-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(calc(100% - clamp(2rem, 1.43rem + 2.86vw, 4rem)), 90rem);
  height: 4.5rem;
  margin-inline: auto;
}

.login-brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  min-height: 2.5rem;
  flex: 0 0 auto;
  border-radius: 0.625rem;
  color: hsl(var(--text-100));
}

.login-brand__spark {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--brand-clay));
}

.login-brand__spark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: none;
}

.login-brand__word {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.login-nav__links,
.login-nav__actions {
  display: flex;
  align-items: center;
}

.login-nav__links {
  gap: 1rem;
  min-width: 0;
  flex: 1;
  justify-content: flex-end;
}

.login-nav__item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-height: 2rem;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: hsl(var(--text-200));
  cursor: pointer;
  padding: 0 0.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color 150ms ease;
}

.login-nav__item:hover {
  color: hsl(var(--text-100));
}

.login-nav__item svg {
  width: 0.875rem;
  height: 0.875rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.login-nav__actions {
  gap: 0.625rem;
  flex: 0 0 auto;
}

.login-nav__sales,
.login-nav__try,
.login-nav__drawer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.375rem;
  border-radius: 0.5rem;
  cursor: pointer;
  padding: 0 0.875rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.login-nav__sales {
  border: 1px solid hsl(var(--border) / 0.16);
  background: transparent;
  color: hsl(var(--text-200));
}

.login-nav__sales:hover {
  border-color: hsl(var(--border) / 0.28);
  color: hsl(var(--text-100));
}

.login-nav__try,
.login-nav__drawer button {
  border: 1px solid hsl(60 14% 92%);
  background: hsl(60 14% 93%);
  color: hsl(var(--bg-400));
}

.login-nav__try:hover,
.login-nav__drawer button:hover {
  background: hsl(60 14% 98%);
}

.login-nav__menu {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid hsl(var(--border) / 0.12);
  border-radius: 0.625rem;
  background: transparent;
  color: hsl(var(--text-100));
  cursor: pointer;
}

.login-nav__menu span {
  display: block;
  width: 1.125rem;
  height: 1px;
  background: currentColor;
}

.login-nav__menu span + span {
  margin-top: 0.375rem;
}

.login-nav__drawer {
  width: min(calc(100% - 2rem), 90rem);
  margin: 0 auto 1rem;
  border: 1px solid hsl(var(--border) / 0.1);
  border-radius: 1rem;
  background: hsl(var(--bg-100) / 0.98);
  box-shadow: 0 1.5rem 3rem hsl(var(--always-black) / 0.28);
  padding: 0.5rem;
}

.login-nav__drawer[hidden] {
  display: none;
}

.login-nav__drawer a,
.login-nav__drawer button {
  width: 100%;
}

.login-nav__drawer a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  border-radius: 0.625rem;
  color: hsl(var(--text-100));
  padding: 0 0.75rem;
  font-size: 0.9375rem;
  font-weight: 650;
}

.login-nav__drawer a:hover {
  background: hsl(var(--text-100) / 0.06);
}

.login-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100dvh - 4.5rem);
  grid-template-columns: minmax(22rem, 28rem) minmax(30rem, 45rem);
  align-items: center;
  justify-content: center;
  gap: clamp(4rem, 8vw, 8rem);
  padding: clamp(4rem, 6vh, 6rem) clamp(2rem, 4vw, 4rem) clamp(4rem, 6vh, 6rem);
}

.login-screen__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 28rem);
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.login-hero {
  display: flex;
  width: min(100%, 32rem);
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.login-hero h1 {
  margin: 0;
  color: hsl(var(--text-100));
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 4vw, 4.25rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
}

.login-hero p {
  margin: 0;
  color: hsl(var(--text-200));
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
}

.login-card {
  display: flex;
  width: min(100%, 28rem);
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid hsl(var(--border) / 0.13);
  border-radius: 2rem;
  background: hsl(var(--bg-100) / 0.94);
  box-shadow:
    0 1.5rem 3rem hsl(var(--always-black) / 0.28),
    inset 0 1px 0 hsl(var(--text-100) / 0.04);
  padding: 1rem;
}

.login-action,
.download-app,
.login-email {
  width: 100%;
  min-height: 2.75rem;
  border-radius: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0;
}

.login-action,
.download-app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border: 0;
  cursor: pointer;
  line-height: 1.2;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.login-action[disabled],
.download-app[disabled] {
  cursor: wait;
  opacity: 0.64;
  transform: none;
}

.login-action:hover,
.download-app:hover {
  transform: translateY(-1px);
}

.google-login {
  display: grid;
  width: 100%;
  min-height: 2.75rem;
  place-items: stretch;
}

.google-button-mount {
  display: grid;
  width: 100%;
  min-height: 2.75rem;
  place-items: stretch center;
  overflow: hidden;
  border-radius: 0.625rem;
}

.google-button-mount > div,
.google-button-mount iframe {
  width: 100% !important;
  min-width: 100% !important;
}

.login-action--google {
  border: 1px solid hsl(var(--border) / 0.18);
  background: transparent;
  color: hsl(var(--text-100));
}

.login-action--google:hover {
  border-color: hsl(var(--border) / 0.28);
  background: hsl(var(--text-100) / 0.05);
}

.login-action--google svg {
  width: 1.125rem;
  height: 1.125rem;
  flex: 0 0 auto;
}

.login-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1rem;
  color: hsl(var(--text-500));
  font-size: 0.8125rem;
  font-weight: 650;
  line-height: 1;
}

.login-status {
  margin: -0.125rem 0 0;
  border: 1px solid hsl(var(--border) / 0.1);
  border-radius: 0.625rem;
  background: hsl(var(--bg-000) / 0.72);
  color: hsl(var(--text-300));
  padding: 0.625rem 0.75rem;
  font-size: 0.78125rem;
  font-weight: 600;
  line-height: 1.38;
  text-align: center;
}

.login-status[data-tone="success"] {
  border-color: hsl(142 38% 49% / 0.28);
  background: hsl(142 35% 18% / 0.32);
  color: hsl(142 48% 75%);
}

.login-status[data-tone="warning"] {
  border-color: hsl(36 64% 54% / 0.34);
  background: hsl(36 48% 17% / 0.36);
  color: hsl(37 72% 76%);
}

.login-status[data-tone="error"] {
  border-color: hsl(5 72% 57% / 0.36);
  background: hsl(5 48% 17% / 0.38);
  color: hsl(5 84% 78%);
}

.login-email {
  border: 1px solid hsl(var(--border) / 0.08);
  background: hsl(var(--bg-000));
  color: hsl(var(--text-100));
  padding: 0 0.875rem;
  outline: none;
}

.login-email::placeholder {
  color: hsl(var(--text-400));
  opacity: 1;
}

.login-email:focus {
  border-color: hsl(var(--border) / 0.32);
  background: hsl(var(--bg-000));
}

.login-action--email {
  background: hsl(60 14% 93%);
  color: hsl(var(--bg-400));
}

.login-action--email:hover {
  background: hsl(60 14% 98%);
}

.login-action--sso {
  border: 1px solid hsl(var(--border) / 0.16);
  background: transparent;
  color: hsl(var(--text-200));
}

.login-action--sso:hover {
  border-color: hsl(var(--border) / 0.28);
  background: hsl(var(--text-100) / 0.05);
  color: hsl(var(--text-100));
}

.login-legal {
  margin: 0.125rem 0 0;
  color: hsl(var(--text-400));
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.42;
  text-align: center;
}

.login-legal a {
  color: hsl(var(--text-200));
  text-decoration: underline;
  text-underline-offset: 2px;
}

.download-app {
  width: auto;
  min-width: 15.25rem;
  border: 1px solid hsl(var(--border) / 0.16);
  background: hsl(var(--bg-100) / 0.68);
  color: hsl(var(--text-200));
  padding: 0 1.25rem;
}

.download-app:hover {
  border-color: hsl(var(--border) / 0.25);
  background: hsl(var(--text-100) / 0.06);
  color: hsl(var(--text-100));
}

.download-app__icon {
  display: grid;
  width: 1rem;
  height: 1rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.125rem;
  color: currentColor;
}

.download-app__icon span {
  background: currentColor;
}

.login-preview {
  position: relative;
  display: grid;
  width: min(100%, 45rem);
  aspect-ratio: 1080 / 1350;
  min-height: min(70vh, 56rem);
  place-items: center;
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 0.875rem;
  overflow: hidden;
  background: hsl(120 5% 13%);
  box-shadow:
    0 1.5rem 4rem hsl(var(--always-black) / 0.22),
    inset 0 1px 0 hsl(var(--text-100) / 0.035);
}

.login-preview__video {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-preview__status {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: hsl(var(--text-100));
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 2.8vw, 2.5rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.login-preview__spark {
  display: inline-flex;
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  color: hsl(var(--brand-clay));
}

.login-preview__spark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: none;
}

.pricing-section {
  position: relative;
  z-index: 1;
  width: min(calc(100% - clamp(2rem, 1.43rem + 2.86vw, 4rem)), 90rem);
  margin-inline: auto;
  padding: clamp(6rem, 8vw, 9rem) 0 7rem;
}

.pricing-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.pricing-header h2 {
  margin: 0;
  color: hsl(var(--text-100));
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.pricing-tabs {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  min-height: 2.5rem;
  border: 0;
  border-radius: 0.625rem;
  background: hsl(var(--bg-300));
  padding: 0.125rem;
  box-shadow: inset 0 0 0 1px hsl(var(--border) / 0.04);
}

.pricing-tab {
  min-height: 2.25rem;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: hsl(var(--text-500));
  cursor: pointer;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 650;
  letter-spacing: 0;
  transition: background-color 150ms ease, color 150ms ease;
  white-space: nowrap;
}

.pricing-tab:hover {
  color: hsl(var(--text-300));
}

.pricing-tab--active {
  background: hsl(var(--bg-000));
  color: hsl(var(--text-100));
  box-shadow: 0 0 0 0.5px hsl(var(--border) / 0.22), 0 0.5px 1px hsl(var(--always-black) / 0.25);
}

.pricing-panel[hidden] {
  display: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 2rem);
  align-items: stretch;
}

.pricing-grid--organization {
  grid-template-columns: repeat(2, minmax(0, 30rem));
  gap: 1rem;
  justify-content: center;
}

.pricing-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 0.5px solid hsl(var(--border-400) / 0.34);
  border-radius: 1.5rem;
  background: hsl(var(--bg-200));
  padding: 2rem clamp(1.25rem, 1.8vw, 2rem);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pricing-card--featured {
  border-color: hsl(var(--accent-000) / 0.2);
  box-shadow:
    0 0 1.5rem hsl(var(--accent-000) / 0.1),
    0 0.5rem 1.75rem hsl(var(--always-black) / 0.08);
}

.pricing-card--organization {
  width: 100%;
  max-width: 30rem;
  background: hsl(var(--bg-200));
}

.pricing-card:hover {
  box-shadow: 0 0.45rem 1.25rem hsl(var(--always-black) / 0.12);
  transform: translateY(-1px);
}

.pricing-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pricing-card__icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--text-000));
}

.pricing-card__head .pricing-card__icon {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.pricing-card__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: none;
}

.pricing-card__icon .fill-pictogram-highlight-default {
  fill: hsl(var(--pictogram-100));
}

.pricing-card h3 {
  margin: 0 0 0.25rem;
  color: hsl(var(--text-100));
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2vw, 1.875rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.pricing-card p {
  margin: 0;
}

.pricing-card__summary {
  min-height: 5.25rem;
}

.pricing-card__summary--compact {
  min-height: 0;
  margin-bottom: 1.5rem;
}

.pricing-card__summary p,
.pricing-card__price span,
.pricing-card__note,
.pricing-footnote,
.pricing-faq p {
  color: hsl(var(--text-400));
}

.pricing-card__summary p {
  color: hsl(var(--text-100));
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-weight: 500;
  line-height: 1.45;
}

.pricing-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
  border-radius: 999px;
  background: hsl(var(--border-300) / 0.08);
  color: hsl(var(--text-300));
  padding: 0 0.625rem;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1;
}

.pricing-card__price {
  display: flex;
  flex-direction: column;
  min-height: 5.55rem;
  gap: 0.35rem;
  justify-content: flex-start;
}

.pricing-card__price strong {
  color: hsl(var(--text-100));
  font-size: 1.5rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
}

.pricing-card__price span {
  max-width: 24rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.42;
}

.pricing-seat-box {
  display: grid;
  gap: 1rem;
  border-radius: 0.75rem;
  background: hsl(var(--bg-100));
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.pricing-seat-box p {
  color: hsl(var(--text-400));
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
}

.pricing-seat-box a {
  display: inline;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, currentColor, transparent 60%);
  text-underline-offset: 3px;
}

.pricing-seat-box a:hover {
  text-decoration-color: currentColor;
}

.pricing-seat {
  display: grid;
  gap: 0.25rem;
}

.pricing-seat__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pricing-seat__label,
.pricing-seat-box__lead {
  color: hsl(var(--text-200));
  font-weight: 650;
}

.pricing-seat-box__lead {
  color: hsl(var(--text-100));
}

.pricing-seat__price {
  color: hsl(var(--text-100));
  white-space: nowrap;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
}

.pricing-seat__price span {
  color: hsl(var(--text-400));
  font-size: 0.875rem;
}

.pricing-seat-box__divider {
  height: 0.5px;
  background: hsl(var(--border-300) / 0.18);
}

.pricing-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  margin: 1rem 0 1.5rem;
  border: 0;
  border-radius: 0.6rem;
  background: hsl(60 14% 92%);
  color: hsl(var(--bg-400));
  box-shadow: inset 0 0 0 1px hsl(var(--always-black) / 0.04);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: 0;
  transition: background-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.pricing-card__cta:hover {
  background: hsl(60 14% 97%);
  box-shadow: inset 0 0 0 1px hsl(var(--always-black) / 0.05), 0 0.5rem 1rem hsl(var(--always-black) / 0.12);
  transform: scale(1.006, 1.015);
}

.pricing-card__note {
  min-height: 1.125rem;
  margin-top: -1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
}

.pricing-card__divider {
  width: 100%;
  height: 1px;
  margin-bottom: 1.5rem;
  background: hsl(var(--border-300) / 0.18);
}

.pricing-card__spacer {
  flex: 1 1 auto;
  min-height: 1.5rem;
}

.pricing-card__includes {
  margin-bottom: 0.5rem;
  color: hsl(var(--text-100));
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.4;
}

.pricing-features {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 0.75rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  align-items: start;
  min-height: 1.25rem;
  color: hsl(var(--text-200));
  font-size: clamp(0.875rem, 1.04vw, 1rem);
  font-weight: 500;
  line-height: 1.625;
}

.pricing-features li::before {
  display: block;
  width: 0.45rem;
  height: 0.75rem;
  margin: 0.18rem 0 0 0.42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  color: hsl(var(--text-100));
  content: "";
  transform: rotate(45deg);
}

.pricing-features--organization li {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.5;
}

.pricing-footnote {
  max-width: 70rem;
  margin: 2.5rem auto 0;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
}

.pricing-footnote a {
  display: inline;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, currentColor, transparent 60%);
  text-underline-offset: 3px;
}

.pricing-footnote a:hover {
  text-decoration-color: currentColor;
}

.pricing-faq {
  display: grid;
  width: min(100%, 48rem);
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: clamp(6rem, 8vw, 9rem) auto 0;
}

.pricing-faq h3 {
  margin: 0 0 1.75rem;
  color: hsl(var(--text-100));
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
}

.pricing-faq details {
  border-bottom: 1px solid hsl(var(--border) / 0.1);
  padding: 0.75rem 0 1rem;
}

.pricing-faq summary {
  color: hsl(var(--text-200));
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
}

.pricing-faq p {
  max-width: 42rem;
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.55;
}

.welcome {
  display: flex;
  width: min(100%, 64rem);
  min-height: 100dvh;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-inline: auto;
  padding: 25.4vh 3.5rem 3rem;
}

.welcome h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: min(100%, 42rem);
  margin: 0 0 0.125rem;
  color: hsl(var(--text-200));
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 1.2rem + 2vw, 2.5rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}

.welcome h1 span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.claude-spark {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  color: hsl(var(--brand-clay));
}

.claude-spark svg {
  width: 100%;
  height: 100%;
}

.composer {
  display: flex;
  width: min(100%, 42rem);
  min-height: 7.25rem;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid transparent;
  border-radius: 20px;
  background: hsl(var(--bg-000));
  box-shadow:
    0 0.25rem 1.25rem hsl(var(--always-black) / 0.035),
    0 0 0 0.5px hsl(var(--border) / 0.15);
  transition: box-shadow 180ms ease;
}

.composer:hover,
.composer:focus-within {
  box-shadow:
    0 0.25rem 1.25rem hsl(var(--always-black) / 0.075),
    0 0 0 0.5px hsl(var(--border) / 0.3);
}

.composer textarea {
  width: 100%;
  min-height: 4.25rem;
  max-height: 18rem;
  resize: none;
  border: 0;
  border-radius: 20px 20px 0 0;
  background: transparent;
  color: hsl(var(--text-100));
  padding: 1.125rem 1.25rem 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  outline: none;
}

.composer textarea::placeholder {
  color: hsl(var(--text-500));
  opacity: 1;
}

.composer__toolbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0 0.75rem 0.75rem;
}

.composer__spacer {
  min-width: 0;
  flex: 1;
}

.tool-button,
.voice-button,
.model-selector {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: hsl(var(--text-200));
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease;
}

.tool-button,
.voice-button {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
}

.tool-button svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
  stroke: none;
}

.tool-button--add svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.tool-button--add {
  color: hsl(var(--text-100));
}

.model-selector {
  gap: 0.25rem;
  height: 2rem;
  flex: 0 1 auto;
  min-width: 0;
  padding: 0 0.5rem 0 0.625rem;
  color: hsl(var(--text-200));
  font-size: 0.875rem;
  line-height: 1;
}

.model-selector span:first-child,
.model-selector__mode {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.model-selector__mode {
  color: hsl(var(--text-500));
}

.model-selector svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  stroke: none;
  fill: currentColor;
  opacity: 0.75;
}

.voice-button {
  padding-inline: 0.375rem;
}

.voice-icon {
  width: 1.25rem;
  height: 1.25rem;
  overflow: visible;
  fill: none;
  stroke: none;
}


.prompt-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  width: min(100%, 42rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.prompt-categories button {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  height: 2rem;
  min-width: max-content;
  border: 0;
  border-radius: 0.5rem;
  background: hsl(var(--text-100) / 0.08);
  color: hsl(var(--text-100));
  box-shadow: 0 1px 0 hsl(var(--always-black) / 0.2);
  cursor: pointer;
  padding: 0 0.75rem 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  transition: background-color 150ms ease, color 150ms ease;
  white-space: nowrap;
}

.prompt-categories button:hover {
  background: hsl(var(--text-100) / 0.12);
}

.prompt-categories svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--text-500));
}


[data-tooltip]::after {
  position: absolute;
  z-index: 20;
  bottom: calc(100% + 0.45rem);
  left: 50%;
  max-width: 14rem;
  padding: 0.35rem 0.5rem;
  border-radius: 0.375rem;
  background: hsl(var(--bg-400));
  color: hsl(var(--text-100));
  content: attr(data-tooltip);
  font-size: 0.75rem;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(0.25rem);
  transition: opacity 120ms ease, transform 120ms ease;
  white-space: nowrap;
}

[data-tooltip]:hover::after,
[data-tooltip]:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.sidebar [data-tooltip]::after {
  top: 50%;
  bottom: auto;
  left: calc(100% + 0.5rem);
  transform: translateY(-50%) translateX(-0.25rem);
}

.sidebar [data-tooltip]:hover::after,
.sidebar [data-tooltip]:focus-visible::after {
  transform: translateY(-50%) translateX(0);
}

body.sidebar-collapsed {
  --sidebar-width: 0rem;
}

body.sidebar-collapsed .sidebar {
  transform: translateX(-100%);
}

.sidebar {
  transition: transform 180ms ease;
}

@media (max-width: 900px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(18rem, calc(100vw - 3.25rem));
    box-shadow: 0.5rem 0 2rem hsl(var(--always-black) / 0.35);
    transform: translateX(-105%);
  }

  body.sidebar-open .sidebar {
    transform: translateX(0);
  }

  body.sidebar-open::before {
    position: fixed;
    z-index: 4;
    inset: 0;
    background: hsl(var(--always-black) / 0.48);
    content: "";
  }

  .mobile-sidebar-button {
    display: inline-grid;
  }

  .welcome {
    padding: 13vh 1.25rem 2rem;
  }

  .login-nav__links,
  .login-nav__actions {
    display: none;
  }

  .login-nav__menu {
    display: grid;
  }

  .login-hero-shell {
    min-height: calc(91dvh - 4.5rem);
    grid-template-columns: minmax(0, 30rem);
    gap: 0;
    padding: 2.75rem 1.5rem 3.5rem;
  }

  .login-preview {
    display: none;
  }

  .pricing-header {
    align-items: center;
    flex-direction: column;
  }

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

  .pricing-grid--organization {
    grid-template-columns: minmax(0, 30rem);
  }

  .pricing-faq {
    grid-template-columns: 1fr;
  }

  .pricing-faq details {
    grid-column: auto;
  }
}

@media (min-width: 1000px) {
  .pricing-grid--organization {
    gap: 2rem;
  }
}

@media (max-width: 620px) {
  body {
    overflow: auto;
  }
  .main {
    overflow: visible;
  }

  .login-nav__inner {
    width: min(calc(100% - 2rem), 90rem);
    height: 4rem;
  }

  .login-hero-shell {
    min-height: calc(91dvh - 4rem);
    padding: 2.25rem 1rem 3rem;
  }

  .login-brand__spark {
    width: 1.375rem;
    height: 1.375rem;
  }

  .login-brand__word {
    font-size: 1.35rem;
  }

  .login-screen__content {
    gap: 1rem;
  }

  .login-hero {
    gap: 0.5rem;
    margin-bottom: 0.25rem;
  }

  .login-hero h1 {
    font-size: 2.75rem;
    line-height: 1.05;
  }

  .login-hero p {
    font-size: 1.0625rem;
  }

  .login-card {
    border-radius: 1.5rem;
    padding: 0.875rem;
  }

  .login-action,
  .download-app,
  .login-email {
    min-height: 2.75rem;
    font-size: 0.875rem;
  }

  .download-app {
    width: 100%;
    min-width: 0;
  }

  .pricing-section {
    width: min(calc(100% - 2rem), 90rem);
    padding: 2.5rem 0 5rem;
  }

  .pricing-tabs {
    display: inline-flex;
    width: auto;
    max-width: 100%;
    border-radius: 1rem;
  }

  .pricing-tab {
    border-radius: 0.75rem;
    padding-inline: 1rem;
  }

  .pricing-card {
    border-radius: 1.125rem;
    padding: 2rem 1.25rem;
  }

  .pricing-card__head,
  .pricing-seat__row {
    gap: 0.75rem;
  }

  .pricing-card__badge {
    padding-inline: 0.5rem;
    font-size: 0.6875rem;
  }

  .pricing-card h3 {
    font-size: 1.75rem;
  }

  .pricing-card__price strong {
    font-size: 2rem;
  }

  .pricing-seat__price {
    font-size: 1.0625rem;
  }

  .welcome {
    justify-content: flex-start;
    min-height: 100dvh;
    padding-top: 16vh;
  }

  .welcome h1 {
    gap: 0.5rem;
    font-size: 1.875rem;
    line-height: 1.25;
  }

  .claude-spark {
    width: 1.75rem;
    height: 1.75rem;
  }

  .composer {
    min-height: 7rem;
    border-radius: 18px;
  }

  .composer textarea {
    min-height: 4rem;
    padding: 1rem 1rem 0.5rem;
  }

  .composer__toolbar {
    gap: 0.25rem;
    padding-inline: 0.625rem;
  }

  .model-selector {
    max-width: 10rem;
    padding-inline: 0.5rem;
    font-size: 0.8125rem;
  }

  .prompt-categories {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    width: calc(100% + 2.5rem);
    margin-inline: -1.25rem;
    padding: 0 1.25rem 0.25rem;
    scrollbar-width: none;
  }

  .prompt-categories::-webkit-scrollbar {
    display: none;
  }

  .prompt-categories button {
    flex: 0 0 auto;
  }

  [data-tooltip]::after {
    display: none;
  }
}

@media (min-width: 1600px) {
  .welcome {
    padding-top: 25.4vh;
  }
}
