:root {
  --fuchsia: #b22c6e;
  --pink-50: #f1e7ef;
  --yellow: #ffce62;
  --yellow-50: #ffe9b8;
  --violet: #ba80ff;
  --violet-50: #e8d5ff;
  --turquoise: #6be8dd;
  --turquoise-50: #c1f9f4;
  --ink: #2c2430;
  --muted: #746676;
  --line: #e8dde6;
  --surface: #ffffff;
  --background: #fbf8fb;
  --danger: #cf3b4d;
  --success: #0f8f79;
  --shadow: 0 16px 36px rgba(77, 36, 66, 0.1);
  font-family:
    Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
}

button,
select,
input {
  font: inherit;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 272px minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px 18px;
  background: var(--surface);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 8px;
  object-fit: cover;
}

.brand-block strong,
.brand-block > div > span {
  display: block;
}

.brand-block > div > span {
  color: var(--muted);
  font-size: 13px;
}

.nav-list {
  display: grid;
  gap: 6px;
}

.nav-item {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  border-radius: 8px;
  padding: 11px 12px;
  text-align: left;
  font-weight: 700;
}

.nav-item:hover,
.nav-item.active {
  background: var(--pink-50);
  color: var(--fuchsia);
}

.connection-card {
  margin-top: auto;
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--background);
}

.connection-card p {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted);
}

.status-dot {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--yellow);
}

.status-dot.connected {
  background: var(--success);
}

.status-dot.error {
  background: var(--danger);
}

.main {
  min-width: 0;
  padding: 28px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 16px;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--fuchsia);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: 30px;
}

h2 {
  font-size: 19px;
}

h3 {
  font-size: 15px;
}

