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

:root {
  color-scheme: light;
  --ink: #141414;
  --muted: #666666;
  --soft: #f6f6f4;
  --line: #e7e4df;
  --paper: #ffffff;
  --accent: #694fd6;
  --accent-soft: #ece8ff;
  --green: #dcefe2;
  --yellow: #f3e7bf;
  --shadow: 0 24px 70px rgba(20, 20, 20, 0.11);
  --radius: 8px;
  --section: min(1180px, calc(100% - 40px));
  --progress: 0%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  scrollbar-width: none;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body::selection {
  color: #ffffff;
  background: var(--ink);
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
a,
summary,
input,
.product-window,
.workflow-card,
.price-card,
.preview-row,
.integration-pill,
.feature-tab,
.quick-action,
.billing-toggle button {
  -webkit-tap-highlight-color: transparent;
}

button,
a,
summary {
  position: relative;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: var(--progress);
  height: 3px;
  background: var(--ink);
  transform-origin: left center;
  transition: width 90ms linear;
}

.has-ripple {
  overflow: hidden;
}

.ripple {
  position: absolute;
  width: 16px;
  height: 16px;
  pointer-events: none;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.18;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple-burst 620ms ease-out forwards;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1220px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 10px 10px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(231, 228, 223, 0.82);
  border-radius: var(--radius);
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  border-color: #dedad3;
  box-shadow: 0 14px 40px rgba(20, 20, 20, 0.08);
}

.brand,
.site-nav,
.header-actions,
.hero-actions,
.link-button,
.billing-toggle,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

.brand img {
  width: 156px;
  height: auto;
  transition: transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand:hover img {
  transform: translateY(-1px);
}

.site-nav {
  justify-content: center;
  gap: 6px;
}

.site-nav a,
.site-footer a {
  color: #4a4a4a;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-nav a::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--soft);
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-footer a:hover::after,
.site-footer a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions {
  gap: 10px;
}

.link-button {
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 170ms ease,
    background 170ms ease,
    border-color 170ms ease,
    color 170ms ease,
    box-shadow 170ms ease;
}

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

.link-button:active,
.feature-tab:active,
.quick-action:active,
.integration-pill:active,
.billing-toggle button:active {
  transform: translateY(1px) scale(0.98);
}

.link-button.dark {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.12);
}

.link-button.dark:hover,
.link-button.dark:focus-visible {
  background: #000000;
}

.link-button.light,
.link-button.quiet {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.link-button.quiet {
  box-shadow: none;
}

.link-button.large {
  min-height: 52px;
  padding-inline: 22px;
  font-size: 0.98rem;
}

.nav-toggle {
  display: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: #d7d2c9;
}

.nav-toggle span {
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(38deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-38deg);
}

.section-pad,
.section {
  width: var(--section);
  margin: 0 auto;
}

.section-pad {
  padding: 92px 0 72px;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding-top: 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: 50px;
  min-height: calc(100vh - 88px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.integration-copy h2,
.waitlist-card h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.25rem, 7.4vw, 6.9rem);
  line-height: 0.9;
}

.hero-text {
  max-width: 610px;
  margin: 26px 0 0;
  color: #4f4f4f;
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin: 44px 0 0;
}

.hero-stats div {
  padding: 18px 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  animation: stat-float 5200ms ease-in-out infinite;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.hero-stats div:nth-child(2) {
  animation-delay: 180ms;
}

.hero-stats div:nth-child(3) {
  animation-delay: 360ms;
}

.hero-stats div:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: #d7d2c9;
}

.hero-stats dt {
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-width: 0;
  perspective: 1200px;
}

.product-window {
  overflow: hidden;
  background: #141414;
  border: 1px solid #222222;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotateX(0deg) rotateY(-3deg);
  transition:
    transform 500ms ease,
    box-shadow 500ms ease,
    filter 500ms ease;
}

.hero-visual:hover .product-window {
  transform: rotateX(1deg) rotateY(0deg) translateY(-4px);
  box-shadow: 0 34px 90px rgba(20, 20, 20, 0.17);
}

.orbital-status {
  position: absolute;
  top: -18px;
  right: 24px;
  z-index: 2;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: #ffffff;
  background: #141414;
  border: 1px solid #2f2f2f;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.2);
  font-size: 0.84rem;
  font-weight: 850;
  animation: status-enter 760ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.orbital-status.is-changing {
  animation: status-pop 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.pulse-dot {
  position: relative;
  width: 9px;
  height: 9px;
  background: #97e2a8;
  border-radius: 50%;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(151, 226, 168, 0.6);
  border-radius: 50%;
  animation: pulse-ring 1600ms ease-out infinite;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: min(390px, calc(100% - 28px));
  margin: 12px auto 0;
  padding: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(20, 20, 20, 0.08);
  animation: quick-actions-rise 700ms cubic-bezier(0.2, 0.9, 0.2, 1) 220ms both;
}

.quick-action {
  min-height: 38px;
  color: #555555;
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 850;
  overflow: hidden;
  transition:
    color 170ms ease,
    background 170ms ease,
    transform 170ms ease;
}

.quick-action.is-active {
  color: #ffffff;
  background: var(--ink);
}

.window-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-bottom: 1px solid #2a2a2a;
}

.window-bar span {
  width: 8px;
  height: 8px;
  background: #6a6a68;
  border-radius: 50%;
  animation: window-dot 2800ms ease-in-out infinite;
}

.window-bar span:nth-child(2) {
  animation-delay: 160ms;
}

.window-bar span:nth-child(3) {
  animation-delay: 320ms;
}

.product-window img {
  width: 100%;
  aspect-ratio: 4824 / 2564;
  object-fit: cover;
  object-position: left top;
  transition:
    transform 700ms ease,
    filter 700ms ease;
}

.hero-visual:hover .product-window img {
  transform: scale(1.018);
  filter: saturate(1.08);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading h2,
.integration-copy h2,
.waitlist-card h2 {
  max-width: 760px;
  font-size: clamp(2.15rem, 4.8vw, 4.55rem);
  line-height: 0.98;
  text-wrap: balance;
}

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

.thread-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  height: 34px;
  margin: -8px 0 14px;
}

.thread-flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--line), var(--accent), var(--line));
  background-size: 220% 100%;
  animation: thread-line 3400ms linear infinite;
}

.thread-flow span {
  position: relative;
  justify-self: center;
  align-self: center;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 8px #ffffff;
}

.thread-flow span::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(105, 79, 214, 0.3);
  border-radius: 50%;
  opacity: 0;
  animation: node-pop 2400ms ease-in-out infinite;
}

.thread-flow span:nth-child(2)::after {
  animation-delay: 300ms;
}

.thread-flow span:nth-child(3)::after {
  animation-delay: 600ms;
}

.workflow-card,
.price-card,
.feature-shell,
.waitlist-card,
.faq-list,
.integration-board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.workflow-card {
  min-height: 178px;
  padding: 26px;
  background: var(--soft);
  transition:
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.workflow-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: #d7d2c9;
  box-shadow: 0 16px 34px rgba(20, 20, 20, 0.07);
}

.card-index {
  color: #8c8c8c;
  font-size: 0.82rem;
  font-weight: 900;
}

.workflow-card h3,
.preview-panel h3,
.price-card h3 {
  margin: 30px 0 12px;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.12;
}

.workflow-card p,
.preview-panel p,
.integration-copy p,
.price-card p,
.faq-list p {
  color: var(--muted);
  line-height: 1.65;
}

.workflow-card p,
.price-card p {
  margin: 0;
}

.feature-shell {
  display: grid;
  grid-template-columns: 230px 1fr;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(20, 20, 20, 0.06);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.feature-shell:hover {
  transform: translateY(-3px);
  border-color: #d7d2c9;
  box-shadow: 0 28px 70px rgba(20, 20, 20, 0.09);
}

.feature-tabs {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 16px;
  background: var(--soft);
  border-right: 1px solid var(--line);
}

.feature-tab,
.billing-toggle button,
.integration-pill {
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  font-weight: 850;
}

.feature-tab {
  min-height: 48px;
  padding: 0 14px;
  text-align: left;
  transition:
    background 170ms ease,
    color 170ms ease,
    transform 170ms ease;
  overflow: hidden;
}

.feature-tab.is-active {
  color: #ffffff;
  background: var(--ink);
  animation: tab-settle 260ms ease;
}

.feature-tab:hover,
.feature-tab:focus-visible {
  transform: translateX(2px);
}

.feature-preview {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  min-height: 430px;
  padding: 20px;
}

.feature-preview.is-changing {
  animation: preview-swap 360ms ease;
}

.preview-list {
  display: grid;
  gap: 12px;
  align-content: center;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #3f3f3f;
  font-weight: 700;
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.preview-row:hover {
  transform: translateX(4px);
}

.preview-row.is-flashing {
  animation: row-flash 520ms ease;
}

.preview-row.is-strong.is-flashing {
  animation: row-flash-strong 520ms ease;
}

.preview-row.is-strong {
  min-height: 96px;
  color: var(--ink);
  background: var(--green);
}

.preview-row b {
  flex: 0 0 auto;
  color: #747474;
  font-size: 0.8rem;
}

.preview-panel {
  display: grid;
  align-content: end;
  padding: 26px;
  background: #181818;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.preview-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.18);
}

.preview-panel::before {
  content: "";
  position: absolute;
  inset: auto 26px 26px auto;
  width: 98px;
  height: 2px;
  background: #97e2a8;
  animation: scan-line 2200ms ease-in-out infinite;
}

.preview-panel p:first-child {
  color: #d8d8d8;
  font-size: 0.9rem;
  font-weight: 800;
}

.preview-panel h3 {
  margin-top: 14px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3.2vw, 3.1rem);
}

.preview-panel p:last-child {
  color: #c8c8c8;
}

.integrations {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 34px;
  align-items: center;
}

.integration-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: 1.04rem;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.integration-copy p.is-changing {
  animation: note-swap 320ms ease;
}

.integration-board {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 330px;
  align-content: center;
  padding: 26px;
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(20, 20, 20, 0.05) 1px, transparent 1px),
    var(--soft);
  background-size: 42px 42px;
  animation: board-drift 14s linear infinite;
}

.integration-pill {
  min-height: 54px;
  padding: 0 18px;
  color: #2d2d2d;
  background: #ffffff;
  border-color: var(--line);
  box-shadow: 0 8px 18px rgba(20, 20, 20, 0.05);
  transition:
    transform 170ms ease,
    background 170ms ease,
    color 170ms ease,
    box-shadow 170ms ease;
  overflow: hidden;
}

.integration-pill.is-active,
.integration-pill:hover,
.integration-pill:focus-visible {
  color: #ffffff;
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(105, 79, 214, 0.22);
}

.integration-pill.is-active {
  animation: pill-lock 360ms ease;
}

.billing-toggle {
  flex: 0 0 auto;
  gap: 4px;
  padding: 4px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.billing-toggle button {
  min-height: 38px;
  padding: 0 14px;
  color: #555555;
  overflow: hidden;
  transition:
    color 170ms ease,
    background 170ms ease,
    transform 170ms ease;
}

.billing-toggle button.is-active {
  color: #ffffff;
  background: var(--ink);
  animation: tab-settle 260ms ease;
}

.price-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 390px;
  padding: 26px;
  background: #ffffff;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: #d7d2c9;
  box-shadow: 0 18px 48px rgba(20, 20, 20, 0.08);
}

.price-card.is-updating {
  animation: price-update 420ms ease;
}

.price-card.featured {
  background: var(--soft);
  box-shadow: var(--shadow);
}

.plan-label {
  width: fit-content;
  padding: 7px 10px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}

.price-card h3 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.price-card small {
  color: #777777;
  font-size: 1rem;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 6px 0 8px;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 9px;
  color: #424242;
  font-weight: 700;
}

.price-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.waitlist {
  padding-top: 38px;
}

.waitlist-card {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.78fr);
  gap: 34px;
  align-items: center;
  padding: 32px;
  background: var(--yellow);
  overflow: hidden;
  position: relative;
}

.waitlist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.32) 42%, transparent 70%);
  transform: translateX(-120%);
}

.waitlist-card:hover::after {
  animation: card-sheen 1200ms ease;
}

.waitlist-form {
  display: grid;
  gap: 10px;
}

.waitlist-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #d9cfae;
  border-radius: var(--radius);
  outline: 0;
  transition:
    border-color 170ms ease,
    box-shadow 170ms ease,
    transform 170ms ease;
}

.waitlist-form input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(20, 20, 20, 0.08);
  transform: translateY(-1px);
}

.waitlist-form .link-button {
  width: 100%;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: #5e5436;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.form-note.is-success {
  color: #1f6d36;
  animation: note-swap 420ms ease;
}

.faq {
  padding-top: 36px;
}

.faq-list {
  overflow: hidden;
  background: #ffffff;
}

.faq-list details + details {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 850;
  transition:
    background 180ms ease,
    color 180ms ease,
    padding-left 180ms ease;
}

