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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  max-width: 100%;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

[hidden] {
  display: none !important;
}

@keyframes luPulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 70%, transparent); }
  70% { box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent) 0%, transparent); }
  100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 0%, transparent); }
}

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

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--primary) 36%, transparent);
  outline-offset: 3px;
}

.section-shell {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-style: solid;
  border-width: 1px;
  font-family: var(--font-sans);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-standard), border-color var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard), filter var(--dur-fast);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.btn--sm {
  padding: 6px 12px;
  border-radius: var(--radius-md);
  font-size: 12.5px;
}

.btn--md {
  padding: 9px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
}

.btn--lg {
  padding: 11px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
}

.btn--primary {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-ink);
  font-weight: 700;
}

.btn--primary:hover:not(:disabled) {
  border-color: var(--primary-hover);
  background: var(--primary-hover);
}

.btn--secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
}

.btn--secondary:hover:not(:disabled) {
  border-color: var(--border-strong);
}

.btn--ghost {
  border-color: transparent;
  background: transparent;
  color: var(--text-soft);
  font-weight: 700;
}

.btn--ghost:hover:not(:disabled) {
  background: var(--surface-sunk);
  color: var(--ink);
}

.cat-tag {
  display: inline-block;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cat-tag--issue {
  background: var(--cat-issue-bg);
  color: var(--cat-issue);
}

.cat-tag--feedback {
  background: var(--cat-feedback-bg);
  color: var(--cat-feedback);
}

.source-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.source-badge--sm {
  padding: 3px 9px;
  font-size: 11px;
}

.source-icon {
  display: block;
  flex: none;
}

.source-icon--brand {
  fill: var(--src-discord);
}

.source-icon--mono {
  fill: currentColor;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1180px;
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  display: block;
  width: auto;
  height: 27px;
}

.brand > span {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

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

.nav__right {
  gap: 24px;
}

.nav__links {
  gap: 26px;
}

.nav__links a,
.footer__links a,
.footer__legal a {
  color: var(--text-soft);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-standard);
}

.nav__links a {
  font-size: 14px;
}

.nav__links a:hover,
.footer__links a:hover,
.footer__legal a:hover {
  color: var(--ink);
}

.nav__divider {
  width: 1px;
  height: 18px;
  background: var(--border);
}

.nav__actions {
  gap: 10px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 24px 56px;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 26px;
  gap: 9px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow__pulse {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
  animation: luPulse 2.6s var(--ease-standard) infinite;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--primary);
}

.hero__copy > p {
  max-width: 30em;
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  text-wrap: pretty;
}

.lu-cta-row {
  display: flex;
  align-items: center;
  margin-top: 34px;
  gap: 14px;
}

.inbox-visual {
  position: relative;
  animation: luFloat 7s var(--ease-standard) infinite;
}

.inbox-visual__backdrop {
  position: absolute;
  inset: 14px -10px -16px 24px;
  transform: rotate(2deg);
  border-radius: var(--radius-xl);
  background: var(--primary-soft);
}

.inbox-window {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-pop);
  gap: 12px;
}

.inbox-window__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 4px 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.inbox-window__count {
  display: inline-flex;
  align-items: center;
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  gap: 6px;
}

.inbox-window__count > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sent-pos);
}

.conversation-card {
  position: relative;
  padding: 16px 20px;
  border: 1px solid;
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-sans);
}

.conversation-card--issue {
  border-color: var(--cat-issue-border);
}

.conversation-card--feedback {
  border-color: var(--cat-feedback-border);
}

.conversation-card__accent {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 3px;
  border-radius: 0 4px 4px 0;
}

.conversation-card--issue .conversation-card__accent {
  width: 4px;
  background: var(--cat-issue);
}

.conversation-card--feedback .conversation-card__accent {
  background: var(--cat-feedback);
}

.conversation-card__header,
.conversation-card__footer,
.conversation-card__tags,
.conversation-card__stats,
.conversation-card__stats span,
.conversation-card__actions,
.status {
  display: flex;
  align-items: center;
}