.topbar-actions {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.account-badge {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 6px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.account-badge span {
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
}

.account-badge strong {
  color: var(--fuchsia);
  font-size: 12px;
}

.icon-button,
.link-button {
  border: 0;
  background: transparent;
  color: var(--fuchsia);
  cursor: pointer;
  font-weight: 800;
}

.icon-button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 20px;
  line-height: 1;
}

.icon-button:hover,
.link-button:hover {
  background: var(--pink-50);
}

.auth-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-panel {
  width: min(440px, 100%);
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.auth-logo {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
}

.auth-brand strong,
.auth-brand span {
  display: block;
}

.auth-brand strong {
  font-size: 20px;
}

.auth-brand span {
  color: var(--muted);
  font-size: 14px;
}

.auth-panel h2 {
  margin-bottom: 16px;
  font-size: 24px;
}

.auth-form {
  display: grid;
  gap: 12px;
}

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

.form-error {
  margin: 0;
  color: var(--danger);
  font-size: 13px;
  font-weight: 700;
}

.form-progress,
.form-hint {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.form-progress {
  color: var(--fuchsia);
  font-weight: 800;
}

.form-hint {
  color: var(--muted);
}

.auth-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.primary-button:disabled,
.link-button:disabled {
  cursor: wait;
  opacity: 0.78;
}

.button-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.auth-panel .link-button {
  margin-top: 12px;
  padding: 8px 0;
}

body.auth-only .app-shell {
  display: block;
  min-height: 100vh;
}

body.auth-only .sidebar,
body.auth-only .topbar,
body.auth-only .notice,
body.auth-only .filter-row {
  display: none;
}

body.auth-only .main {
  min-height: 100vh;
  padding: 0;
}

body.auth-only .view-root {
  min-height: 100vh;
  display: block;
}

.filter-row {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}

.filter-row[hidden] {
  display: none;
}

.filter-row.marketing {
  justify-content: space-between;
}

.filter-row .select-label {
  min-width: 170px;
}

#tunnel-pill-host {
  min-width: 0;
}

.select-label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

select,
.ghost-button,
.primary-button,
.input {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  padding: 0 12px;
}

.ghost-button,
.primary-button {
  cursor: pointer;
  font-weight: 800;
}

.ghost-button.compact {
  min-height: 32px;
  padding: 0 10px;
  font-size: 12px;
}

.primary-button {
  border-color: var(--fuchsia);
  background: var(--fuchsia);
  color: white;
}

.notice {
  padding: 12px 14px;
  background: var(--yellow-50);
  border: 1px solid #f0ca76;
  border-radius: 8px;
  color: #4f3b12;
  line-height: 1.45;
  margin-bottom: 18px;
}

.view-root {
  display: grid;
  gap: 18px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 12px;
}

.kpi-card,
.panel,
.connector-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.kpi-card {
  padding: 16px;
}

.kpi-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.kpi-card strong {
  display: block;
  margin-top: 8px;
  color: var(--fuchsia);
  font-size: 28px;
}

.kpi-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.panel {
  padding: 18px;
  min-width: 0;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.panel-header p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.4;
}

.funnels-panel {
  overflow-x: auto;
}

.funnel-map {
  min-width: 980px;
  display: grid;
  gap: 12px;
  padding: 8px 6px 2px;
}

.flow-row,
.flow-children,
.flow-split {
  display: grid;
  gap: 12px;
}

.flow-row.center {
  justify-items: center;
}

.flow-split.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.flow-branch {
  display: grid;
  gap: 12px;
  justify-items: center;
  position: relative;
}

.flow-children {
  width: 100%;
}

.flow-children.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flow-children.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-children.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flow-children.compact {
  width: min(720px, 100%);
  margin: 0 auto;
}

.flow-node {
  width: 100%;
  min-height: 42px;
  display: grid;
  place-items: center;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.flow-node span {
  display: block;
  color: rgba(44, 36, 48, 0.78);
  font-size: 10px;
  font-weight: 600;
}

.flow-node.primary {
  width: min(310px, 100%);
  border-color: #8f1f57;
  background: var(--fuchsia);
  color: #ffffff;
}

.flow-node.primary.wide,
.flow-node.violet.wide,
.flow-node.dark.wide {
  width: min(420px, 100%);
}

.flow-node.teal {
  width: min(250px, 100%);
  border-color: #25b8ad;
  background: var(--turquoise);
}

.flow-node.teal-light {
  border-color: #70dcd5;
  background: var(--turquoise-50);
}

.flow-node.yellow {
  width: min(250px, 100%);
  border-color: #e9ad20;
  background: var(--yellow);
}

.flow-node.yellow-light {
  border-color: #f2c45c;
  background: var(--yellow-50);
}

.flow-node.violet {
  border-color: #985ee2;
  background: var(--violet);
}

.flow-node.violet-light {
  border-color: #c49cff;
  background: var(--violet-50);
}

.flow-node.pink-light {
  border-color: #d2689d;
  background: #fff4f9;
  color: var(--fuchsia);
}

.flow-node.dark {
  border-color: #47333f;
  background: #4a3342;
  color: #ffffff;
}

.flow-node.neutral {
  background: #f7f3f6;
}

.flow-arrow {
  width: 2px;
  height: 22px;
  margin: -2px auto;
  background: var(--fuchsia);
  position: relative;
}

.flow-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: var(--fuchsia);
  transform: translateX(-50%) rotate(45deg);
}

.flow-arrow.violet,
.flow-arrow.violet::after {
  color: var(--violet);
  background: var(--violet);
}

.flow-note {
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #e9ad20;
  border-radius: 8px;
  background: #fff7dc;
  color: #72500d;
  font-size: 12px;
  font-weight: 800;
}

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

.info-panel {
  display: grid;
  align-content: start;
  gap: 10px;
}

.info-kicker {
  width: max-content;
  padding: 4px 9px;
  border-radius: 8px;
  background: var(--pink-50);
  color: var(--fuchsia);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.info-panel h2,
.info-panel h3,
.info-panel p,
.info-panel ul,
.info-panel ol {
  margin-bottom: 0;
}

.info-panel p,
.info-panel li {
  color: var(--muted);
  line-height: 1.5;
}

.info-panel ul,
.info-panel ol {
  padding-left: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  gap: 18px;
}

.chart {
  width: 100%;
  min-height: 280px;
  overflow: visible;
}

.chart text {
  fill: var(--muted);
  font-size: 11px;
}

.legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.legend span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  border-radius: 2px;
  background: var(--fuchsia);
}

.legend span:nth-child(2)::before {
  background: var(--violet);
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.month-summary-table {
  min-width: 900px;
}

.month-summary-row td {
  font-size: 17px;
}

.month-summary-row td:first-child {
  font-weight: 700;
}

.month-detail-row > td {
  padding: 0;
  background: #fffafd;
}

.month-detail-row .table-wrap {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.email-detail-controls {
  display: flex;
  justify-content: flex-end;
  padding: 12px;
  background: #fffafd;
}

.detail-loading {
  padding: 18px;
  color: var(--muted);
  font-weight: 700;
  background: #fffafd;
}

.segmented-control {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.segmented-control button {
  min-height: 32px;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 0 11px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.segmented-control button:last-child {
  border-right: 0;
}

.segmented-control button.active {
  background: var(--fuchsia);
  color: white;
}

.segmented-control.compact button {
  min-width: 92px;
}

.marketing-task-form {
  display: grid;
  gap: 14px;
}

.marketing-task-grid {
  grid-template-columns: minmax(260px, 1.3fr) repeat(2, minmax(180px, 0.8fr));
}

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.kanban-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.kanban-column {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--background);
}

.kanban-column header,
.calendar-day header,
.task-card-top,
.task-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.kanban-column header h3 {
  margin: 0;
}

.kanban-column header span,
.calendar-day header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.kanban-card-list,
.calendar-task-list,
.marketing-calendar {
  display: grid;
  gap: 10px;
}

.marketing-task-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.marketing-task-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.task-status {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.task-status.todo {
  background: var(--yellow-50);
}

.task-status.in_progress {
  background: var(--violet-50);
}

.task-status.done {
  background: var(--turquoise-50);
}

.task-meta,
.task-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.task-meta span,
.task-tags span {
  padding: 4px 7px;
  border-radius: 8px;
  background: #fffafd;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.task-tags span {
  background: var(--pink-50);
  color: var(--fuchsia);
}

.task-card-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.task-card-actions select {
  min-height: 32px;
  max-width: 138px;
}

.danger-link {
  color: var(--danger);
}

.calendar-day {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--background);
}

.empty-state.compact {
  padding: 14px;
}

.sales-entry-form {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.sales-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 12px;
  padding-top: 2px;
}

.sales-entry-form .primary-button {
  justify-self: start;
  min-width: 210px;
}

.textarea {
  min-height: 86px;
  padding-top: 10px;
  resize: vertical;
}

.calculated-input {
  background: #fffafd;
  color: var(--fuchsia);
  font-weight: 800;
}

.sales-entry-tables {
  display: grid;
  gap: 18px;
}

.sales-entry-table-group {
  display: grid;
  gap: 8px;
}

.sales-entry-table-group h3 {
  margin: 0;
}

.sales-entry-table-group table {
  min-width: 1280px;
}

.month-detail-row table {
  min-width: 940px;
}

.icon-button {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--fuchsia);
  cursor: pointer;
  font-weight: 900;
}

.icon-button:hover {
  background: var(--pink-50);
}

.month-toggle span {
  display: block;
  line-height: 1;
  transition: transform 0.16s ease;
}

.month-toggle.open span {
  transform: rotate(180deg);
}

.sort-header {
  width: 100%;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: inherit;
  gap: 5px;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: inherit;
}

.sort-header span {
  color: var(--muted);
  font-size: 11px;
}

.sort-header.active span {
  color: var(--fuchsia);
}

th.num .sort-header {
  justify-content: flex-end;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--fuchsia);
  background: var(--pink-50);
  font-size: 12px;
  white-space: nowrap;
}

td.num,
th.num {
  text-align: right;
}

tbody tr:hover {
  background: #fffafd;
}

.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 999px;
  padding: 7px 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.pill.active {
  background: var(--fuchsia);
  border-color: var(--fuchsia);
  color: white;
}

.connector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 14px;
}

.mcp-panel {
  display: grid;
  gap: 14px;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--fuchsia);
  background: var(--surface);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.ghost-link:hover {
  background: var(--pink-50);
}

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

.mcp-copy-block {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--background);
}

.mcp-copy-block span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.mcp-copy-block code,
.mcp-code-block pre {
  overflow: auto;
  border-radius: 8px;
  background: #fffafd;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.45;
}

.mcp-copy-block code {
  min-height: 42px;
  padding: 9px;
  word-break: break-word;
}

.mcp-note {
  padding: 10px 12px;
  border: 1px solid #f0ca76;
  border-radius: 8px;
  background: var(--yellow-50);
  color: #4f3b12;
  font-size: 13px;
  line-height: 1.4;
}

.mcp-tools {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mcp-tools span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--turquoise-50);
  color: #06695c;
  font-size: 12px;
  font-weight: 800;
}