.faq-list summary:hover,
.faq-list summary:focus-visible {
  background: var(--soft);
  padding-left: 30px;
}

.faq-list p {
  max-width: 780px;
  margin: -8px 24px 24px;
  animation: note-swap 260ms ease;
}

.faq-list details[open] {
  animation: details-open 320ms ease;
}

.faq-list details[open] summary {
  color: var(--accent);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 28px;
  align-items: end;
  width: var(--section);
  margin: 0 auto;
  padding: 52px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-brand img {
  width: 38px;
}

.footer-brand p {
  margin: 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
}

.footer-brand span {
  color: #818181;
  font-size: 0.9rem;
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: end;
  gap: 16px;
}

.site-footer a {
  padding: 4px 0;
}

.site-footer a::after {
  left: 0;
  right: 0;
  bottom: -1px;
}

/* Premium visual pass */
:root {
  --soft: #f7f5f1;
  --line: #e5dfd6;
  --accent: #ec4dff;
  --accent-rgb: 236, 77, 255;
  --accent-soft: #fae7ff;
  --green: #e0efe4;
  --yellow: #f8edc8;
  --dark: #08080a;
  --dark-soft: #111116;
  --dark-line: rgba(255, 255, 255, 0.12);
  --shadow: 0 32px 90px rgba(20, 20, 20, 0.16);
}

body {
  background: #ffffff;
  font-family:
    "Instrument Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.scroll-progress {
  background: var(--accent);
}

.site-header {
  background: rgba(8, 8, 10, 0.74);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.site-header.is-scrolled {
  border-color: rgba(var(--accent-rgb), 0.36);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.brand,
.site-nav a,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.brand {
  color: #ffffff;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.link-button.dark {
  color: #08080a;
  background: linear-gradient(135deg, #ffffff 0%, #f7defe 48%, var(--accent) 100%);
  box-shadow: 0 18px 44px rgba(var(--accent-rgb), 0.24);
}

.link-button.dark:hover,
.link-button.dark:focus-visible {
  background: linear-gradient(135deg, #ffffff 0%, #ffd8ff 44%, var(--accent) 100%);
  box-shadow: 0 24px 64px rgba(var(--accent-rgb), 0.34);
}

.link-button.light,
.link-button.quiet {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.section-pad {
  padding: 112px 0 86px;
}

.section {
  padding: 88px 0;
}

.section-dark,
.section-light,
.hero {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: max(20px, calc((100vw - 1180px) / 2));
}

.section-dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 8%, rgba(var(--accent-rgb), 0.22), transparent 26%),
    linear-gradient(180deg, #0b0b10 0%, #050506 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-light {
  color: var(--ink);
  background: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 96px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(55, 116, 166, 0.04), rgba(55, 116, 166, 0.06)),
    url("./assets/hero-sky.png") center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(53, 120, 174, 0.08);
  backdrop-filter: blur(2px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.4));
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-center {
  display: grid;
  justify-items: center;
  width: min(980px, 100%);
  text-align: center;
}

.hero-kicker {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: clamp(5.2rem, 12vw, 10.8rem);
  line-height: 0.8;
  letter-spacing: -0.04em;
  text-shadow: 0 18px 60px rgba(34, 91, 139, 0.2);
}

.hero h1 span {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.hero-text {
  max-width: 840px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  line-height: 1.22;
  text-wrap: balance;
}

.hero-command {
  position: relative;
  width: min(860px, 100%);
  margin-top: 72px;
  padding: 0;
}

.hero-command textarea {
  display: block;
  width: 100%;
  min-height: 118px;
  resize: none;
  padding: 28px 78px 26px 28px;
  color: #222222;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  box-shadow:
    0 22px 80px rgba(36, 89, 130, 0.18),
    inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  outline: 0;
  font-size: 1.13rem;
  line-height: 1.5;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.hero-command textarea::placeholder {
  color: #7d7d7d;
}

.hero-command textarea:focus {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.42);
  box-shadow:
    0 30px 100px rgba(36, 89, 130, 0.22),
    0 0 0 4px rgba(var(--accent-rgb), 0.12);
}

.hero-command button {
  position: absolute;
  right: 18px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #8a8a8a;
  background: #ffffff;
  border: 2px solid #cfcfcf;
  border-radius: 50%;
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.hero-command button span {
  transform: translateY(-2px);
  font-size: 1.55rem;
  line-height: 1;
}

.hero-command button:hover,
.hero-command button:focus-visible {
  transform: translateY(-3px);
  color: #08080a;
  background: var(--accent);
  border-color: var(--accent);
}

.hero-wow {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  perspective: 1200px;
}

.wow-orbit {
  position: relative;
  width: min(600px, 100%);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  animation: orbit-tilt 9000ms ease-in-out infinite;
}

.wow-orbit::before,
.wow-orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  pointer-events: none;
}

.wow-orbit::before {
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.28), transparent 58%);
  filter: blur(34px);
}

.wow-orbit::after {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.04);
}

.orbit-ring {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(0deg);
  animation: orbit-spin 12000ms linear infinite;
}

.ring-two {
  inset: 18%;
  border-color: rgba(var(--accent-rgb), 0.42);
  animation-duration: 9000ms;
  animation-direction: reverse;
}

.ring-three {
  inset: 29%;
  border-color: rgba(255, 255, 255, 0.18);
  animation-duration: 15000ms;
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 14px;
  width: 190px;
  height: 190px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.12),
    0 30px 90px rgba(0, 0, 0, 0.38),
    0 0 80px rgba(var(--accent-rgb), 0.2);
  transform: translate(-50%, -50%);
}

.orbit-core img {
  width: 56px;
  filter: invert(1);
}

.orbit-core b {
  max-width: 120px;
  font-size: 1rem;
  line-height: 1.05;
  text-align: center;
}

.orbit-node {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(16px);
  animation: node-drift 5200ms ease-in-out infinite;
}

.node-messages {
  left: 4%;
  top: 28%;
}

.node-tasks {
  right: 4%;
  top: 18%;
  animation-delay: 400ms;
}

.node-ai {
  right: 14%;
  bottom: 16%;
  color: #08080a;
  background: var(--accent);
  border-color: rgba(var(--accent-rgb), 0.62);
  animation-delay: 800ms;
}

.node-files {
  left: 13%;
  bottom: 14%;
  animation-delay: 1200ms;
}

.workspace-showcase {
  padding-top: 104px;
}

.product-showcase {
  width: min(1060px, 100%);
  margin: 0 auto;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

.hero-stats div:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(var(--accent-rgb), 0.46);
}

.hero-stats dt {
  color: #ffffff;
}

.hero-stats dd {
  color: rgba(255, 255, 255, 0.58);
}

.product-window {
  background: #101014;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(var(--accent-rgb), 0.08);
}

.hero-visual:hover .product-window {
  box-shadow: 0 58px 130px rgba(0, 0, 0, 0.5), 0 0 70px rgba(var(--accent-rgb), 0.14);
}

.orbital-status {
  background: rgba(12, 12, 16, 0.84);
  border-color: rgba(var(--accent-rgb), 0.38);
}

.pulse-dot {
  background: var(--accent);
}

.pulse-dot::after {
  border-color: rgba(var(--accent-rgb), 0.7);
}

.quick-actions,
.quick-action {
  display: none;
}

.window-bar {
  border-bottom-color: rgba(255, 255, 255, 0.09);
}

.section-heading h2,
.integration-copy h2,
.waitlist-card h2 {
  font-size: clamp(2.5rem, 5.2vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.section-dark .section-heading h2,
.section-dark .price-card h3,
.section-dark .faq-list summary {
  color: #ffffff;
}

.section-dark .price-card p,
.section-dark .faq-list p {
  color: rgba(255, 255, 255, 0.64);
}

.thread-flow span::after {
  border-color: rgba(var(--accent-rgb), 0.34);
}

.feature-shell {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--dark-line);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.36);
}

.feature-shell:hover {
  border-color: rgba(var(--accent-rgb), 0.36);
  box-shadow: 0 54px 130px rgba(0, 0, 0, 0.46);
}

.feature-tabs {
  background: rgba(255, 255, 255, 0.04);
  border-right-color: var(--dark-line);
}

.feature-tab {
  color: rgba(255, 255, 255, 0.68);
}

.feature-tab.is-active {
  color: #070709;
  background: var(--accent);
}

.preview-row {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--dark-line);
}

.preview-row.is-strong {
  color: #ffffff;
  background: rgba(var(--accent-rgb), 0.18);
  border-color: rgba(var(--accent-rgb), 0.34);
}

.preview-row b {
  color: rgba(255, 255, 255, 0.5);
}

.preview-panel {
  background: linear-gradient(180deg, #1b1b22 0%, #0e0e12 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-panel::before {
  background: var(--accent);
}

.preview-panel p:first-child {
  color: var(--accent);
}

.preview-panel p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.integration-pill.is-active,
.integration-pill:hover,
.integration-pill:focus-visible,
.billing-toggle button.is-active {
  color: #08080a;
  background: var(--accent);
}

.integration-pill.is-active,
.integration-pill:hover,
.integration-pill:focus-visible {
  box-shadow: 0 14px 34px rgba(var(--accent-rgb), 0.24);
}

.billing-toggle {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--dark-line);
}

.billing-toggle button {
  color: rgba(255, 255, 255, 0.66);
}

.price-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--dark-line);
}