.conversation-card__header,
.conversation-card__footer {
  justify-content: space-between;
  gap: 12px;
}

.conversation-card__header {
  margin-bottom: 9px;
}

.conversation-card__tags {
  min-width: 0;
  gap: 8px;
}

.status {
  padding: 3px 8px;
  border: 1px solid;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 700;
  gap: 5px;
}

.status--open {
  border-color: var(--status-open-border);
  background: var(--status-open-bg);
  color: var(--status-open);
}

.status--resolved {
  border-color: var(--status-resolved-border);
  background: var(--status-resolved-bg);
  color: var(--status-resolved);
}

.conversation-card h2 {
  margin: 2px 0 6px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.conversation-card h2 span {
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
}

.conversation-card > p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13.5px;
  line-height: 1.55;
}

.conversation-card > p b {
  color: var(--primary);
  font-weight: 700;
}

.conversation-card__footer {
  margin-top: 14px;
  color: var(--text-faint);
}

.conversation-card__stats {
  font-size: 12px;
  font-weight: 600;
  gap: 16px;
}

.conversation-card__stats span {
  gap: 6px;
}

.sentiment {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.sentiment--negative { background: var(--sent-neg); }
.sentiment--positive { background: var(--sent-pos); }

.conversation-card__actions {
  gap: 14px;
}

.conversation-card__actions span:first-child {
  color: var(--ink-2);
  font-size: 12.5px;
  font-weight: 700;
}

.conversation-card__actions span:last-child {
  padding: 6px 14px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: var(--primary-ink);
  font-size: 12.5px;
  font-weight: 700;
}

.product,
.closing {
  background: var(--paper);
}

.product__inner {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-heading--left {
  max-width: 36em;
  margin-bottom: 38px;
}

.section-heading > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2,
.closing h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.55;
}

.section-heading--center {
  max-width: 32em;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading--center h2 {
  margin: 0;
}

.browser-window {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-pop);
}

.product__preview-copy {
  max-width: 1120px;
  margin: 40px auto 16px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.5;
}

.browser-window__bar {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-sunk);
  gap: 14px;
}

.browser-window__bar > div {
  display: flex;
  gap: 7px;
}

.browser-window__bar > div span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--border-strong);
}

.browser-window__bar > span {
  display: inline-flex;
  align-items: center;
  width: 100%;
  max-width: 300px;
  height: 24px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 12px;
}

.browser-window__viewport {
  width: 100%;
  background: var(--paper);
}

.browser-window__viewport img {
  display: block;
  width: 100%;
  height: auto;
}

.capabilities {
  padding-top: 104px;
  padding-bottom: 104px;
}

.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.capability-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.capability-card > span {
  display: block;
  margin-bottom: 18px;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}

.capability-card h3,
.community h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.capability-card p,
.community p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.community {
  padding-bottom: 104px;
}

.community__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  gap: 28px;
}

.community__copy {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 20px;
}

.community__copy > div {
  min-width: 0;
}

.community__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex: none;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--src-discord) 14%, var(--surface));
}

.community h3 {
  margin-bottom: 6px;
  font-size: 21px;
}

.community p {
  max-width: 40em;
  line-height: 1.5;
}

.discord-link {
  display: inline-flex;
  align-items: center;
  flex: none;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  background: var(--src-discord);
  color: var(--primary-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  gap: 9px;
  transition: filter var(--dur-fast);
}

.discord-link:hover {
  filter: brightness(1.08);
}

.closing__inner {
  padding-top: 96px;
  padding-bottom: 96px;
  text-align: center;
}

.closing h2 {
  max-width: 22em;
  margin: 0 auto;
  font-size: clamp(30px, 4vw, 48px);
  text-wrap: balance;
}

.closing p {
  max-width: 32em;
  margin: 18px auto 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
}

.closing .lu-cta-row {
  justify-content: center;
  margin-top: 32px;
}

.footer {
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  padding-bottom: 40px;
  gap: 24px;
}

.footer__top,
.footer__legal,
.footer__legal > div,
.footer__socials {
  display: flex;
  align-items: center;
}

.footer__top,
.footer__legal {
  justify-content: space-between;
  gap: 20px;
}

.brand--footer {
  gap: 8px;
}

.brand--footer img {
  height: 22px;
}

.brand--footer > span {
  font-size: 21px;
}

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

.footer__links a {
  font-size: 13px;
}

.footer__legal {
  padding-top: 22px;
  border-top: 1px solid var(--border-soft);
}

.footer__legal > div:first-child {
  flex-wrap: wrap;
  gap: 16px;
}

.footer__legal span {
  color: var(--text-faint);
  font-size: 12.5px;
}

.footer__legal a {
  font-size: 12.5px;
}

.footer__socials {
  gap: 10px;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-soft);
  text-decoration: none;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}

