:root {
  color-scheme: light;
  --page: var(--tr-canvas, #f1f5f9);
  --surface: var(--tr-surface, #ffffff);
  --surface-2: var(--tr-surface-subtle, #f7f9fc);
  --ink: var(--tr-text, #102036);
  --muted: var(--tr-text-secondary, #3b4f67);
  --soft: var(--tr-text-muted, #64778d);
  --line: var(--tr-border, #dfe7ef);
  --line-strong: var(--tr-border-strong, #c6d2df);
  --blue: var(--tr-accent, #1769e9);
  --blue-strong: var(--tr-accent-hover, #0f56c2);
  --green: #11815f;
  --green-soft: #e7f6ef;
  --amber: #b66a00;
  --amber-soft: #fff4df;
  --red: #b63131;
  --shadow: 0 18px 45px rgba(37, 54, 77, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body[data-theme="dark"] .auth-page,
body[data-theme="dark"] .auth-side,
body[data-theme="dark"] .auth-card,
body[data-theme="dark"] .auth-preview,
body[data-theme="dark"] .process-row,
body[data-theme="dark"] .signup-summary,
body[data-theme="dark"] .input {
  background: var(--tr-surface);
  color: var(--tr-text);
  border-color: var(--tr-border);
}

body[data-theme="dark"] .auth-main {
  background: var(--tr-canvas);
}

body[data-theme="dark"] .auth-side h1,
body[data-theme="dark"] .auth-card__header h2,
body[data-theme="dark"] .auth-card__inline-header h3,
body[data-theme="dark"] .signup-summary__row strong,
body[data-theme="dark"] .form-row label,
body[data-theme="dark"] .check-row {
  color: var(--tr-text);
}

body[data-theme="dark"] .brand,
body[data-theme="dark"] .field-mock strong {
  color: var(--tr-text);
}

body[data-theme="dark"] .field-mock {
  background: var(--tr-surface-subtle);
  border-color: var(--tr-border);
}

body[data-theme="dark"] .field-mock span {
  color: var(--tr-text-muted);
}

body[data-theme="dark"] .auth-side p,
body[data-theme="dark"] .auth-card__header p,
body[data-theme="dark"] .auth-card__inline-header p,
body[data-theme="dark"] .step-status {
  color: var(--tr-text-secondary);
}

body[data-theme="dark"] .notice.is-muted {
  background: var(--tr-surface-subtle);
  color: var(--tr-text-secondary);
  border-color: var(--tr-border);
}

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(205, 217, 230, 0.86);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  width: min(1180px, calc(100vw - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: #0b3550;
}

.brand__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #0b3550;
  color: #ffffff;
  font-size: 15px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.header-actions,
.auth-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: #12314c;
  font-weight: 750;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease, transform 120ms ease;
}

.btn:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
  }

  .btn:hover {
    transform: none;
  }
}

.btn--primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.btn--primary:hover {
  background: var(--blue-strong);
  color: #ffffff;
}

.btn--ghost {
  background: transparent;
}

.btn--wide {
  width: 100%;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 96px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #dfeaf2;
}

.product-scene {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 247, 251, 0.98) 0%, rgba(244, 247, 251, 0.88) 36%, rgba(244, 247, 251, 0.18) 70%),
    linear-gradient(180deg, rgba(232, 240, 247, 0.76), rgba(255, 255, 255, 0.62));
}

.scene-window {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  top: 54px;
  width: min(680px, 50vw);
  height: min(570px, 68vh);
  min-height: 430px;
  border: 1px solid #b8c8d8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.scene-toolbar {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #f9fbfd;
}

.scene-tabs,
.scene-statuses,
.scene-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.scene-tab,
.scene-chip,
.scene-action {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  padding: 7px 10px;
  white-space: nowrap;
}

.scene-tab.is-active {
  color: var(--blue);
  border-color: rgba(0, 119, 168, 0.38);
  background: #eaf6fb;
}

.scene-chip.is-green {
  color: var(--green);
  background: var(--green-soft);
  border-color: #bfe5d5;
}

.scene-chip.is-amber {
  color: var(--amber);
  background: var(--amber-soft);
  border-color: #f1d6a7;
}

.scene-body {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 250px;
  height: calc(100% - 58px);
}

.orders-grid {
  padding: 16px;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.orders-grid__head,
.orders-grid__row {
  display: grid;
  grid-template-columns: 80px 96px 1fr 90px;
  gap: 10px;
  align-items: center;
}

.orders-grid__head {
  height: 34px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.orders-grid__row {
  min-height: 52px;
  border-top: 1px solid #e2ebf4;
  font-size: 13px;
  color: #25364d;
}

.orders-grid__row.is-selected {
  margin: 0 -8px;
  padding: 0 8px;
  border: 1px solid #98d8c0;
  border-radius: 8px;
  background: #edf9f4;
}

.mono {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: #0a76a1;
}

.route {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.side-panel {
  padding: 16px;
  background: #fbfdff;
}

.panel-title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 850;
}

.doc-item,
.invoice-step,
.metric-card,
.role-card,
.feature-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.doc-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  margin-bottom: 10px;
}

.doc-type {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e8f1fb;
  color: #174f87;
  font-size: 11px;
  font-weight: 900;
}

.doc-name {
  font-size: 12px;
  font-weight: 800;
  color: #12314c;
}

.doc-meta {
  margin-top: 3px;
  font-size: 11px;
  color: var(--soft);
}

.invoice-step {
  padding: 10px;
  margin-top: 10px;
}

.invoice-step strong {
  display: block;
  font-size: 12px;
}

.invoice-step span {
  display: block;
  margin-top: 4px;
  color: var(--soft);
  font-size: 11px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(72px, 10vh, 118px) 0 56px;
  max-width: 560px;
  margin-left: max(16px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
  color: #0d2338;
}

.hero-lead {
  max-width: 500px;
  margin: 22px 0 0;
  color: #33465d;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.48;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #26394f;
  font-size: 14px;
  font-weight: 750;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(174, 190, 208, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.product-gallery {
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
  background: #0b3550;
  color: #ffffff;
}

.product-gallery__inner {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.product-gallery__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.62fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}

.product-gallery__heading h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.product-gallery__heading p {
  margin: 0;
  color: #cfe2ed;
  font-size: 17px;
  line-height: 1.58;
}

.product-gallery__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(340px, 0.64fr);
  gap: 18px;
  align-items: stretch;
}

.product-gallery__stack {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.product-shot {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(189, 211, 226, 0.34);
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
  overflow: hidden;
}

.product-shot figcaption {
  min-height: 72px;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: #f8fbfe;
}

.product-shot figcaption span {
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 850;
}

.product-shot figcaption strong {
  min-width: 0;
  color: #13263d;
  font-size: 17px;
  line-height: 1.2;
}

.shot-window {
  min-height: 430px;
  background: #ffffff;
}

.shot-topbar {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: #fbfdff;
}

.shot-topbar span {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  padding: 0 11px;
  font-size: 12px;
  font-weight: 850;
}

.shot-topbar span:first-child {
  color: var(--blue-strong);
  border-color: rgba(0, 119, 168, 0.34);
  background: #eaf6fb;
}

.shot-topbar__action {
  margin-left: auto;
  color: #ffffff;
  border-color: var(--blue);
  background: var(--blue);
}

.shot-orders {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 258px;
  min-height: 376px;
}

.shot-orders__table {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.shot-row {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr) 84px 78px;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  border-top: 1px solid #e2ebf4;
  color: #25364d;
  font-size: 12px;
}

.shot-row--head {
  min-height: 30px;
  border-top: 0;
  color: var(--soft);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.shot-row strong,
.shot-row span,
.shot-row em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shot-row strong {
  color: var(--blue-strong);
}

.shot-row em {
  justify-self: start;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green);
  padding: 4px 7px;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
}

.shot-row.is-active {
  margin: 0 -8px;
  padding: 0 8px;
  border: 1px solid #98d8c0;
  border-radius: 8px;
  background: #edf9f4;
}

.shot-detail {
  padding: 16px;
  background: #fbfdff;
}

.shot-detail h3 {
  margin: 0 0 14px;
  color: #13263d;
  font-size: 15px;
}

.shot-detail dl {
  margin: 0;
  display: grid;
  gap: 10px;
}

.shot-detail dl div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 10px;
}

.shot-detail dt {
  color: var(--soft);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.shot-detail dd {
  min-width: 0;
  margin: 5px 0 0;
  overflow-wrap: anywhere;
  color: #142238;
  font-size: 12px;
  font-weight: 800;
}

.shot-doc {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 10px;
}

.shot-doc span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e8f1fb;
  color: #174f87;
  font-size: 11px;
  font-weight: 900;
}

.shot-doc strong,
.shot-doc small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shot-doc strong {
  color: #12314c;
  font-size: 12px;
}

.shot-doc small {
  color: var(--soft);
  font-size: 11px;
}

.mini-process,
.onboarding-shot {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.mini-process__row {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  border: 1px solid #e2ebf4;
  border-radius: 8px;
  padding: 9px 10px;
  background: #fbfdff;
}

.mini-process__row span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.mini-process__row.is-waiting span {
  background: var(--amber);
}

.mini-process__row strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #13263d;
  font-size: 13px;
}

.mini-process__row em {
  min-width: 0;
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 8px;
  padding: 4px 7px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
}

.mini-process__row.is-waiting em {
  background: var(--amber-soft);
  color: var(--amber);
}

.onboarding-shot div {
  min-width: 0;
  border: 1px solid #e2ebf4;
  border-radius: 8px;
  padding: 11px 12px;
  background: #fbfdff;
}

.onboarding-shot small {
  display: block;
  color: var(--soft);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.onboarding-shot strong {
  display: block;
  min-width: 0;
  margin-top: 6px;
  overflow-wrap: anywhere;
  color: #13263d;
  font-size: 13px;
}

.onboarding-shot__google {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.onboarding-shot__google span {
  min-width: 0;
  color: #13263d;
  font-size: 13px;
  font-weight: 850;
}

.onboarding-shot__action {
  flex: 0 0 auto;
  min-height: 34px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: var(--blue);
  color: #ffffff;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 850;
}

.section {
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
  background: var(--page);
}

.section.is-white {
  background: #ffffff;
}

.section__inner {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.feature-card {
  padding: 22px;
  min-height: 206px;
}

.feature-card h3,
.role-card h3,
.metric-card h3 {
  margin: 0;
  font-size: 18px;
}

.feature-card p,
.role-card p,
.metric-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.workflow {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.workflow-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(37, 54, 77, 0.08);
  overflow: hidden;
}

.workflow-panel__header {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.workflow-panel__body {
  padding: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field-mock {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fbfdff;
}

.field-mock span {
  display: block;
  color: var(--soft);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.field-mock strong {
  display: block;
  margin-top: 6px;
  font-size: 14px;
}

.process-list {
  display: grid;
  gap: 10px;
}

.signup-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.signup-summary__row {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.signup-summary__row span {
  color: var(--soft);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.signup-summary__row strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #16283e;
  font-size: 14px;
}

.process-row {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.dot.is-amber {
  background: var(--amber);
}

.status {
  padding: 5px 9px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.status.is-amber {
  background: var(--amber-soft);
  color: var(--amber);
}

.metrics-grid,
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.metric-card,
.role-card {
  padding: 22px;
}

.metric-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: var(--blue-strong);
}

.role-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.role-card li {
  padding-left: 16px;
  position: relative;
}

.role-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.management-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 34px;
  align-items: start;
}

.management-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(37, 54, 77, 0.08);
  overflow: hidden;
}

.management-panel__header {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: #f9fbfd;
}

.launch-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.launch-step {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.launch-step:last-child {
  border-right: 0;
}

.launch-step span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf6fb;
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 900;
}

.launch-step strong {
  display: block;
  margin-top: 12px;
  color: #13263d;
  font-size: 15px;
}

.launch-step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.access-matrix {
  padding: 14px;
  display: grid;
  gap: 8px;
}

.access-matrix__row {
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(112px, 0.8fr));
  gap: 8px;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  border: 1px solid #e1ebf4;
  border-radius: 8px;
  background: #fbfdff;
  color: #24374e;
  font-size: 13px;
}

.access-matrix__head {
  min-height: 34px;
  border-color: transparent;
  background: transparent;
  color: var(--soft);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.access-matrix__row strong,
.access-matrix__row em {
  min-width: 0;
  font-style: normal;
  overflow-wrap: anywhere;
}

.access-matrix__row strong {
  color: var(--green);
  font-weight: 850;
}

.access-matrix__row em {
  color: var(--muted);
}

.pricing-section {
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.pricing-section__inner {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.24fr);
  gap: 34px;
  align-items: start;
}

.pricing-copy h2 {
  margin: 0;
  color: #0d2338;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.pricing-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.pricing-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  border: 1px solid #b7c8d8;
  border-radius: 12px;
  background: #f8fbfe;
  overflow: hidden;
}

.pricing-panel__main {
  min-width: 0;
  padding: 24px;
  background: #0b3550;
  color: #ffffff;
}

.pricing-panel__label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(207, 226, 237, 0.34);
  border-radius: 8px;
  padding: 0 10px;
  color: #cfe2ed;
  font-size: 12px;
  font-weight: 850;
}

.pricing-panel__main strong {
  display: block;
  margin-top: 20px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.04;
}

.pricing-panel__main p {
  margin: 14px 0 24px;
  color: #cfe2ed;
  line-height: 1.58;
}

.pricing-panel__details {
  min-width: 0;
  padding: 24px;
}

.pricing-panel__details h3 {
  margin: 0;
  color: #13263d;
  font-size: 20px;
}

.pricing-panel__details ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.pricing-panel__details li {
  position: relative;
  min-width: 0;
  padding-left: 22px;
  color: #33465d;
  line-height: 1.45;
}

.pricing-panel__details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.pricing-note {
  margin-top: 22px;
  border: 1px solid #bfe5d5;
  border-radius: 8px;
  padding: 14px;
  background: var(--green-soft);
}

.pricing-note strong,
.pricing-note span {
  display: block;
}

.pricing-note strong {
  color: #115b46;
  font-size: 14px;
}

.pricing-note span {
  margin-top: 5px;
  color: #286851;
  font-size: 14px;
  line-height: 1.45;
}

.cta-band {
  padding: 70px 0;
  background: #0b3550;
  color: #ffffff;
}

.cta-band__inner {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.cta-band p {
  margin: 14px 0 0;
  color: #cfe2ed;
  font-size: 17px;
}

.site-footer {
  padding: 30px 0;
  background: #071d2d;
  color: #c8d7e3;
}

.site-footer__inner {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  gap: 16px;
}

.legal-page-shell {
  min-height: 100vh;
  background: var(--page);
}

.legal-main {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 54px 0 76px;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(22px, 4vw, 42px);
}

.legal-kicker {
  margin: 0 0 10px;
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 850;
}

.legal-card h1 {
  margin: 0;
  max-width: min(760px, 100%);
  color: #0d2338;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.legal-updated {
  margin: 12px 0 0;
  color: var(--soft);
  font-size: 14px;
  font-weight: 750;
}

.legal-lead {
  max-width: 820px;
  margin: 22px 0 0;
  color: #33465d;
  font-size: 19px;
  line-height: 1.55;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  margin-top: 34px;
  align-items: start;
}

.legal-index {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfe;
}

.legal-index a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  color: #33465d;
  font-size: 13px;
  font-weight: 800;
}

.legal-index a:hover,
.legal-nav a[aria-current="page"] {
  color: var(--blue-strong);
  background: #eaf6fb;
}

.legal-content {
  display: grid;
  gap: 28px;
}

.legal-content section {
  padding-bottom: 28px;
  border-bottom: 1px solid #e2ebf4;
}

.legal-content section:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 10px;
  color: #13263d;
  font-size: 20px;
  line-height: 1.18;
}

.legal-content p,
.legal-list {
  margin: 0;
  max-width: 78ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.legal-content p + p {
  margin-top: 12px;
}

.legal-content a {
  color: var(--blue-strong);
  font-weight: 800;
}

.legal-list {
  padding-left: 20px;
}

.legal-list li + li {
  margin-top: 8px;
}

.legal-note {
  max-width: 82ch;
  border: 1px solid #bfe5d5;
  border-radius: 8px;
  padding: 15px 16px;
  background: var(--green-soft);
  color: #115b46;
  font-size: 15px;
  line-height: 1.55;
}

.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr);
  background: #f4f7fb;
}

.auth-side {
  padding: 32px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  border-right: 1px solid var(--line);
  background: #ffffff;
}

.auth-side h1 {
  margin: 58px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.auth-side p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.auth-preview {
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f8fbfe;
}

.auth-main {
  min-width: 0;
  display: grid;
  place-items: center;
  padding: 32px;
}

.auth-card {
  width: min(620px, 100%);
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 3px 8px rgba(37, 54, 77, 0.08);
}

.auth-card__header {
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--line);
}

.auth-card__header h2 {
  margin: 0;
  font-size: 26px;
}

.auth-card__header p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.auth-card__inline-header {
  display: grid;
  gap: 6px;
}

.auth-card__inline-header h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}

.auth-card__inline-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.auth-form {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.auth-form--session-check {
  min-height: 260px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: #33465d;
  font-size: 13px;
  font-weight: 800;
}

.input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
}

.password-control {
  position: relative;
}

.password-control .input {
  padding-right: 92px;
}

.password-control__toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  min-height: 34px;
  padding: 0 8px;
  border: 0;
  border-radius: 6px;
  transform: translateY(-50%);
  background: transparent;
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.password-control__toggle:focus-visible {
  outline: 3px solid var(--tr-focus-ring, rgba(23, 105, 233, 0.24));
}

.input:focus,
.textarea:focus {
  outline: 3px solid rgba(0, 119, 168, 0.16);
  border-color: var(--blue);
}

.textarea {
  min-height: 88px;
  padding: 12px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 18px 24px 0;
}

.step {
  min-height: 6px;
  border-radius: 8px;
  background: #dce6ef;
}

.step.is-active {
  background: var(--blue);
}

.step-status {
  margin: 8px 24px 0;
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.signup-step {
  display: none;
}

.signup-step.is-active {
  display: grid;
  gap: 16px;
}

.notice {
  border: 1px solid #bfe5d5;
  border-radius: 8px;
  padding: 12px;
  background: var(--green-soft);
  color: #115b46;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  user-select: text;
  -webkit-user-select: text;
}

.notice.is-error {
  border-color: #efc1c1;
  background: #fff0f0;
  color: var(--red);
}

.notice.is-muted {
  border-color: var(--line);
  background: #f8fbfe;
  color: var(--muted);
}

.form-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.form-footer--single {
  justify-content: flex-start;
}

.form-footer--auth-actions {
  justify-content: space-between;
}

.form-footer--auth-actions .text-link {
  white-space: nowrap;
}

.text-link {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  color: var(--blue-strong);
  font-weight: 800;
}

.text-link--button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.text-link--button:hover {
  text-decoration: underline;
}

.check-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #33465d;
  font-size: 14px;
  line-height: 1.45;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.check-row a {
  color: var(--blue-strong);
  font-weight: 800;
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-bottom: 40px;
  }

  .product-scene {
    order: 2;
    position: relative;
    min-height: 420px;
    margin-top: 12px;
  }

  .scene-window {
    top: 26px;
    right: 16px;
    left: 16px;
    width: auto;
    min-height: 360px;
    height: 380px;
  }

  .hero-copy {
    order: 1;
    margin-left: auto;
    padding-top: 56px;
  }

  .scene-body,
  .workflow,
  .auth-page,
  .management-layout,
  .legal-layout,
  .pricing-section__inner,
  .product-gallery__heading,
  .product-gallery__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .legal-index {
    position: static;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .launch-steps {
    grid-template-columns: 1fr;
  }

  .launch-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .launch-step:last-child {
    border-bottom: 0;
  }

  .feature-grid,
  .metrics-grid,
  .roles-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    padding: 56px 0;
  }

  .shot-window {
    min-height: auto;
  }

  .auth-side {
    order: 2;
    border-right: 0;
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }

  .auth-main {
    order: 1;
    min-height: 100vh;
  }

  .auth-side h1 {
    margin-top: 12px;
  }

  .auth-preview {
    display: none;
  }
}

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

  .auth-page {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .legal-main {
    width: calc(100vw - 24px);
    padding: 24px 0 42px;
  }

  .legal-card {
    padding: 20px;
  }

  .legal-card h1 {
    font-size: 30px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .legal-lead,
  .legal-content p,
  .legal-list {
    font-size: 15px;
  }

  .site-header__inner,
  .cta-band__inner,
  .site-footer__inner,
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer--auth-actions {
    gap: 10px;
  }

  .form-footer .text-link,
  .form-footer .text-link--button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .header-actions,
  .hero-actions {
    width: 100%;
    justify-content: stretch;
  }

  .header-actions .btn,
  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .scene-window {
    left: 12px;
    right: 12px;
    height: 340px;
  }

  .hero-copy {
    width: calc(100vw - 32px);
    max-width: none;
    margin-left: 16px;
    margin-right: 16px;
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 54px);
  }

  .hero-lead {
    max-width: min(340px, 100%);
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .hero-proof {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof li {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .product-gallery__inner {
    width: calc(100vw - 24px);
  }

  .product-gallery__heading {
    gap: 14px;
    margin-bottom: 18px;
  }

  .product-gallery__heading h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .product-gallery__heading p {
    font-size: 15px;
  }

  .product-gallery__layout,
  .product-gallery__stack {
    gap: 12px;
  }

  .product-shot figcaption {
    min-height: 0;
    padding: 14px;
  }

  .product-shot figcaption strong {
    font-size: 15px;
  }

  .shot-topbar {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .shot-topbar__action {
    width: 100%;
    margin-left: 0;
  }

  .shot-orders {
    grid-template-columns: 1fr;
  }

  .shot-orders__table {
    border-right: 0;
    padding: 12px;
  }

  .shot-row {
    grid-template-columns: 122px minmax(0, 1fr);
    min-height: 50px;
  }

  .shot-row span:nth-child(3),
  .shot-row em,
  .shot-detail {
    display: none;
  }

  .mini-process__row {
    grid-template-columns: 12px minmax(0, 1fr);
  }

  .mini-process__row em {
    justify-self: start;
    max-width: 100%;
    grid-column: 2;
  }

  .scene-toolbar {
    align-items: flex-start;
    height: auto;
    flex-direction: column;
    padding: 12px;
  }

  .orders-grid__head,
  .orders-grid__row {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .orders-grid__head span:nth-child(2),
  .orders-grid__row span:nth-child(2),
  .orders-grid__head span:nth-child(4),
  .orders-grid__row span:nth-child(4),
  .side-panel {
    display: none;
  }

  .section-heading h2 {
    max-width: min(330px, 100%);
    font-size: clamp(27px, 7.4vw, 30px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .section-heading p {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .field-grid,
  .form-grid,
  .signup-summary {
    grid-template-columns: 1fr;
  }

  .auth-side,
  .auth-main {
    width: 100%;
    max-width: 100vw;
    padding: 20px;
  }

  .auth-side > div,
  .auth-preview,
  .auth-card,
  .auth-card__header p {
    max-width: calc(100vw - 40px);
  }

  .auth-side p {
    max-width: min(310px, calc(100vw - 40px));
  }

  .auth-side h1 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .auth-card {
    width: 100%;
  }

  .management-panel__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .access-matrix {
    overflow-x: auto;
  }

  .access-matrix__row {
    width: max-content;
    min-width: 680px;
  }

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