.price-card:hover {
  border-color: rgba(var(--accent-rgb), 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.price-card.featured {
  background: rgba(var(--accent-rgb), 0.12);
  border-color: rgba(var(--accent-rgb), 0.42);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.32);
}

.price-card small,
.price-card li {
  color: rgba(255, 255, 255, 0.68);
}

.waitlist-card {
  background:
    linear-gradient(135deg, #fff8da 0%, #ffffff 48%, #fae7ff 100%);
  border-color: #e8ddc6;
}

.faq-list {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--dark-line);
}

.faq-list details + details {
  border-top-color: var(--dark-line);
}

.faq-list summary:hover,
.faq-list summary:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.reveal {
  transform: translateY(18px);
  opacity: 0;
  transition:
    transform 520ms ease,
    opacity 520ms ease;
}

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

@keyframes pulse-ring {
  0% {
    transform: scale(0.72);
    opacity: 0.75;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes node-pop {
  0%,
  58%,
  100% {
    transform: scale(0.7);
    opacity: 0;
  }

  18% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scan-line {
  0%,
  100% {
    transform: translateX(-36px);
    opacity: 0.3;
  }

  50% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes board-drift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 42px 0, 0 42px;
  }
}

@keyframes ripple-burst {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

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

  50% {
    transform: translateY(-3px);
  }
}

@keyframes status-enter {
  from {
    transform: translateY(10px) scale(0.96);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes status-pop {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  45% {
    transform: translateY(-3px) scale(1.035);
  }
}

@keyframes quick-actions-rise {
  from {
    transform: translateY(12px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes window-dot {
  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }
}

@keyframes thread-line {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 220% 0;
  }
}

@keyframes tab-settle {
  0% {
    transform: scale(0.97);
  }

  70% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes preview-swap {
  0% {
    transform: translateY(6px);
    opacity: 0.72;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes row-flash {
  0%,
  100% {
    background-color: var(--soft);
  }

  35% {
    background-color: var(--accent-soft);
  }
}

@keyframes row-flash-strong {
  0%,
  100% {
    background-color: var(--green);
  }

  35% {
    background-color: var(--accent-soft);
  }
}

@keyframes note-swap {
  0% {
    transform: translateY(6px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pill-lock {
  0% {
    transform: translateY(0) scale(0.98);
  }

  60% {
    transform: translateY(-4px) scale(1.03);
  }

  100% {
    transform: translateY(-3px) scale(1);
  }
}

@keyframes price-update {
  0%,
  100% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-7px);
  }
}

@keyframes card-sheen {
  to {
    transform: translateX(120%);
  }
}

@keyframes details-open {
  from {
    background: var(--soft);
  }

  to {
    background: #ffffff;
  }
}

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

.legal-page {
  min-height: 100vh;
  background: #fafafa;
}

.legal-header {
  display: flex;
  justify-content: center;
  padding: 34px 24px 18px;
}

.legal-logo {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.legal-logo img {
  width: 182px;
  height: auto;
}

.legal-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto 76px;
  padding: 58px 62px 64px;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 28px;
  box-shadow: 0 20px 70px rgba(20, 20, 20, 0.06);
}

.legal-eyebrow {
  margin: 0 0 14px;
  color: #5430b2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-main h1 {
  margin: 0;
  color: #121212;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
}

.legal-intro {
  max-width: 680px;
  margin: 22px 0 0;
  color: #575757;
  font-size: 1.08rem;
  line-height: 1.65;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 46px;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: #4b4b4b;
  background: #f1f1f1;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-section {
  padding: 30px 0;
  border-top: 1px solid #ededed;
}

.legal-section h2 {
  margin: 0 0 14px;
  color: #181818;
  font-size: 1.24rem;
  line-height: 1.25;
}

.legal-section h3 {
  margin: 22px 0 8px;
  color: #2b2b2b;
  font-size: 1rem;
  line-height: 1.35;
}

.legal-section p,
.legal-section li {
  color: #5b5b5b;
  font-size: 1rem;
  line-height: 1.75;
}

.legal-section p {
  margin: 0 0 12px;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-section a,
.legal-footer a {
  color: inherit;
  text-decoration: none;
}

.legal-section a {
  color: #5430b2;
  font-weight: 700;
}

.legal-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(150px, auto));
  gap: 34px;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 42px;
  border-top: 1px solid #e9e9e9;
}

.legal-footer-brand {
  display: grid;
  gap: 16px;
  align-content: start;
}

.legal-footer-brand img {
  width: 54px;
  height: auto;
}

.legal-footer-brand p {
  max-width: 260px;
  margin: 0;
  color: #242424;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}

.legal-footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.legal-footer b {
  color: #9a9a9a;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.legal-footer a {
  color: #4a4a4a;
  font-weight: 650;
}

.legal-footer a:hover,
.legal-footer a:focus-visible {
  color: #5430b2;
}

.legal-copyright,
.legal-open-thread {
  color: #929292;
  font-size: 0.86rem;
}

.legal-open-thread {
  justify-self: end;
  grid-column: 3;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    align-content: center;
    width: 42px;
    height: 42px;
    padding: 0 10px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 14px;
  }

  .hero,
  .integrations,
  .waitlist-card {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    min-height: 0;
  }

  .product-window {
    transform: none;
  }

  .hero h1 {
    max-width: 860px;
  }

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

  .workflow-card {
    min-height: 0;
  }

  .feature-shell,
  .feature-preview {
    grid-template-columns: 1fr;
  }

  .feature-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .thread-flow {
    display: none;
  }
}

@media (max-width: 700px) {
  :root {
    --section: min(100% - 24px, 1180px);
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .section-pad {
    padding-top: 62px;
  }

  .section {
    padding: 58px 0;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 16vw, 4.7rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .orbital-status {
    position: static;
    width: fit-content;
    margin: 0 0 10px;
  }

  .quick-actions {
    width: 100%;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .feature-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .feature-preview {
    padding: 12px;
  }

  .preview-row {
    display: grid;
  }

  .preview-panel {
    padding: 22px;
  }

  .billing-toggle {
    width: fit-content;
  }

  .waitlist-card {
    padding: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: start;
  }

  .legal-header {
    justify-content: flex-start;
    padding: 24px 20px 14px;
  }

  .legal-logo img {
    width: 152px;
  }

  .legal-main {
    width: calc(100% - 24px);
    margin-bottom: 48px;
    padding: 34px 24px 42px;
    border-radius: 18px;
  }

  .legal-intro {
    font-size: 1rem;
  }

  .legal-meta {
    margin-bottom: 28px;
  }

  .legal-section {
    padding: 24px 0;
  }

  .legal-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    width: calc(100% - 40px);
  }

  .legal-open-thread {
    justify-self: start;
    grid-column: auto;
  }
}

/* Luminous field direction */
:root {
  --ink: #21313d;
  --muted: #6f8290;
  --paper: #fffdfa;
  --soft: #f9f4ed;
  --line: rgba(77, 107, 126, 0.16);
  --accent: #ec4dff;
  --accent-rgb: 236, 77, 255;
  --sky: #8cc9f0;
  --petal: #ffd7e6;
  --cream: #fff4df;
  --pearl: rgba(255, 255, 255, 0.68);
  --shadow: 0 34px 120px rgba(73, 114, 144, 0.2);
}

body {
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.94), rgba(255, 248, 241, 0.96)),
    url("./assets/open-thread-field.png") center top / 100% auto no-repeat fixed;
  color: var(--ink);
}

.scroll-progress {
  background: linear-gradient(90deg, var(--sky), var(--accent), #fff2b9);
}

.site-header {
  width: min(1050px, calc(100% - 32px));
  margin-top: 22px;
  padding: 12px 14px 12px 22px;
  background: rgba(136, 180, 213, 0.56);
  border-color: rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  box-shadow: 0 24px 80px rgba(59, 110, 151, 0.18);
}

.site-header.is-scrolled {
  background: rgba(126, 171, 205, 0.72);
  border-color: rgba(255, 255, 255, 0.56);
  box-shadow: 0 22px 72px rgba(59, 110, 151, 0.22);
}

.brand,
.site-nav a,
.site-footer a {
  color: rgba(255, 255, 255, 0.92);
}

.brand img,
.footer-brand img {
  filter: none;
}

.brand:hover img {
  transform: translateY(-1px);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.link-button.dark {
  color: #ffffff;
  background: #15161a;
  box-shadow: 0 18px 44px rgba(28, 48, 65, 0.18);
}

.link-button.dark:hover,
.link-button.dark:focus-visible {
  background: #08090b;
  box-shadow: 0 24px 60px rgba(28, 48, 65, 0.22);
}

.link-button.light,
.link-button.quiet {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero {
  background:
    linear-gradient(180deg, rgba(96, 163, 213, 0.08), rgba(255, 220, 232, 0.08)),
    url("./assets/open-thread-field.png") center / cover no-repeat;
}

.hero::before {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(0.8px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.08) 64%, rgba(0, 0, 0, 0.16));
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 8px 30px rgba(65, 113, 150, 0.18);
}

.hero h1 {
  text-shadow: 0 24px 80px rgba(45, 98, 140, 0.22);
}

.hero-text {
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 12px 36px rgba(45, 98, 140, 0.16);
}

.hero-command textarea {
  color: #5a6168;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 28px 100px rgba(72, 118, 153, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.hero-command button:hover,
.hero-command button:focus-visible {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
}

.section-dark,
.section-light {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.86), rgba(255, 248, 242, 0.94)),
    radial-gradient(circle at 88% 10%, rgba(var(--accent-rgb), 0.12), transparent 30%);
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(73, 114, 144, 0.08);
}

.section-dark .section-heading h2,
.section-dark .price-card h3,
.section-dark .faq-list summary,
.section-heading h2,
.integration-copy h2,
.waitlist-card h2 {
  color: var(--ink);
}

.section-dark .price-card p,
.section-dark .faq-list p,
.workflow-card p,
.preview-panel p,
.integration-copy p,
.price-card p,
.faq-list p {
  color: var(--muted);
}

.eyebrow,
.section-dark .eyebrow,
.section-light .eyebrow {
  color: var(--accent);
}

.workspace-showcase {
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.92), rgba(255, 246, 238, 0.98)),
    radial-gradient(circle at 50% 0%, rgba(255, 216, 230, 0.28), transparent 36%);
}

.product-window {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 44px 120px rgba(68, 108, 139, 0.22);
}

.hero-visual:hover .product-window {
  box-shadow: 0 54px 140px rgba(68, 108, 139, 0.26), 0 0 70px rgba(var(--accent-rgb), 0.1);
}

.window-bar {
  background: rgba(255, 255, 255, 0.44);
  border-bottom-color: rgba(72, 107, 131, 0.1);
}

.orbital-status {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(68, 108, 139, 0.18);
}

.workflow-card,
.feature-shell,
.price-card,
.faq-list,
.integration-board,
.waitlist-card {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 90px rgba(74, 118, 150, 0.12);
  backdrop-filter: blur(18px);
}

.workflow-card:hover,
.price-card:hover,
.feature-shell:hover {
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 34px 110px rgba(74, 118, 150, 0.18);
}

.thread-flow::before {
  background: linear-gradient(90deg, rgba(139, 193, 230, 0.2), var(--accent), rgba(255, 229, 168, 0.6));
}

.thread-flow span {
  border-color: rgba(var(--accent-rgb), 0.44);
  box-shadow: 0 0 0 8px rgba(255, 253, 250, 0.82);
}

.feature-tabs {
  background: rgba(255, 255, 255, 0.42);
  border-right-color: rgba(90, 126, 150, 0.12);
}

.feature-tab {
  color: var(--muted);
}

.feature-tab.is-active,
.billing-toggle button.is-active,
.integration-pill.is-active,
.integration-pill:hover,
.integration-pill:focus-visible {
  color: #ffffff;
  background: var(--accent);
}

.preview-row,
.preview-row.is-strong {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(255, 255, 255, 0.76);
}

.preview-row.is-strong {
  background: rgba(255, 217, 232, 0.58);
}

.preview-row b {
  color: rgba(77, 99, 114, 0.56);
}

.preview-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 244, 251, 0.66)),
    radial-gradient(circle at 80% 10%, rgba(var(--accent-rgb), 0.12), transparent 38%);
  border-color: rgba(255, 255, 255, 0.78);
}

.preview-panel h3 {
  color: var(--ink);
}

.preview-panel p:first-child {
  color: var(--accent);
}

.preview-panel p:last-child {
  color: var(--muted);
}

.integration-board {
  background:
    linear-gradient(90deg, rgba(102, 148, 178, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(102, 148, 178, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.52);
  background-size: 42px 42px;
}

.integration-pill {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.84);
}

.billing-toggle {
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(255, 255, 255, 0.72);
}

.billing-toggle button {
  color: var(--muted);
}

.price-card.featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 234, 249, 0.64));
  border-color: rgba(var(--accent-rgb), 0.26);
  box-shadow: 0 34px 110px rgba(236, 77, 255, 0.12);
}

.price-card small,
.price-card li {
  color: var(--muted);
}

.plan-label {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.58);
}

.waitlist-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 236, 247, 0.66)),
    url("./assets/open-thread-field.png") center / cover no-repeat;
  overflow: hidden;
}

.waitlist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.64);
}

.waitlist-card > * {
  position: relative;
  z-index: 1;
}

.faq-list details + details {
  border-top-color: rgba(92, 126, 148, 0.12);
}

.faq-list summary:hover,
.faq-list summary:focus-visible {
  background: rgba(255, 255, 255, 0.42);
}

.site-footer {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.9), rgba(255, 244, 249, 0.95)),
    url("./assets/open-thread-field.png") center bottom / cover no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
}

.footer-brand p {
  color: var(--ink);
}

.footer-brand span,
.site-footer a {
  color: rgba(33, 49, 61, 0.64);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent);
}

@keyframes row-flash {
  0%,
  100% {
    background-color: rgba(255, 255, 255, 0.58);
  }

  35% {
    background-color: rgba(255, 217, 232, 0.82);
  }
}

@keyframes row-flash-strong {
  0%,
  100% {
    background-color: rgba(255, 217, 232, 0.58);
  }

  35% {
    background-color: rgba(var(--accent-rgb), 0.18);
  }
}

@keyframes details-open {
  from {
    background: rgba(255, 255, 255, 0.4);
  }

  to {
    background: transparent;
  }
}

/* Final polish overrides */
.site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 56px max(20px, calc((100vw - 1180px) / 2)) 46px;
  color: #ffffff;
  background: #08080a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  color: #ffffff;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent);
}

.brand img,
.footer-brand img {
  filter: invert(1);
}

.section-light .link-button.light,
.section-light .link-button.quiet,
.waitlist-card .link-button.dark {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.waitlist-card .link-button.dark {
  color: #08080a;
  background: var(--accent);
  border-color: var(--accent);
}

.section-light .eyebrow,
.section-light .plan-label {
  color: var(--accent);
}

.section-light .integration-pill.is-active,
.section-light .integration-pill:hover,
.section-light .integration-pill:focus-visible {
  color: #08080a;
}

.section-dark .price-card .link-button.light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.section-dark .price-card.featured .link-button.dark {
  color: #08080a;
}

@keyframes row-flash {
  0%,
  100% {
    background-color: rgba(255, 255, 255, 0.07);
  }

  35% {
    background-color: rgba(var(--accent-rgb), 0.22);
  }
}

@keyframes row-flash-strong {
  0%,
  100% {
    background-color: rgba(var(--accent-rgb), 0.18);
  }

  35% {
    background-color: rgba(var(--accent-rgb), 0.3);
  }
}

@keyframes details-open {
  from {
    background: rgba(255, 255, 255, 0.04);
  }

  to {
    background: transparent;
  }
}

@keyframes orbit-tilt {
  0%,
  100% {
    transform: rotateX(0deg) rotateY(-8deg) translateY(0);
  }

  50% {
    transform: rotateX(3deg) rotateY(8deg) translateY(-10px);
  }
}

@keyframes orbit-spin {
  from {
    transform: rotateX(68deg) rotateZ(0deg);
  }

  to {
    transform: rotateX(68deg) rotateZ(360deg);
  }
}

@keyframes node-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 24px);
  }
}

@media (max-width: 980px) {
  .site-nav.is-open {
    background: rgba(8, 8, 10, 0.96);
    border-color: rgba(255, 255, 255, 0.12);
  }

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

  .hero-wow {
    min-height: 520px;
  }
}