.mcp-code-block {
  display: grid;
  gap: 8px;
}

.mcp-code-block > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mcp-code-block pre {
  margin: 0;
  padding: 12px;
  white-space: pre-wrap;
}

.connector-card {
  padding: 16px;
}

.connector-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--violet-50);
  color: #60349d;
  font-size: 12px;
  font-weight: 800;
}

.badge.ready {
  background: var(--turquoise-50);
  color: #06695c;
}

.badge.missing {
  background: var(--yellow-50);
  color: #7a5600;
}

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

.form-grid button {
  align-self: end;
}

.table-wrap select {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  padding: 0 10px;
}

.input {
  width: 100%;
}

.empty-state {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--surface);
}

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

  .sidebar {
    position: static;
    height: auto;
  }

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

  .connection-card {
    margin-top: 0;
  }

  .topbar,
  .grid-2 {
    display: grid;
    grid-template-columns: 1fr;
  }

  .filter-row {
    display: grid;
    justify-content: stretch;
  }

  .filter-row.marketing {
    justify-content: stretch;
  }

  .filter-row .select-label {
    width: 100%;
  }

  .kpi-grid,
  .connector-grid,
  .mcp-grid,
  .form-grid,
  .funnel-info-grid,
  .kanban-board,
  .sales-metric-grid {
    grid-template-columns: 1fr;
  }

  .funnel-map {
    min-width: 0;
  }

  .flow-split.two,
  .flow-children.two,
  .flow-children.three,
  .flow-children.four {
    grid-template-columns: 1fr;
  }

  .flow-node.primary,
  .flow-node.primary.wide,
  .flow-node.violet.wide,
  .flow-node.dark.wide,
  .flow-node.teal,
  .flow-node.yellow {
    width: 100%;
  }

  .auth-name-grid {
    grid-template-columns: 1fr;
  }
}