.footer__socials a:hover {
  border-color: var(--border-strong);
  color: var(--ink);
}

.modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-pop);
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 30px 0;
  gap: 16px;
}

.modal__header > div > span {
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.modal__header h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.modal__header p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: 2px;
  flex: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text-soft);
  cursor: pointer;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}

.modal__close:hover {
  border-color: var(--border-strong);
  color: var(--ink);
}

.demo-form {
  display: grid;
  padding: 22px 30px 30px;
  gap: 16px;
}

.m-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.demo-form label,
.demo-form label > span {
  display: block;
}

.demo-form label > span {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.demo-form input,
.demo-form select {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.demo-form select {
  appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-soft) 50%), linear-gradient(135deg, var(--text-soft) 50%, transparent 50%);
  background-position: calc(100% - 17px) 50%, calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.demo-form input:focus,
.demo-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 12%, transparent);
}

.demo-form input:invalid:not(:placeholder-shown),
.demo-form select:invalid:focus {
  border-color: var(--sent-neg);
}

.demo-form__footer {
  display: flex;
  align-items: center;
  margin-top: 2px;
  gap: 12px;
}

.demo-form__footer > span {
  color: var(--text-faint);
  font-size: 12px;
}

.form-error {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--sent-neg) 30%, var(--border));
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--sent-neg) 8%, var(--surface));
  color: var(--sent-neg);
  font-size: 13px;
  line-height: 1.4;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.modal__success {
  padding: 34px 30px 36px;
  text-align: center;
}

.modal__success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--sent-pos) 16%, var(--surface));
  color: var(--sent-pos);
}

.modal__success h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.modal__success p {
  max-width: 34em;
  margin: 10px auto 24px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.visually-hidden {
  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: calc(100vh - 64px);
}

.legal-hero {
  padding-top: 88px;
  padding-bottom: 56px;
}

.legal-hero__eyebrow,
.subscription-card__copy > span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.legal-hero > p:not(.legal-hero__updated) {
  max-width: 43em;
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.6;
}

.legal-hero__updated {
  margin: 18px 0 0;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 12px;
}

.subscription-confirmed {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--sent-pos) 30%, var(--border));
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--sent-pos) 8%, var(--surface));
  color: var(--text-soft);
  font-size: 14px;
  gap: 6px;
}

.subscription-confirmed[hidden] {
  display: none;
}

.subscription-confirmed strong {
  color: var(--sent-pos);
}

.legal-content {
  padding-bottom: 80px;
}

.legal-content > h2,
.notice-card h2,
.subscription-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.subprocessor-table-wrap {
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.subprocessor-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.subprocessor-table th,
.subprocessor-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
  font-size: 14px;
  line-height: 1.5;
}