@media (max-width: 700px) {
  .hero h1 {
    color: #ffffff;
    font-size: clamp(4.3rem, 18vw, 6.2rem);
    line-height: 0.82;
  }

  .section-dark,
  .section-light,
  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    padding-top: 124px;
    background-position: center bottom;
  }

  .hero-text {
    margin-top: 28px;
    font-size: 1.3rem;
  }

  .hero-command {
    margin-top: 48px;
  }

  .hero-command textarea {
    min-height: 132px;
    padding: 22px 68px 22px 20px;
    font-size: 1rem;
  }

  .hero-wow {
    min-height: 390px;
  }

  .wow-orbit {
    width: min(360px, 100%);
  }

  .orbit-core {
    width: 138px;
    height: 138px;
  }

  .orbit-core img {
    width: 42px;
  }

  .orbit-node {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .node-messages {
    left: 0;
  }

  .node-tasks {
    right: 0;
  }
}

/* Refined Open Thread finish */
:root {
  --ink: #172832;
  --muted: #627783;
  --paper: #fffaf8;
  --soft: #f8f0ec;
  --line: rgba(71, 93, 106, 0.18);
  --accent: #b93f69;
  --accent-rgb: 185, 63, 105;
  --accent-deep: #8f244a;
  --accent-soft: #f8e1e9;
  --sky: #86c5ea;
  --sky-deep: #4c95c4;
  --petal: #f0a6b8;
  --cream: #fff2df;
  --dark: #101419;
  --shadow: 0 24px 70px rgba(40, 76, 99, 0.14);
}

body {
  background: var(--paper);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

.scroll-progress {
  background: var(--accent);
}

.site-header {
  width: min(1110px, calc(100% - 32px));
  margin-top: 18px;
  padding: 10px 12px 10px 18px;
  background: rgba(18, 35, 45, 0.72);
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 18px 54px rgba(32, 73, 101, 0.16);
}

.site-header.is-scrolled {
  background: rgba(18, 35, 45, 0.86);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 18px 54px rgba(22, 48, 66, 0.22);
}

.brand,
.site-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.brand {
  color: #ffffff;
}

.brand img,
.footer-brand img {
  filter: invert(1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.link-button {
  border-radius: 999px;
}

.link-button.dark {
  color: #ffffff;
  background: var(--dark);
  box-shadow: 0 14px 34px rgba(20, 33, 43, 0.2);
}

.link-button.dark:hover,
.link-button.dark:focus-visible {
  background: #05080b;
  box-shadow: 0 20px 48px rgba(20, 33, 43, 0.26);
}

.link-button.light,
.link-button.quiet {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.section-pad {
  padding: 104px 0 74px;
}

.section {
  padding: 84px 0;
}

.section-dark,
.section-light,
.hero {
  width: 100%;
  max-width: none;
  padding-right: max(22px, calc((100vw - 1180px) / 2));
  padding-left: max(22px, calc((100vw - 1180px) / 2));
}

.hero {
  min-height: 82vh;
  padding-top: 138px;
  padding-bottom: 86px;
  background:
    linear-gradient(180deg, rgba(23, 40, 50, 0.1) 0%, rgba(78, 128, 160, 0.04) 44%, rgba(246, 176, 194, 0.12) 100%),
    url("./assets/open-thread-field.png") center / cover no-repeat;
}

.hero::before {
  background:
    radial-gradient(ellipse at center, rgba(23, 40, 50, 0.16), rgba(23, 40, 50, 0.05) 54%, rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(13, 31, 43, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: none;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.12) 64%, rgba(0, 0, 0, 0.24));
}

.hero-center {
  width: 100%;
  max-width: 1040px;
  transform: translateY(-8px);
}

.hero .reveal,
.hero .reveal.is-visible {
  opacity: 1;
}

.hero-kicker {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 800;
  text-shadow: 0 8px 30px rgba(33, 76, 105, 0.24);
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(5.1rem, 11.2vw, 10.2rem);
  line-height: 0.82;
  letter-spacing: -0.035em;
  text-shadow: 0 24px 84px rgba(28, 74, 106, 0.24);
}

.hero h1 .hero-script {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.hero h1 .hero-word {
  font-family: "Instrument Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-style: normal;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.hero h1.hero-logo-heading {
  display: grid;
  place-items: center;
  width: min(690px, 100%);
  max-width: 690px;
  margin: 0;
}

.hero-logo-heading img {
  width: 100%;
  max-width: 690px;
  height: auto;
  filter: drop-shadow(0 24px 80px rgba(28, 74, 106, 0.22));
}

.hero-text {
  max-width: 820px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.25rem, 2.25vw, 1.9rem);
  line-height: 1.28;
  text-shadow: 0 12px 34px rgba(29, 72, 101, 0.2);
}

.hero-command {
  width: 100%;
  max-width: 790px;
  margin-top: 54px;
}

.hero-command textarea {
  min-height: 112px;
  padding: 25px 76px 24px 26px;
  color: #273842;
  background: rgba(255, 252, 250, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 14px;
  box-shadow:
    0 24px 74px rgba(38, 82, 111, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.hero-command textarea::placeholder {
  color: #7e8c94;
}

.hero-command textarea:focus {
  border-color: rgba(var(--accent-rgb), 0.42);
  box-shadow:
    0 28px 92px rgba(38, 82, 111, 0.25),
    0 0 0 4px rgba(var(--accent-rgb), 0.14);
}

.hero-command button {
  color: var(--accent-deep);
  background: #fffaf8;
  border-color: rgba(var(--accent-rgb), 0.22);
}

.hero-command button:hover,
.hero-command button:focus-visible {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
}

.section-light {
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf8 0%, #fff5f1 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(77, 106, 124, 0.08);
}

.section-dark {
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 8%, rgba(var(--accent-rgb), 0.1), transparent 30%),
    linear-gradient(180deg, #fff7f4 0%, #f8eee8 100%);
  border-top: 1px solid rgba(77, 106, 124, 0.08);
  border-bottom: 1px solid rgba(77, 106, 124, 0.08);
}

.workspace-showcase {
  padding-top: 54px;
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 166, 184, 0.2), transparent 38%),
    linear-gradient(180deg, #fffaf8 0%, #fff3ee 100%);
}

.workspace-showcase > .section-heading.reveal {
  opacity: 1;
  transform: none;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2,
.integration-copy h2,
.waitlist-card h2 {
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.eyebrow,
.section-dark .eyebrow,
.section-light .eyebrow,
.section-light .plan-label {
  color: var(--accent-deep);
}

.section-dark .section-heading h2,
.section-dark .price-card h3,
.section-dark .faq-list summary,
.preview-panel h3 {
  color: var(--ink);
}

.section-dark .price-card p,
.section-dark .faq-list p,
.workflow-card p,
.preview-panel p,
.integration-copy p,
.price-card p,
.faq-list p {
  color: var(--muted);
}

.product-showcase {
  width: min(1020px, 100%);
}

.product-window {
  background: #fffaf8;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  box-shadow:
    0 34px 90px rgba(45, 83, 107, 0.2),
    0 0 0 1px rgba(84, 112, 130, 0.06);
  transform: rotateX(0deg) rotateY(-1.5deg);
}

.hero-visual:hover .product-window {
  box-shadow:
    0 42px 110px rgba(45, 83, 107, 0.25),
    0 0 0 1px rgba(var(--accent-rgb), 0.1);
}

.window-bar {
  background: rgba(255, 255, 255, 0.72);
  border-bottom-color: rgba(71, 93, 106, 0.1);
}

.window-bar span {
  background: rgba(23, 40, 50, 0.28);
}

.orbital-status {
  top: -16px;
  right: 28px;
  color: var(--ink);
  background: rgba(255, 252, 250, 0.92);
  border-color: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-shadow: 0 16px 44px rgba(45, 83, 107, 0.16);
}

.pulse-dot {
  background: var(--accent);
}

.pulse-dot::after {
  border-color: rgba(var(--accent-rgb), 0.55);
}

.workflow-card,
.feature-shell,
.price-card,
.faq-list,
.integration-board,
.waitlist-card {
  background: rgba(255, 252, 250, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.workflow-card {
  min-height: 166px;
  padding: 24px;
}

.workflow-card:hover,
.price-card:hover,
.feature-shell:hover {
  border-color: rgba(var(--accent-rgb), 0.16);
  box-shadow: 0 30px 84px rgba(45, 83, 107, 0.18);
}

.card-index {
  color: rgba(var(--accent-rgb), 0.74);
}

.thread-flow::before {
  background: linear-gradient(90deg, rgba(134, 197, 234, 0.2), rgba(var(--accent-rgb), 0.72), rgba(240, 166, 184, 0.28));
}

.thread-flow span {
  border-color: rgba(var(--accent-rgb), 0.42);
  box-shadow: 0 0 0 8px rgba(255, 250, 248, 0.9);
}

.feature-shell {
  grid-template-columns: 220px 1fr;
  overflow: hidden;
}

.feature-tabs {
  background: rgba(255, 246, 243, 0.9);
  border-right-color: rgba(71, 93, 106, 0.12);
}

.feature-tab {
  color: var(--muted);
  border-radius: 10px;
}

.feature-tab.is-active,
.billing-toggle button.is-active,
.integration-pill.is-active,
.integration-pill:hover,
.integration-pill:focus-visible {
  color: #ffffff;
  background: var(--accent);
}

.feature-preview {
  min-height: 390px;
  padding: 18px;
}

.preview-row {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(71, 93, 106, 0.12);
  border-radius: 12px;
}

.preview-row.is-strong {
  color: var(--ink);
  background: var(--accent-soft);
  border-color: rgba(var(--accent-rgb), 0.16);
}

.preview-row b {
  color: rgba(98, 119, 131, 0.7);
}

.preview-panel {
  background:
    radial-gradient(circle at 84% 12%, rgba(var(--accent-rgb), 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fff3f0 100%);
  border: 1px solid rgba(71, 93, 106, 0.12);
  border-radius: 14px;
}

.preview-panel::before {
  background: var(--accent);
}

.preview-panel p:first-child,
.faq-list details[open] summary {
  color: var(--accent-deep);
}

.integrations {
  gap: 48px;
}

.integration-board {
  min-height: 306px;
  background:
    linear-gradient(90deg, rgba(71, 93, 106, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(71, 93, 106, 0.05) 1px, transparent 1px),
    rgba(255, 252, 250, 0.78);
  background-size: 44px 44px;
}

.integration-pill {
  color: var(--ink);
  background: #ffffff;
  border-color: rgba(71, 93, 106, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(45, 83, 107, 0.08);
}

.integration-pill.is-active,
.integration-pill:hover,
.integration-pill:focus-visible {
  box-shadow: 0 14px 34px rgba(var(--accent-rgb), 0.22);
}

.billing-toggle {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(71, 93, 106, 0.14);
  border-radius: 999px;
}

.billing-toggle button {
  color: var(--muted);
  border-radius: 999px;
}

.price-card {
  min-height: 370px;
  background: rgba(255, 252, 250, 0.88);
}

.price-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #fdebf1 100%);
  border-color: rgba(var(--accent-rgb), 0.24);
  box-shadow: 0 30px 84px rgba(var(--accent-rgb), 0.12);
}

.price-card small,
.price-card li {
  color: var(--muted);
}

.price-card li::before {
  background: var(--accent);
}

.plan-label {
  color: var(--accent-deep);
  background: var(--accent-soft);
  border-radius: 999px;
}

.waitlist {
  padding-top: 46px;
}

.waitlist-card {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.82), transparent 26%),
    linear-gradient(135deg, #fff7ed 0%, #fde5ed 100%);
  border-color: rgba(var(--accent-rgb), 0.14);
}

.waitlist-card::before {
  content: none;
}

.waitlist-form input {
  border-color: rgba(71, 93, 106, 0.16);
  border-radius: 12px;
}

.waitlist-form input:focus {
  border-color: rgba(var(--accent-rgb), 0.42);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.12);
}

.waitlist-card .link-button.dark {
  color: #ffffff;
  background: var(--dark);
  border-color: var(--dark);
}

.form-note {
  color: rgba(23, 40, 50, 0.62);
}

.faq-list {
  background: rgba(255, 252, 250, 0.84);
}

.faq-list details + details {
  border-top-color: rgba(71, 93, 106, 0.12);
}

.faq-list summary:hover,
.faq-list summary:focus-visible {
  background: rgba(248, 225, 233, 0.45);
}

.site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 56px max(22px, calc((100vw - 1180px) / 2)) 46px;
  color: #ffffff;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  color: #ffffff;
}

.footer-brand span,
.site-footer a {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #f5b0c2;
}

.section-light .link-button.light,
.section-light .link-button.quiet {
  color: var(--ink);
  background: #ffffff;
  border-color: rgba(71, 93, 106, 0.14);
}

.section-dark .price-card .link-button.light {
  color: var(--ink);
  background: #ffffff;
  border-color: rgba(71, 93, 106, 0.14);
}

.section-dark .price-card.featured .link-button.dark {
  color: #ffffff;
}

@keyframes row-flash {
  0%,
  100% {
    background-color: rgba(255, 255, 255, 0.76);
  }

  35% {
    background-color: rgba(248, 225, 233, 0.92);
  }
}

@keyframes row-flash-strong {
  0%,
  100% {
    background-color: var(--accent-soft);
  }

  35% {
    background-color: rgba(var(--accent-rgb), 0.2);
  }
}

@keyframes details-open {
  from {
    background: rgba(248, 225, 233, 0.32);
  }

  to {
    background: transparent;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
  }

  .nav-toggle span {
    background: #ffffff;
  }

  .site-nav.is-open {
    background: rgba(18, 35, 45, 0.96);
    border-color: rgba(255, 255, 255, 0.16);
  }

  .feature-tabs {
    border-right: 0;
    border-bottom-color: rgba(71, 93, 106, 0.12);
  }
}

@media (max-width: 700px) {
  .section-dark,
  .section-light,
  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    min-height: 74vh;
    padding-top: 120px;
    padding-bottom: 70px;
    background-position: center bottom;
  }

  .hero-center {
    min-width: 0;
    max-width: 100%;
    transform: none;
  }

  .hero h1 {
    display: grid;
    gap: 0;
    width: 100%;
    max-width: calc(100vw - 32px);
    justify-items: center;
    justify-self: center;
    font-size: clamp(3.25rem, 14.5vw, 4.25rem);
    line-height: 0.78;
  }

  .hero h1 .hero-script,
  .hero h1 .hero-word {
    display: block;
  }

  .hero h1.hero-logo-heading {
    width: min(74vw, 350px);
    max-width: min(74vw, 350px);
  }

  .hero-text {
    width: 100%;
    max-width: calc(100vw - 32px);
    justify-self: center;
    margin-top: 24px;
    font-size: 1.18rem;
  }

  .workspace-showcase {
    padding-top: 42px;
  }

  .hero-command {
    margin-top: 38px;
    max-width: calc(100vw - 32px);
    justify-self: center;
  }

  .hero-command textarea {
    min-height: 124px;
    padding: 21px 66px 21px 20px;
  }

  .section-heading h2,
  .integration-copy h2,
  .waitlist-card h2 {
    font-size: clamp(2.1rem, 12vw, 3.5rem);
    line-height: 0.98;
  }

  .workflow-card,
  .feature-shell,
  .price-card,
  .faq-list,
  .integration-board,
  .waitlist-card {
    border-radius: 14px;
  }
}

/* Header and hero CTA refinement */
.site-header {
  position: fixed;
  top: 30px;
  left: 50%;
  width: min(1120px, calc(100% - 44px));
  margin: 0;
  color: var(--ink);
  background: rgba(255, 252, 250, 0.76);
  border-color: rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  box-shadow: 0 18px 54px rgba(38, 82, 111, 0.16);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    top 220ms ease,
    width 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  top: 16px;
  width: min(1060px, calc(100% - 32px));
  background: rgba(255, 252, 250, 0.9);
  border-color: rgba(255, 255, 255, 0.86);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(38, 82, 111, 0.22);
}

.brand,
.site-nav a {
  color: rgba(23, 40, 50, 0.78);
}

.brand {
  color: var(--ink);
}

.brand img,
.footer-brand img {
  filter: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(248, 225, 233, 0.58);
}

.header-actions .link-button.quiet {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.54);
  border-color: rgba(71, 93, 106, 0.14);
}

.header-actions .link-button.dark {
  color: #ffffff;
  background: var(--dark);
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 46px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  color: #ffffff;
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  box-shadow:
    0 22px 54px rgba(var(--accent-rgb), 0.3),
    0 0 0 7px rgba(255, 255, 255, 0.14);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-3px);
  background: var(--accent-deep);
  box-shadow:
    0 26px 68px rgba(var(--accent-rgb), 0.36),
    0 0 0 7px rgba(255, 255, 255, 0.18);
}

@media (max-width: 980px) {
  .site-header,
  .site-header.is-scrolled {
    display: flex;
    justify-content: space-between;
    top: 18px;
    width: calc(100% - 32px);
  }

  .brand img {
    width: 138px;
  }

  .nav-toggle {
    background: rgba(23, 40, 50, 0.08);
    border-color: rgba(71, 93, 106, 0.16);
  }

  .nav-toggle span {
    background: var(--ink);
  }

  .site-nav.is-open {
    background: rgba(255, 252, 250, 0.96);
    border-color: rgba(255, 255, 255, 0.86);
  }

  .site-nav.is-open a {
    color: var(--ink);
  }
}

@media (max-width: 700px) {
  .site-header,
  .site-header.is-scrolled {
    top: 18px;
    width: calc(100% - 32px);
    border-radius: 14px;
  }

  .brand img {
    width: 126px;
  }

  .hero-cta-row {
    margin-top: 34px;
  }

  .hero-cta {
    width: min(100%, 310px);
  }
}

/* Requested final adjustments */
.hero.section-pad {
  min-height: 100svh;
  height: auto;
  padding-top: clamp(132px, 16vh, 172px);
  padding-bottom: clamp(70px, 10vh, 104px);
}

.hero-center {
  gap: 24px;
  transform: translateY(clamp(10px, 2vh, 28px));
}

.hero h1.hero-logo-heading {
  width: min(260px, 40vw) !important;
  max-width: 260px !important;
}

.hero-logo-heading img {
  width: 100% !important;
  max-width: 260px !important;
  filter: drop-shadow(0 18px 54px rgba(28, 74, 106, 0.18));
}

.hero-text {
  max-width: 860px;
  margin-top: 0;
  font-size: clamp(1.32rem, 2.2vw, 2.05rem);
  line-height: 1.24;
}

.hero-cta-row {
  margin-top: 10px;
}

.hero-cta {
  min-width: 230px;
  min-height: 62px;
}

.workspace-showcase .orbital-status {
  display: none;
}

.product-window,
.hero-visual:hover .product-window {
  border-radius: 14px;
  transform: none;
  box-shadow:
    0 28px 84px rgba(45, 83, 107, 0.16),
    0 0 0 1px rgba(84, 112, 130, 0.06);
}

.product-window img,
.hero-visual:hover .product-window img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  transform: none;
  filter: none;
}

.app-preview-window,
.hero-visual:hover .app-preview-window {
  overflow: hidden;
  background: #f6f5f2;
  border: 1px solid rgba(151, 159, 184, 0.28);
}

.open-thread-preview {
  --preview-dock-rail-width: min(646px, calc(100% - 38px));
  --preview-dock-rail-height: 64px;
  --preview-dock-item-size: 42px;
  --preview-dock-hover-width: 132px;
  --preview-dock-label-width: 78px;
  --preview-dock-compose-size: 78px;
  --preview-dock-gap: 6px;
  --preview-ease: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 32%);
  gap: clamp(8px, 1.3vw, 14px);
  min-height: clamp(560px, 70vw, 760px);
  padding: clamp(14px, 2.2vw, 24px);
  padding-bottom: 122px;
  color: #172333;
  background: #f6f5f2;
}

.open-thread-preview button {
  font: inherit;
}

.open-thread-preview button:disabled {
  cursor: default;
}

.preview-ai-home,
.preview-calendar-card,
.preview-up-next-card {
  min-width: 0;
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 8px;
  box-shadow: none;
}

.preview-ai-home {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 100%;
  overflow: hidden;
}

.preview-ai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  padding: 18px 20px;
  border-bottom: 1px solid #dfe4ec;
}

.preview-ai-header p,
.preview-widget-head p {
  margin: 0 0 5px;
  color: #647184;
  font-size: clamp(0.54rem, 1vw, 0.72rem);
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.preview-ai-header h3,
.preview-widget-head h3,
.preview-up-next-card h3 {
  margin: 0;
  color: #172333;
  font-size: clamp(0.95rem, 2vw, 1.45rem);
  line-height: 1.1;
}

.preview-pill-button {
  min-height: 34px;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.46);
  background: #101820;
  border: 0;
  border-radius: 999px;
  font-size: clamp(0.58rem, 1vw, 0.8rem);
  font-weight: 850;
  opacity: 0.98;
}

.preview-ai-thread {
  display: grid;
  min-height: 0;
  padding: clamp(18px, 3vw, 36px);
}

.preview-ai-empty {
  align-self: center;
  justify-self: center;
  max-width: 520px;
  text-align: center;
}

.preview-ai-empty h4 {
  margin: 0 0 10px;
  color: #142033;
  font-size: clamp(1.15rem, 3vw, 2.1rem);
  line-height: 1.1;
}

.preview-ai-empty p,
.preview-up-next-card p {
  margin: 0;
  color: #657286;
  font-size: clamp(0.76rem, 1.5vw, 1rem);
  font-weight: 720;
  line-height: 1.45;
}

.preview-ai-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: end;
  margin: 0 16px 16px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(65, 83, 107, 0.06);
  transition:
    border-color 170ms ease,
    box-shadow 170ms ease;
}

.preview-ai-composer:focus-within {
  border-color: rgba(124, 200, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(124, 200, 255, 0.14);
}

.preview-ai-composer textarea {
  width: 100%;
  min-height: 38px;
  max-height: 96px;
  resize: none;
  color: #172333;
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: clamp(0.82rem, 1.5vw, 1rem);
  line-height: 1.45;
}

.preview-ai-composer textarea::placeholder {
  color: #8b9099;
}

.preview-send-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #111821;
  border: 0;
  border-radius: 8px;
  opacity: 0.95;
}

.preview-send-button span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--logo-pink), var(--logo-yellow));
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
}

.preview-side-stack {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(8px, 1.3vw, 14px);
  min-width: 0;
}

.preview-calendar-card {
  min-height: 276px;
  padding: clamp(12px, 1.6vw, 18px);
}

.preview-calendar-card.is-disabled {
  opacity: 0.68;
  filter: grayscale(0.18);
}

.preview-widget-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.preview-calendar-card .preview-widget-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 8px;
}

.preview-calendar-card .preview-widget-head h3 {
  white-space: nowrap;
}

.preview-calendar-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
}

.preview-calendar-actions button {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 6px;
  color: #687386;
  background: #ffffff;
  border: 1px solid #d7dde6;
  border-radius: 4px;
  font-size: 0.52rem;
  font-weight: 850;
  transition:
    background 150ms ease,
    border-color 150ms ease,
    transform 150ms ease;
}

.preview-calendar-actions button:hover,
.preview-calendar-actions button:focus-visible {
  background: #eef6ff;
  border-color: #9fc5e8;
  outline: 0;
  transform: translateY(-1px);
}

.preview-calendar-weekdays,
.preview-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.preview-calendar-weekdays {
  margin-bottom: 7px;
}

.preview-calendar-weekdays span {
  color: #607086;
  font-size: clamp(0.56rem, 1vw, 0.76rem);
  font-weight: 850;
  text-align: center;
}

.preview-calendar-grid button {
  display: grid;
  place-items: center;
  min-height: clamp(24px, 3.2vw, 40px);
  color: #526174;
  background: #edf3f8;
  border: 1px solid #dbe5ee;
  border-radius: 8px;
  font-size: clamp(0.58rem, 1vw, 0.8rem);
  font-weight: 850;
  transition:
    background 150ms ease,
    border-color 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.preview-calendar-grid button:hover,
.preview-calendar-grid button:focus-visible {
  background: #e4f2ff;
  border-color: #9fc5e8;
  color: #172333;
  outline: 0;
  transform: translateY(-1px);
}

.preview-calendar-grid .is-outside {
  opacity: 0.45;
}

.preview-calendar-grid .is-today {
  border-color: #9fc5e8;
  box-shadow: inset 0 0 0 1px rgba(89, 154, 214, 0.24);
}

.preview-calendar-grid .is-selected {
  color: #ffffff;
  background: #182235;
  border-color: #182235;
}

.preview-up-next-card {
  min-height: 168px;
  padding: clamp(14px, 1.8vw, 20px);
}

.preview-up-next-card h3 {
  margin-bottom: 28px;
  font-size: clamp(0.88rem, 1.5vw, 1.1rem);
}

.preview-bottom-nav {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--preview-dock-gap);
  width: var(--preview-dock-rail-width);
  height: var(--preview-dock-rail-height);
  padding: 11px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: none;
  transform: translateX(-50%);
}

.preview-bottom-nav > div,
.preview-new-wrap {
  display: flex;
  align-items: center;
  gap: var(--preview-dock-gap);
  height: var(--preview-dock-item-size);
  min-width: 0;
  transition: gap 220ms var(--preview-ease);
}

.preview-bottom-nav > div:first-child {
  justify-content: flex-end;
}