.subprocessor-table thead th {
  background: var(--surface-sunk);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subprocessor-table tbody th {
  color: var(--ink);
  font-weight: 700;
}

.subprocessor-table tbody td {
  color: var(--text-soft);
}

.subprocessor-table tbody tr:last-child th,
.subprocessor-table tbody tr:last-child td {
  border-bottom: 0;
}

.notice-card {
  margin-top: 28px;
  padding: 26px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.notice-card h2 {
  font-size: 18px;
}

.notice-card p {
  max-width: 58em;
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.legal-toc a {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.legal-toc a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.legal-doc {
  margin-top: 22px;
  padding: 36px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.legal-doc p,
.legal-doc li {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
  overflow-wrap: break-word;
}

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

.legal-doc > :first-child {
  margin-top: 0;
}

.legal-doc h3,
.legal-doc h4 {
  margin: 30px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.legal-doc h3 + p,
.legal-doc h4 + p {
  margin-top: 8px;
}

.legal-doc a {
  color: var(--primary);
}

.legal-doc .clause-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.legal-doc .clause-list li {
  margin-top: 10px;
  padding-left: 24px;
}

.legal-doc strong {
  color: var(--ink);
  font-weight: 700;
}

.legal-doc__bullets {
  margin: 8px 0 0;
  padding-left: 24px;
}

.legal-doc__bullets li {
  margin-top: 6px;
}

.legal-doc h3.legal-doc__exhibit {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-soft);
}

.subscription-section {
  padding-bottom: 104px;
}

.subscription-card {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 0.8fr);
  align-items: center;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  gap: 56px;
}

.subscription-card h2 {
  margin-top: 10px;
  font-size: 28px;
}

.subscription-card__copy p {
  max-width: 42em;
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.subscribe-form {
  position: relative;
}

.subscribe-form > label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.subscribe-form__row {
  display: flex;
  gap: 10px;
}

.subscribe-form__row input {
  width: 100%;
  min-width: 0;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.subscribe-form__row input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 12%, transparent);
}

.subscribe-form__status {
  min-height: 17px;
  margin: 8px 0 0;
  color: var(--text-faint);
  font-size: 12px;
  line-height: 1.4;
}

.subscribe-form__status[data-state="success"] {
  color: var(--sent-pos);
}

.subscribe-form__status[data-state="error"] {
  color: var(--sent-neg);
}

.schedule-section {
  padding-bottom: 104px;
}

.schedule-embed {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.schedule-embed iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
}

.schedule-fallback {
  margin: 14px 0 0;
  color: var(--text-faint);
  font-size: 13px;
}

.schedule-fallback a {
  color: var(--text-soft);
}

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

@media (max-width: 860px) {
  .capabilities__grid { grid-template-columns: 1fr; }
  .hero { grid-template-columns: 1fr; padding: 56px 20px 40px; gap: 40px; }
  .subscription-card { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  .nav { padding: 0 16px; }
  .nav__links,
  .nav__divider { display: none; }
  .nav__right { gap: 8px; }
  .nav__actions { gap: 2px; }
  .nav__actions .btn--ghost { padding-right: 9px; padding-left: 9px; }
  .nav__actions .btn--primary { padding-right: 10px; padding-left: 10px; }
  .brand { gap: 6px; }
  .brand img { height: 24px; }
  .brand > span { font-size: 22px; }
  .m-2col { grid-template-columns: 1fr; }
  .lu-cta-row { flex-wrap: wrap; }
  .product__inner,
  .capabilities,
  .closing__inner { padding-top: 64px; padding-bottom: 64px; }
  .legal-hero { padding-top: 56px; padding-bottom: 40px; }
  .legal-content { padding-bottom: 56px; }
  .legal-doc { padding: 24px 18px; }
  .subscription-section { padding-bottom: 64px; }
  .schedule-section { padding-bottom: 64px; }
  .schedule-embed iframe { height: 640px; }
  .subscription-card { padding: 28px 24px; }
  .subscribe-form__row { align-items: stretch; flex-direction: column; }
  .community { padding-bottom: 64px; }
  .community__card { align-items: flex-start; padding: 26px 24px; flex-direction: column; }
  .community__copy { align-items: flex-start; }
  .conversation-card { padding: 14px 16px; }
  .conversation-card__footer { align-items: flex-start; flex-direction: column; }
  .conversation-card__stats { flex-wrap: wrap; gap: 10px; }
  .inbox-window { padding: 12px; }
  .modal { padding: 16px 12px; }
  .modal__header { padding: 24px 20px 0; }
  .demo-form { padding: 22px 20px 24px; }
  .demo-form__footer { align-items: flex-start; flex-direction: column; }
  .footer__top,
  .footer__legal { align-items: flex-start; flex-direction: column; }
}