.preview-bottom-nav button {
  width: var(--preview-dock-item-size);
  min-width: var(--preview-dock-item-size);
  height: var(--preview-dock-item-size);
  min-height: var(--preview-dock-item-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  padding: 0 12px;
  color: #000000;
  background: #ffffff;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition:
    width 260ms var(--preview-ease),
    min-width 260ms var(--preview-ease),
    gap 260ms var(--preview-ease),
    transform 220ms var(--preview-ease),
    background-color 180ms ease;
}

.preview-bottom-nav button:hover,
.preview-bottom-nav button:focus-visible {
  width: var(--preview-dock-hover-width);
  min-width: var(--preview-dock-hover-width);
  gap: 8px;
  background: #f9fbfd;
  outline: 0;
}

.preview-nav-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: #000000;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.preview-bottom-nav button:hover > .preview-nav-icon,
.preview-bottom-nav button:focus-visible > .preview-nav-icon {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
  transform: none;
}

svg.preview-nav-icon {
  display: block;
}

.preview-bottom-nav span {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  color: #000000;
  white-space: nowrap;
  line-height: 1;
  transform: translateX(-8px);
  transition:
    max-width 260ms var(--preview-ease),
    opacity 180ms ease 60ms,
    transform 260ms var(--preview-ease);
}

.preview-bottom-nav button:hover span,
.preview-bottom-nav button:focus-visible span {
  max-width: var(--preview-dock-label-width);
  opacity: 1;
  transform: translateX(0);
}

.preview-new-button {
  width: var(--preview-dock-compose-size) !important;
  min-width: var(--preview-dock-compose-size) !important;
  height: var(--preview-dock-compose-size) !important;
  min-height: var(--preview-dock-compose-size) !important;
  padding: 0 !important;
  border-radius: 50% !important;
  box-shadow: none;
}

.preview-new-button .preview-nav-icon {
  width: 33px;
  height: 33px;
  flex-basis: 33px;
}

.preview-new-button:hover > .preview-nav-icon,
.preview-new-button:focus-visible > .preview-nav-icon {
  width: 33px;
  height: 33px;
  flex-basis: 33px;
}

.preview-new-button span {
  display: none;
}

.preview-new-wrap {
  position: relative;
  z-index: 5;
  width: var(--preview-dock-compose-size);
  height: var(--preview-dock-compose-size);
  margin-top: -19px;
  flex: 0 0 var(--preview-dock-compose-size);
  display: grid;
  place-items: center;
}

.preview-new-menu {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  z-index: 6;
  display: grid;
  gap: 6px;
  width: 188px;
  padding: 9px;
  background: #ffffff;
  border: 1px solid #d8dce6;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(24, 34, 53, 0.14);
  transform: translateX(-50%);
  animation: previewMenuIn 150ms ease both;
}

.preview-new-menu[hidden] {
  display: none;
}

.preview-new-menu::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-right: 1px solid #d8dce6;
  border-bottom: 1px solid #d8dce6;
  transform: translateX(-50%) rotate(45deg);
}

.preview-bottom-nav .preview-new-menu button,
.preview-bottom-nav .preview-new-menu button:hover,
.preview-bottom-nav .preview-new-menu button:focus-visible {
  width: 100% !important;
  min-width: 0 !important;
  height: 42px !important;
  min-height: 42px !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  overflow: visible !important;
  padding: 0 10px !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  color: #182235 !important;
  transform: none !important;
  transition:
    background 150ms ease,
    color 150ms ease !important;
}

.preview-bottom-nav .preview-new-menu button:hover,
.preview-bottom-nav .preview-new-menu button:focus-visible {
  background: #eef6ff !important;
  outline: 0;
}

.preview-bottom-nav .preview-new-menu button:hover,
.preview-bottom-nav .preview-new-menu button:focus-visible {
  width: 100% !important;
  min-width: 0 !important;
  gap: 10px !important;
}

.preview-new-menu img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
  opacity: 1;
}

.preview-bottom-nav .preview-new-menu button:hover img,
.preview-bottom-nav .preview-new-menu button:focus-visible img {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  transform: none;
}

.preview-new-menu button:nth-child(1) img {
  filter: brightness(0) saturate(100%);
}

.preview-new-menu button:nth-child(2) img {
  filter: brightness(0) saturate(100%);
}

.preview-new-menu button:nth-child(3) img {
  filter: brightness(0) saturate(100%);
}

.preview-new-menu button:nth-child(4) img {
  color: #000000;
  filter: brightness(0) saturate(100%);
}

.open-thread-preview img.preview-nav-icon,
.hero-visual:hover .open-thread-preview img.preview-nav-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  aspect-ratio: auto;
  object-fit: contain;
  transform: none;
  filter: none;
}

.open-thread-preview .preview-new-button img.preview-nav-icon,
.hero-visual:hover .open-thread-preview .preview-new-button img.preview-nav-icon {
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  transform: none;
  filter: none;
}

.open-thread-preview .preview-new-menu img,
.hero-visual:hover .open-thread-preview .preview-new-menu img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  aspect-ratio: auto;
  object-fit: contain;
  transform: none;
  filter: brightness(0) saturate(100%);
}

.preview-bottom-nav .preview-new-menu span,
.preview-bottom-nav .preview-new-menu button:hover span,
.preview-bottom-nav .preview-new-menu button:focus-visible span {
  display: inline !important;
  max-width: none !important;
  opacity: 1 !important;
  overflow: visible !important;
  color: #182235 !important;
  font-size: 0.8rem !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  transform: none !important;
  transition: none !important;
}

@keyframes previewMenuIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 700px) {
  .open-thread-preview {
    --preview-dock-rail-width: min(548px, calc(100% - 18px));
    --preview-dock-rail-height: 56px;
    --preview-dock-item-size: 34px;
    --preview-dock-hover-width: 34px;
    --preview-dock-compose-size: 60px;
    --preview-dock-gap: 4px;
  }

  .open-thread-preview {
    grid-template-columns: 1fr;
  }

  .preview-side-stack {
    display: none;
  }

  .preview-bottom-nav {
    bottom: 14px;
    width: var(--preview-dock-rail-width);
    height: var(--preview-dock-rail-height);
    padding: 7px;
  }

  .preview-ai-header {
    min-height: 68px;
    padding: 14px;
  }

  .preview-pill-button {
    display: none;
  }

  .preview-bottom-nav {
    gap: var(--preview-dock-gap);
  }

  .preview-bottom-nav > div {
    gap: var(--preview-dock-gap);
  }

  .preview-bottom-nav button {
    padding: 0;
  }

  .preview-bottom-nav span {
    display: none;
  }

  .preview-new-button {
    margin-top: 0;
  }

  .preview-new-wrap {
    width: var(--preview-dock-compose-size);
    height: var(--preview-dock-compose-size);
    margin-top: -11px;
    flex-basis: var(--preview-dock-compose-size);
  }
}

.waitlist-card {
  grid-template-columns: minmax(0, 1fr) auto;
}

.waitlist-form {
  justify-items: end;
}

.waitlist-form .link-button {
  min-width: 220px;
}

.giant-logo-strip {
  display: grid;
  place-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(54px, 8vw, 110px) clamp(16px, 4vw, 48px) clamp(42px, 6vw, 86px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(248, 225, 233, 0.7), transparent 38%),
    linear-gradient(180deg, #fffaf8 0%, #fff2ed 100%);
  border-top: 1px solid rgba(71, 93, 106, 0.08);
}

.giant-logo-strip img {
  display: block;
  justify-self: center;
  width: min(76vw, 1120px);
  min-width: 0;
  max-width: 100%;
  height: auto;
}

.site-footer {
  min-height: 330px;
  align-items: end;
  padding: 46px max(22px, calc((100vw - 1180px) / 2));
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 248, 0.12), rgba(255, 250, 248, 0.62)),
    url("./assets/footer-sky-thread.png") center / cover no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.66);
}

.footer-brand {
  align-self: end;
}

.app-code-dialog {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
}

.app-code-dialog[hidden] {
  display: none;
}

.app-code-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 40, 50, 0.34);
  border: 0;
  cursor: pointer;
}

.app-code-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(100%, 390px);
  padding: 24px;
  background: #fffaf8;
  border: 1px solid rgba(23, 40, 50, 0.14);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(23, 40, 50, 0.24);
}

.app-code-panel p,
.app-code-panel h2 {
  margin: 0;
}

.app-code-panel p {
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-code-panel h2 {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.1;
}

.app-code-panel label {
  display: grid;
  gap: 8px;
  color: rgba(23, 40, 50, 0.7);
  font-size: 0.86rem;
  font-weight: 800;
}

.app-code-panel input {
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  font-size: 1.05rem;
  background: #ffffff;
  border: 1px solid rgba(23, 40, 50, 0.16);
  border-radius: 12px;
  outline: none;
}

.app-code-panel input:focus {
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 4px rgba(236, 77, 255, 0.14);
}

.app-code-error {
  color: #b42318;
  font-size: 0.86rem;
  font-weight: 800;
}

.app-code-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px;
}

.app-code-actions button {
  position: relative;
  min-height: 40px;
  padding: 0 14px;
  overflow: hidden;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  background: #ffffff;
  border: 1px solid rgba(23, 40, 50, 0.14);
  border-radius: 999px;
  cursor: pointer;
}

.app-code-actions button[type="submit"] {
  color: #ffffff;
  background: var(--ink);
}

.footer-brand span,
.site-footer a {
  color: rgba(23, 40, 50, 0.72);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-deep);
}

@media (max-width: 980px) {
  .hero.section-pad {
    min-height: 100svh;
    height: auto;
    padding-top: clamp(124px, 15vh, 152px);
    padding-bottom: clamp(66px, 9vh, 88px);
  }

  .waitlist-card {
    grid-template-columns: 1fr;
  }

  .waitlist-form {
    justify-items: stretch;
  }
}

@media (max-width: 700px) {
  .hero.section-pad {
    min-height: 100svh;
    height: auto;
    padding-top: clamp(104px, 14vh, 126px);
    padding-bottom: 58px;
  }

  .hero-center {
    transform: translateY(12px);
  }

  .hero h1.hero-logo-heading {
    width: min(38vw, 180px) !important;
    max-width: min(38vw, 180px) !important;
  }

  .hero-text {
    max-width: calc(100vw - 34px);
    font-size: 1.08rem;
    line-height: 1.34;
  }

  .hero-cta {
    min-height: 58px;
  }

  .giant-logo-strip img {
    width: min(84vw, 520px);
  }

  .site-footer {
    min-height: 280px;
  }

}

/* Clarity, trust, and conversion pass */
:root {
  --muted: #526b78;
  --line-strong: rgba(71, 93, 106, 0.24);
}

.site-nav {
  gap: 2px;
}

.site-nav a {
  padding-inline: 10px;
}

.hero-kicker {
  order: -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 820px;
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  color: #ffffff;
  background: rgba(23, 40, 50, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(30, 70, 98, 0.12);
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-cta-row {
  gap: 12px;
  flex-wrap: wrap;
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.hero-cta.secondary {
  color: var(--ink);
  background: rgba(255, 252, 250, 0.9);
  border-color: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 16px 42px rgba(38, 82, 111, 0.16),
    0 0 0 7px rgba(255, 255, 255, 0.1);
}

.hero-cta.secondary:hover,
.hero-cta.secondary:focus-visible {
  color: #ffffff;
  background: var(--dark);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.section-heading .eyebrow,
.section-heading h2,
.section-heading .section-summary {
  grid-column: 1;
}

.section-heading .billing-toggle {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
}

.section-summary,
.integration-summary,
.waitlist-card p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.65;
}

.workspace-points,
.feature-detail-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.workspace-points article,
.feature-detail-grid article,
.trust-grid article {
  padding: 22px;
  background: rgba(255, 252, 250, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 14px;
  box-shadow: 0 18px 54px rgba(45, 83, 107, 0.1);
}

.workspace-points b,
.feature-detail-grid h3,
.trust-grid h3 {
  display: block;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.workspace-points p,
.feature-detail-grid p,
.trust-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.workflow-card p {
  max-width: 32rem;
}

.feature-detail-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.feature-detail-grid article {
  background: rgba(255, 252, 250, 0.78);
  border-color: rgba(71, 93, 106, 0.12);
}

.integration-summary {
  margin-top: 12px;
}

.price-card p,
.price-card li {
  line-height: 1.52;
}

.price-card .link-button {
  align-self: end;
  width: fit-content;
}

.comparison-wrap {
  margin-top: 18px;
  overflow-x: auto;
  background: rgba(255, 252, 250, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 0.94rem;
}

.comparison-table caption {
  padding: 18px 20px 0;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(71, 93, 106, 0.12);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  color: var(--ink);
  font-weight: 900;
}

.comparison-table tbody th {
  width: 20%;
  color: var(--ink);
  font-weight: 850;
}

.comparison-table td {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.trust {
  padding-top: 74px;
}

.trust-grid {
  margin-top: 0;
}

.trust-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 10px;
  color: var(--accent-deep);
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.waitlist-card p {
  max-width: 590px;
}

.waitlist-form {
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: start;
  justify-items: stretch;
}

.waitlist-form input {
  min-height: 54px;
  background: rgba(255, 255, 255, 0.92);
}

.waitlist-form button.link-button {
  min-width: 168px;
  min-height: 54px;
  border-radius: 999px;
}

.form-note {
  grid-column: 1 / -1;
}

.faq-list summary {
  color: var(--ink);
}

.giant-logo-strip {
  padding-block: clamp(34px, 5vw, 72px);
}

@media (max-width: 1080px) {
  .site-nav a {
    padding-inline: 8px;
    font-size: 0.86rem;
  }

  .header-actions .link-button.quiet {
    display: none;
  }

  .feature-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading .billing-toggle {
    grid-column: 1;
    grid-row: auto;
    margin-top: 20px;
  }

  .workspace-points,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .waitlist-form button.link-button {
    width: 100%;
  }
}

@media (max-width: 700px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header,
  .site-header.is-scrolled {
    left: 16px;
    width: min(358px, calc(100% - 32px));
    transform: none;
  }

  .hero-kicker {
    max-width: calc(100vw - 34px);
    font-size: 0.74rem;
    text-align: center;
    white-space: normal;
  }

  .hero-proof {
    display: grid;
    width: 100%;
    max-width: min(330px, calc(100vw - 44px));
    gap: 8px;
  }

  .hero-proof span {
    justify-content: center;
    min-height: 34px;
    font-size: 0.78rem;
    text-align: center;
    white-space: normal;
  }

  .hero.section-pad {
    overflow: hidden;
  }

  .hero-center,
  .hero .hero-center {
    width: min(358px, calc(100vw - 32px));
    max-width: min(358px, calc(100vw - 32px));
    justify-self: start;
  }

  .hero-text,
  .hero .hero-text {
    width: min(100%, 330px);
    max-width: min(100%, 330px);
  }

  .hero-cta-row {
    width: min(100%, 330px);
  }

.hero-cta.secondary {
  width: min(100%, 310px);
}

.section-summary,
.integration-summary,
.waitlist-card p {
    font-size: 0.98rem;
  }

  .feature-detail-grid {
    grid-template-columns: 1fr;
  }

  .workspace-points article,
  .feature-detail-grid article,
  .trust-grid article {
    padding: 19px;
  }

  .comparison-wrap {
    margin-right: -16px;
    margin-left: -16px;
    border-radius: 0;
  }

  .comparison-table {
    min-width: 760px;
  }
}

/* Opening loader */
body.is-loading {
  overflow: hidden;
}

body.is-loading::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  background: #ffffff;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 720ms ease;
}

body.is-loading.is-loader-exiting::before {
  opacity: 0;
}

body.is-loading .hero-center {
  position: relative;
  z-index: 90;
}

body.is-loading .site-header {
  opacity: 0;
  transform: translateX(-50%) translateY(-12px);
}

body.is-loading.is-loader-exiting .site-header {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 700px) {
  body.is-loading .site-header {
    transform: translateY(-12px);
  }

  body.is-loading.is-loader-exiting .site-header {
    transform: translateY(0);
  }
}

body.is-loading .hero-logo-heading {
  position: relative;
  z-index: 90;
}

body.is-loading .hero-proof,
body.is-loading .hero-cta-row {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

body.is-loading.is-loader-exiting .hero-proof,
body.is-loading.is-loader-exiting .hero-cta-row {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.is-loading .hero-logo-heading img {
  opacity: 0;
  filter: brightness(0) drop-shadow(0 18px 54px rgba(28, 74, 106, 0.18));
  animation: openThreadLoaderLogoIn 520ms ease 140ms forwards;
  transition: filter 720ms ease;
}

body.is-loading.is-loader-exiting .hero-logo-heading img {
  filter: brightness(1) drop-shadow(0 18px 54px rgba(28, 74, 106, 0.18));
}

@keyframes openThreadLoaderLogoIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Logo palette theme pass */
:root {
  --logo-blue: #9ed7f5;
  --logo-blue-rgb: 158, 215, 245;
  --logo-blue-strong: #2f8fbe;
  --logo-green: #bde8df;
  --logo-green-rgb: 189, 232, 223;
  --logo-green-strong: #2f8778;
  --logo-pink: #f2a9c2;
  --logo-pink-rgb: 242, 169, 194;
  --logo-pink-strong: #b83f68;
  --logo-purple: #cdb8ff;
  --logo-purple-rgb: 205, 184, 255;
  --logo-purple-strong: #7058bd;
  --logo-yellow: #f6d68a;
  --logo-yellow-rgb: 246, 214, 138;
  --logo-yellow-strong: #956817;
  --logo-cloud: #d8dde3;
  --logo-cloud-rgb: 216, 221, 227;
  --logo-cloud-strong: #5f7380;
}

.scroll-progress {
  background: linear-gradient(
    90deg,
    var(--logo-pink) 0%,
    var(--logo-blue) 25%,
    var(--logo-green) 50%,
    var(--logo-purple) 75%,
    var(--logo-yellow) 100%
  );
  background-size: 100vw 100%;
}

.hero-cta:not(.secondary),
.hero-cta:not(.secondary):hover,
.hero-cta:not(.secondary):focus-visible {
  color: #ffffff;
  background: linear-gradient(
    110deg,
    var(--logo-blue) 0%,
    var(--logo-pink) 18%,
    var(--logo-purple) 36%,
    var(--logo-yellow) 54%,
    var(--logo-cloud) 72%,
    var(--logo-green) 90%,
    var(--logo-blue) 100%
  );
  background-size: 360% 100%;
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 20px 52px rgba(80, 121, 145, 0.28),
    0 0 0 7px rgba(255, 255, 255, 0.13);
  animation: openPastelButtonCycle 24s ease-in-out infinite;
}

.hero-cta:not(.secondary):hover,
.hero-cta:not(.secondary):focus-visible {
  box-shadow:
    0 26px 68px rgba(80, 121, 145, 0.34),
    0 0 0 7px rgba(255, 255, 255, 0.18);
}

@keyframes openPastelButtonCycle {
  0%,
  100% {
    background-position: 0% 50%;
  }

  16% {
    background-position: 20% 50%;
  }

  32% {
    background-position: 40% 50%;
  }

  48% {
    background-position: 60% 50%;
  }

  64% {
    background-position: 80% 50%;
  }

  80% {
    background-position: 100% 50%;
  }
}

#workspace {
  --section-accent: var(--logo-pink);
  --section-accent-rgb: var(--logo-pink-rgb);
  --section-accent-strong: var(--logo-pink-strong);
  --section-accent-soft: #fde9f0;
}

#flow {
  --section-accent: var(--logo-blue);
  --section-accent-rgb: var(--logo-blue-rgb);
  --section-accent-strong: var(--logo-blue-strong);
  --section-accent-soft: #e9f6fd;
}

#features {
  --section-accent: var(--logo-green);
  --section-accent-rgb: var(--logo-green-rgb);
  --section-accent-strong: var(--logo-green-strong);
  --section-accent-soft: #e8f7f4;
}

#integrations {
  --section-accent: var(--logo-purple);
  --section-accent-rgb: var(--logo-purple-rgb);
  --section-accent-strong: var(--logo-purple-strong);
  --section-accent-soft: #f0ebff;
}

#pricing {
  --section-accent: var(--logo-yellow);
  --section-accent-rgb: var(--logo-yellow-rgb);
  --section-accent-strong: var(--logo-yellow-strong);
  --section-accent-soft: #fff4d7;
}

#trust {
  --section-accent: var(--logo-cloud);
  --section-accent-rgb: var(--logo-cloud-rgb);
  --section-accent-strong: var(--logo-cloud-strong);
  --section-accent-soft: #eef2f5;
}

#waitlist {
  --section-accent: var(--logo-pink);
  --section-accent-rgb: var(--logo-pink-rgb);
  --section-accent-strong: var(--logo-pink-strong);
  --section-accent-soft: #fde9f0;
}

#faq {
  --section-accent: var(--logo-purple);
  --section-accent-rgb: var(--logo-purple-rgb);
  --section-accent-strong: var(--logo-purple-strong);
  --section-accent-soft: #f0ebff;
}

.hero-proof span:nth-child(1) {
  color: #103a55;
  background: rgba(var(--logo-blue-rgb), 0.74);
  border-color: rgba(255, 255, 255, 0.46);
}

.hero-proof span:nth-child(2) {
  color: #16463f;
  background: rgba(var(--logo-green-rgb), 0.74);
  border-color: rgba(255, 255, 255, 0.46);
}

.hero-proof span:nth-child(3) {
  color: #5d4310;
  background: rgba(var(--logo-yellow-rgb), 0.78);
  border-color: rgba(255, 255, 255, 0.48);
}

#workspace.section-light {
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--section-accent-rgb), 0.22), transparent 38%),
    linear-gradient(180deg, #fffaf8 0%, #fff3ee 100%);
}

#flow.section-light,
#integrations.section-light,
#trust.section-light {
  background:
    radial-gradient(circle at 86% 6%, rgba(var(--section-accent-rgb), 0.2), transparent 30%),
    linear-gradient(180deg, #fffaf8 0%, #fff5f1 100%);
}

#features.section-dark,
#pricing.section-dark,
#faq.section-dark {
  background:
    radial-gradient(circle at 84% 8%, rgba(var(--section-accent-rgb), 0.22), transparent 30%),
    linear-gradient(180deg, #fff8f4 0%, #f8eee8 100%);
}

.section .eyebrow,
.section-light .eyebrow,
.section-dark .eyebrow,
.section-light .plan-label,
.comparison-table caption,
.trust-label,
.preview-panel p:first-child,
.faq-list details[open] summary {
  color: var(--section-accent-strong, var(--accent-deep));
}

.section-heading h2,
.integration-copy h2,
.waitlist-card h2,
.section-dark .section-heading h2 {
  color: var(--section-accent-strong, var(--ink));
}

.workspace-points article,
.workflow-card,
.feature-detail-grid article,
.trust-grid article,
.feature-shell,
.price-card,
.faq-list,
.integration-board,
.comparison-wrap,
.waitlist-card {
  border-color: rgba(var(--section-accent-rgb, 185, 63, 105), 0.22);
}

.workspace-points b,
.feature-detail-grid h3,
.trust-grid h3,
.card-index,
.plan-label {
  color: var(--section-accent-strong, var(--accent-deep));
}

#flow .thread-flow::before {
  background: linear-gradient(90deg, rgba(var(--logo-blue-rgb), 0.2), var(--logo-blue-strong), rgba(var(--logo-blue-rgb), 0.45));
}

#flow .thread-flow span {
  border-color: rgba(var(--logo-blue-rgb), 0.86);
}

#flow .thread-flow span::after {
  border-color: rgba(var(--logo-blue-rgb), 0.5);
}

#flow .workflow-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(var(--logo-blue-rgb), 0.14));
}

#features .feature-tab.is-active,
#features .billing-toggle button.is-active,
#integrations .integration-pill.is-active,
#integrations .integration-pill:hover,
#integrations .integration-pill:focus-visible,
#pricing .billing-toggle button.is-active {
  color: #ffffff;
  background: var(--section-accent-strong);
}

#features .preview-row.is-strong,
#features .feature-detail-grid article {
  background: rgba(var(--logo-green-rgb), 0.24);
  border-color: rgba(var(--logo-green-rgb), 0.5);
}

#features .preview-panel {
  background:
    radial-gradient(circle at 84% 12%, rgba(var(--logo-green-rgb), 0.28), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #eefaf7 100%);
}

#features .preview-panel::before {
  background: var(--logo-green-strong);
}

#integrations .integration-board {
  background:
    linear-gradient(90deg, rgba(var(--logo-purple-rgb), 0.12) 1px, transparent 1px),
    linear-gradient(rgba(var(--logo-purple-rgb), 0.12) 1px, transparent 1px),
    rgba(255, 252, 250, 0.78);
  background-size: 44px 44px;
}

#integrations .integration-pill.is-active,
#integrations .integration-pill:hover,
#integrations .integration-pill:focus-visible {
  box-shadow: 0 14px 34px rgba(var(--logo-purple-rgb), 0.34);
}

#pricing .price-card.featured {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(var(--logo-yellow-rgb), 0.38) 100%);
  border-color: rgba(var(--logo-yellow-rgb), 0.58);
  box-shadow: 0 30px 84px rgba(var(--logo-yellow-rgb), 0.2);
}

#pricing .price-card li::before {
  background: var(--logo-yellow-strong);
}

#pricing .price-card.featured .link-button.dark,
#waitlist .waitlist-card .link-button.dark {
  background: var(--section-accent-strong);
  border-color: var(--section-accent-strong);
}

#trust .trust-label {
  background: var(--section-accent-soft);
}

#waitlist .waitlist-card {
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.82), transparent 26%),
    linear-gradient(135deg, #fff9f4 0%, rgba(var(--logo-pink-rgb), 0.42) 100%);
}

#waitlist .waitlist-form input:focus {
  border-color: rgba(var(--logo-pink-rgb), 0.78);
  box-shadow: 0 0 0 4px rgba(var(--logo-pink-rgb), 0.22);
}

#faq .faq-list summary:hover,
#faq .faq-list summary:focus-visible {
  background: rgba(var(--logo-purple-rgb), 0.22);
}

.giant-logo-strip {
  background:
    radial-gradient(circle at 18% 12%, rgba(var(--logo-blue-rgb), 0.24), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(var(--logo-green-rgb), 0.26), transparent 28%),
    linear-gradient(180deg, #fffaf8 0%, #fff2ed 100%);
}

#workspace .section-heading h2,
#workspace .eyebrow,
#workspace .workspace-points b {
  color: #b83f68 !important;
}

#flow .section-heading h2,
#flow .eyebrow,
#flow .card-index {
  color: #2f8fbe !important;
}

#features .section-heading h2,
#features .eyebrow,
#features .feature-detail-grid h3,
#features .preview-panel p:first-child {
  color: #2f8778 !important;
}

#integrations .integration-copy h2,
#integrations .eyebrow {
  color: #7058bd !important;
}

#pricing .section-heading h2,
#pricing .eyebrow,
#pricing .plan-label,
#pricing .comparison-table caption {
  color: #956817 !important;
}

#trust .section-heading h2,
#trust .eyebrow,
#trust .trust-grid h3,
#trust .trust-label {
  color: #5f7380 !important;
}

#waitlist .eyebrow,
#waitlist .waitlist-card h2 {
  color: #b83f68 !important;
}

#faq .section-heading h2,
#faq .eyebrow,
#faq .faq-list details[open] summary {
  color: #7058bd !important;
}

#flow .thread-flow::before {
  background: linear-gradient(90deg, rgba(158, 215, 245, 0.22), #2f8fbe, rgba(158, 215, 245, 0.52));
}

#flow .thread-flow span {
  border-color: #9ed7f5;
}

#features .feature-tab.is-active {
  background: #2f8778;
}

#integrations .integration-pill.is-active,
#integrations .integration-pill:hover,
#integrations .integration-pill:focus-visible {
  background: #7058bd;
}

#pricing .billing-toggle button.is-active {
  background: #956817;
}

#pricing .price-card {
  grid-template-rows: auto auto auto 1fr auto;
}

#pricing .price-card ul {
  align-self: start;
}

#pricing .price-card.featured {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 255, 255, 0.86), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, rgba(var(--logo-pink-rgb), 0.34) 100%);
  border-color: rgba(var(--logo-pink-rgb), 0.58);
  box-shadow: 0 30px 84px rgba(var(--logo-pink-rgb), 0.18);
}

#pricing .price-card.featured .plan-label {
  color: var(--logo-pink-strong) !important;
  background: #fde9f0;
}

#pricing .price-card.featured li::before {
  background: var(--logo-pink-strong);
}

#pricing .price-card.featured .link-button.dark {
  color: #ffffff;
  background: var(--logo-pink-strong);
  border-color: var(--logo-pink-strong);
  box-shadow: 0 18px 44px rgba(var(--logo-pink-rgb), 0.34);
}

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

  .feature-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(71, 93, 106, 0.12);
  }
}

@media (max-width: 700px) {
  .feature-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-preview {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .preview-list {
    align-content: start;
  }

  .preview-panel {
    min-height: 230px;
  }
}

/* Mobile landing refinement */
@media (max-width: 760px) {
  :root {
    --section: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 86px;
  }

  .site-header,
  .site-header.is-scrolled {
    top: 12px;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    min-height: 58px;
    padding: 8px 8px 8px 12px;
    border-radius: 12px;
    transform: none;
  }

  .brand img {
    width: 128px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .site-nav.is-open {
    top: calc(100% + 10px);
    max-height: min(70vh, 420px);
    overflow-y: auto;
    padding: 8px;
    border-radius: 12px;
  }

  .site-nav.is-open a {
    min-height: 46px;
    padding: 13px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  .hero.section-pad {
    min-height: 100svh;
    padding-top: 104px;
    padding-bottom: 48px;
    background-position: 51% bottom;
  }

  .hero-center,
  .hero .hero-center {
    width: 100%;
    max-width: 420px;
    justify-self: center;
    gap: 18px;
    transform: none;
  }

  .hero h1.hero-logo-heading {
    width: min(68vw, 250px) !important;
    max-width: min(68vw, 250px) !important;
  }

  .hero-logo-heading img {
    max-width: 250px !important;
  }

  .hero-proof {
    width: 100%;
    max-width: 340px;
    gap: 7px;
  }

  .hero-proof span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.74rem;
    line-height: 1.2;
  }

  .hero-cta-row {
    display: grid;
    width: 100%;
    max-width: 320px;
    gap: 10px;
    margin-top: 8px;
  }

  .hero-cta,
  .hero-cta.secondary {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .workspace-showcase {
    padding-top: 48px;
  }

  .section-heading {
    gap: 0;
    margin-bottom: 24px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.7rem;
  }

  .section-heading h2,
  .integration-copy h2,
  .waitlist-card h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1;
    letter-spacing: -0.025em;
  }

  .section-summary,
  .integration-summary,
  .waitlist-card p {
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .product-showcase {
    width: 100%;
  }

  .product-window,
  .hero-visual:hover .product-window {
    border-radius: 12px;
    box-shadow: 0 18px 48px rgba(45, 83, 107, 0.16);
  }

  .open-thread-preview {
    --preview-dock-rail-width: calc(100% - 16px);
    --preview-dock-rail-height: 54px;
    --preview-dock-item-size: 32px;
    --preview-dock-compose-size: 58px;
    min-height: 500px;
    padding: 10px;
    padding-bottom: 86px;
  }

  .preview-ai-header {
    min-height: 58px;
    padding: 12px;
  }

  .preview-ai-header p,
  .preview-widget-head p {
    font-size: 0.58rem;
  }

  .preview-ai-header h3,
  .preview-widget-head h3,
  .preview-up-next-card h3 {
    font-size: 1rem;
  }

  .preview-ai-thread {
    padding: 22px 14px;
  }

  .preview-ai-empty h4 {
    font-size: clamp(1.32rem, 7vw, 1.8rem);
  }

  .preview-ai-empty p {
    font-size: 0.86rem;
  }

  .preview-ai-composer {
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 8px;
    margin: 0 10px 10px;
    padding: 8px;
  }

  .preview-send-button {
    width: 38px;
    height: 38px;
  }

  .preview-bottom-nav {
    bottom: 12px;
    padding: 7px;
  }

  .preview-bottom-nav > div:nth-child(3) button:last-child {
    display: none;
  }

  .preview-nav-icon,
  .open-thread-preview img.preview-nav-icon,
  .hero-visual:hover .open-thread-preview img.preview-nav-icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .open-thread-preview .preview-new-button img.preview-nav-icon,
  .hero-visual:hover .open-thread-preview .preview-new-button img.preview-nav-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .workspace-points,
  .workflow-grid,
  .pricing-grid,
  .trust-grid {
    gap: 12px;
  }

  .workspace-points article,
  .workflow-card,
  .price-card,
  .trust-grid article {
    padding: 18px;
    border-radius: 12px;
  }

  .workflow-card h3,
  .price-card h3 {
    margin-top: 18px;
  }

  .integrations {
    gap: 22px;
  }

  .integration-board {
    min-height: 0;
    gap: 8px;
    padding: 16px;
    background-size: 34px 34px;
  }

  .integration-pill {
    flex: 1 1 calc(50% - 8px);
    min-height: 46px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .billing-toggle {
    width: 100%;
  }

  .billing-toggle button {
    flex: 1;
  }

  .price-card {
    min-height: 0;
  }

  .price-card .link-button {
    width: 100%;
  }

  .comparison-wrap {
    margin-top: 14px;
    margin-right: -16px;
    margin-left: -16px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: 0 14px 34px rgba(45, 83, 107, 0.12);
  }

  .comparison-table {
    min-width: 650px;
    font-size: 0.84rem;
  }

  .comparison-table caption,
  .comparison-table th,
  .comparison-table td {
    padding-right: 14px;
    padding-left: 14px;
  }

  .waitlist-card {
    gap: 22px;
    padding: 20px;
    border-radius: 12px;
  }

  .waitlist-form {
    gap: 9px;
  }

  .waitlist-form input,
  .waitlist-form button.link-button {
    min-height: 50px;
  }

  .faq-list summary {
    padding: 18px;
    font-size: 1rem;
    line-height: 1.28;
  }

  .faq-list summary:hover,
  .faq-list summary:focus-visible {
    padding-left: 18px;
  }

  .faq-list p {
    margin: -4px 18px 20px;
    font-size: 0.95rem;
  }

  .giant-logo-strip {
    padding: 34px 16px 30px;
  }

  .giant-logo-strip img {
    width: min(92vw, 420px);
  }

  .site-footer {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 38px 16px 34px;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 10px;
  }

  .site-footer a {
    min-height: 40px;
    padding: 10px 0;
  }
}

@media (max-width: 390px) {
  .brand img {
    width: 118px;
  }

  .hero.section-pad {
    padding-top: 96px;
  }

  .hero h1.hero-logo-heading {
    width: min(70vw, 220px) !important;
    max-width: min(70vw, 220px) !important;
  }

  .hero-proof,
  .hero-cta-row {
    max-width: 100%;
  }

  .open-thread-preview {
    min-height: 468px;
  }

  .preview-bottom-nav > div:first-child button:first-child,
  .preview-bottom-nav > div:nth-child(3) button:nth-child(3) {
    display: none;
  }

  .integration-pill {
    flex-basis: 100%;
  }
}

/* Integrations directory refresh */
#integrations .integration-copy p[data-integration-note] {
  max-width: 620px;
  color: #28233c;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  font-weight: 720;
  line-height: 1.5;
}

#integrations .integration-summary {
  max-width: 600px;
}

#integrations .integration-board {
  display: grid;
  gap: 14px;
  min-height: 0;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 255, 0.92));
  border: 1px solid rgba(84, 76, 112, 0.14);
  border-radius: 16px;
  box-shadow: 0 18px 56px rgba(55, 45, 92, 0.1);
  animation: none;
}

.integration-board-header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(84, 76, 112, 0.12);
}

.integration-board-header span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: #f4f1ff;
  border: 1px solid rgba(112, 88, 189, 0.14);
  border-radius: 10px;
}

.integration-board-header img {
  width: 26px;
  height: 26px;
}

.integration-board-header strong {
  display: block;
  color: #19142d;
  font-size: 1rem;
  line-height: 1.2;
}

.integration-board-header small {
  display: block;
  margin-top: 3px;
  color: #746e89;
  font-size: 0.84rem;
  font-weight: 680;
  line-height: 1.35;
}

.integration-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 12px;
}

#integrations .integration-pill {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  flex: initial;
  gap: 12px;
  align-items: center;
  min-width: 0;
  min-height: 84px;
  padding: 14px;
  color: #1d1930;
  text-align: left;
  background: #ffffff;
  border: 1px solid rgba(84, 76, 112, 0.12);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(55, 45, 92, 0.06);
}

#integrations .integration-pill:hover,
#integrations .integration-pill:focus-visible,
#integrations .integration-pill.is-active {
  color: #1d1930;
  background: #ffffff;
  border-color: rgba(112, 88, 189, 0.3);
  box-shadow: 0 14px 34px rgba(55, 45, 92, 0.1);
  transform: translateY(-2px);
}

#integrations .integration-pill.is-active {
  outline: 2px solid rgba(112, 88, 189, 0.18);
  outline-offset: 2px;
}

.integration-icon-wrap {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: #19142d;
  border-radius: 12px;
}

.integration-pill--slack .integration-icon-wrap { background: #4a154b; }
.integration-pill--discord .integration-icon-wrap { background: #5865f2; }
.integration-pill--gmail .integration-icon-wrap { background: #ea4335; }
.integration-pill--drive .integration-icon-wrap { background: #4285f4; }
.integration-pill--calendar .integration-icon-wrap { background: #1a73e8; }
.integration-pill--teams .integration-icon-wrap { background: #6264a7; }

.integration-icon-wrap img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.integration-pill-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.integration-pill-copy strong {
  color: inherit;
  font-size: 0.96rem;
  line-height: 1.18;
}

.integration-pill-copy small {
  color: #746e89;
  font-size: 0.78rem;
  font-weight: 680;
  line-height: 1.25;
}

.integration-status {
  justify-self: end;
  padding: 5px 8px;
  color: #5c526f;
  background: #f4f2f8;
  border: 1px solid rgba(84, 76, 112, 0.1);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
}

#integrations .integration-pill.is-active .integration-status {
  color: #ffffff;
  background: #7058bd;
}

@media (max-width: 980px) {
  #integrations.integrations {
    grid-template-columns: 1fr;
  }

  .integration-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  #integrations .integration-copy p[data-integration-note] {
    font-size: 1.04rem;
  }

  #integrations .integration-board {
    min-height: 0;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
  }

  .integration-stack {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  #integrations .integration-pill {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    min-height: 76px;
    padding: 12px;
  }

  .integration-icon-wrap {
    width: 42px;
    height: 42px;
  }

  .integration-pill-copy strong,
  .integration-pill-copy small {
    white-space: normal;
  }
}
