:root {
  --ink: #10233f;
  --muted: #66758a;
  --line: #dfe7ef;
  --paper: #fff;
  --wash: #f4f8fb;
  --blue: #2867d8;
  --navy: #102b4e;
  --mint: #79d9c0;
  --coral: #ff8a78;
  --shadow: 0 18px 50px rgba(16, 43, 78, 0.1);
}
.workflow-board {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1.15fr;
  align-items: stretch;
  margin-bottom: 22px;
}
.workflow-column {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 9px 35px rgba(16, 43, 78, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.workflow-column h2 {
  margin: 0;
  font-size: 22px;
}
.zoom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.icon-button {
  width: 42px;
  height: 42px;
  min-width: 42px;
  max-width: 42px;
  min-height: 42px;
  max-height: 42px;
  flex: 0 0 42px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  box-sizing: border-box;
  line-height: 1;
}
.button.icon-button {
  padding: 0;
  display: inline-grid;
}
.icon-button[data-tooltip] {
  position: relative;
}
.icon-button[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  z-index: 30;
  padding: 6px 9px;
  border-radius: 7px;
  background: #0d2039;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}
.icon-button[data-tooltip]:hover::after,
.icon-button[data-tooltip]:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}
.icon-button svg,
.oauth-action-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.oauth-action-icon {
  display: none;
}
#connect-zoom.icon-button .oauth-action-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
#connect-zoom.icon-button .oauth-action-icon {
  display: block;
}
#connect-zoom.icon-button,
.destination-reconnect,
.destination-actions .destination-disconnect.icon-button {
  border-radius: 50%;
}
.button.zoom-disconnect {
  border: 1px solid #e2b9b3;
  background: #fff;
  color: #a33b31;
}
.workflow-number {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #edf4ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 850;
}
.workflow-arrow {
  display: grid;
  place-items: center;
  color: #91a4ba;
  font-size: 25px;
}
.progress-track {
  width: 100%;
  height: 9px;
  background: #edf1f5;
  border-radius: 99px;
  overflow: hidden;
}
.progress-track i {
  display: block;
  width: 8%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--mint));
  transition: width 0.3s;
}
.destination-list {
  display: grid;
  gap: 9px;
  width: 100%;
}
.destination-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: stretch;
}
.destination-actions {
  display: flex;
  gap: 7px;
  align-items: center;
}
.destination-actions[hidden] {
  display: none;
}
.destination-reconnect,
.destination-actions .destination-disconnect {
  border: 1px solid #b8c9dd;
  background: #fff;
  color: var(--blue);
  border-radius: 12px;
  cursor: pointer;
}
.destination-actions .destination-disconnect {
  border-color: #e2b9b3;
  color: #a33b31;
}
.destination-connect {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 11px;
  color: var(--ink);
  cursor: pointer;
}
.destination-connect.connected {
  border-color: #49be91;
  background: #ecfbf4;
  cursor: default;
}
.destination-connect.connected em {
  background: #c8f5df;
  color: #05643e;
  font-size: 12px;
  font-weight: 850;
}
.destination-connect.connection-error {
  border-color: #e5bd79;
  background: #fffaf0;
}
.destination-connect.connection-error em {
  background: #fff0cf;
  color: #8a5a00;
}
.destination-connect.connection-warning {
  border-color: #e2b24c;
  background: #fffaf0;
}
.destination-connect.connection-warning em {
  background: #fff0c7;
  color: #7a5100;
}
@keyframes connect-attention {
  0%,
  100% {
    background: var(--blue);
    box-shadow: 0 0 0 0 rgba(40, 103, 216, 0);
    transform: scale(1);
  }
  20%,
  60% {
    background: #174caa;
    box-shadow: 0 0 0 9px rgba(40, 103, 216, 0.2);
    transform: scale(1.04);
  }
  40%,
  80% {
    background: var(--blue);
    box-shadow: 0 0 0 2px rgba(40, 103, 216, 0.08);
    transform: scale(1);
  }
}
#connect-zoom.attention-pulse,
#billing.attention-pulse {
  color: #fff;
  animation: connect-attention 1.4s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  #connect-zoom.attention-pulse,
  #billing.attention-pulse {
    animation: none;
    outline: 4px solid rgba(40, 103, 216, 0.25);
  }
}
.button.plan-locked {
  opacity: 0.58;
  cursor: pointer;
}
.destination-entry > .destination-disconnect {
  border: 1px solid #e2b9b3;
  background: #fff;
  color: #a33b31;
  border-radius: 12px;
  padding: 0 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}
.destination-connect b {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #eef4ff;
  display: grid;
  place-items: center;
  color: var(--blue);
}
.destination-connect span strong,
.destination-connect span small {
  display: block;
}
.destination-connect span small {
  color: var(--muted);
}
.destination-connect em {
  font-style: normal;
  font-size: 11px;
  background: #eaf1ff;
  color: var(--blue);
  padding: 4px 7px;
  border-radius: 99px;
}
.destination-connect:disabled,
.button:disabled {
  filter: none;
  opacity: 0.48;
  cursor: not-allowed;
}
.dashboard-sections {
  margin-top: 22px;
}
.plan-panel .button {
  width: 100%;
}
.header-plan {
  width: min(440px, 44vw);
  flex: 0 0 auto;
  padding: 18px 20px;
}
.header-plan .panel-head {
  align-items: center;
}
.header-plan .button {
  width: auto;
  min-width: 140px;
}
.billing-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.billing-actions #cancel-trial {
  color: #9d342a;
  border-color: #e5b8b2;
}
.header-plan h2 {
  margin: 0;
}
.plan-summary {
  display: flex;
  align-items: center;
  gap: 9px;
}
.header-plan .plan {
  margin: 2px 0 0;
  font-size: 25px;
}
.header-plan > .muted {
  display: block;
  margin-top: 8px;
  font-size: 12px;
}
.recordings-panel {
  min-height: 180px;
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.mfa-priority-1 {
  order: 1;
}
.mfa-priority-2 {
  order: 2;
}
.mfa-priority-3 {
  order: 3;
}
.security-method {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}
.security-method .status {
  float: right;
}
.security-method p {
  color: var(--muted);
  min-height: 46px;
}
.security-actions,
.mfa-choice-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.passkey-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.passkey-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--wash);
}
.passkey-item strong,
.passkey-item small {
  display: block;
}
.passkey-item small {
  color: var(--muted);
}
.passkey-remove {
  border: 0;
  background: transparent;
  color: #a33b31;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}
.mfa-methods {
  margin-bottom: 18px;
}
.mfa-choice-label {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.mfa-choice-buttons .button {
  width: auto;
  margin: 0;
  padding: 9px 12px;
}
.mfa-choice-buttons .button.selected {
  border-color: var(--blue);
  background: #edf4ff;
  color: var(--blue);
  opacity: 1;
}
.totp-setup {
  display: block;
  margin-top: 20px;
  padding: 20px;
  background: var(--wash);
  border-radius: 14px;
}
.authenticator-intro h2,
.authenticator-enrolment h3 {
  margin: 0 0 6px;
}
.setup-step-label {
  margin: 0 0 5px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.authenticator-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 10px;
}
.authenticator-downloads .button {
  padding: 10px 14px;
}
.authenticator-alternatives {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.authenticator-enrolment {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.totp-setup img {
  width: 240px;
  border-radius: 12px;
}
.totp-setup code {
  display: block;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  word-break: break-all;
}
.verify-step form {
  margin-top: 20px;
}
.recovery-codes {
  margin-top: 18px;
  padding: 18px;
  background: #fff8dd;
  border: 1px solid #f0d87c;
  border-radius: 12px;
}
.recovery-codes code {
  display: inline-block;
  margin: 5px;
  padding: 5px 8px;
  background: #fff;
}
#recovery-codes-modal .recovery-codes {
  margin-top: 0;
}
#recovery-codes-modal > .button {
  width: 100%;
  margin-top: 18px;
}
#mfa-passkey-continue {
  width: 100%;
}
.security-modal {
  width: min(720px, calc(100vw - 32px));
  border: 0;
  border-radius: 20px;
  padding: 28px;
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(16, 43, 78, 0.28);
}
.security-modal::backdrop {
  background: rgba(11, 28, 49, 0.58);
  backdrop-filter: blur(3px);
}
.plans-modal {
  width: min(1100px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  border: 0;
  border-radius: 24px;
  padding: 34px;
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(16, 43, 78, 0.3);
}
.plans-modal::backdrop {
  background: rgba(11, 28, 49, 0.65);
  backdrop-filter: blur(4px);
}
.plans-heading {
  max-width: 700px;
  margin: 0 auto 25px;
  text-align: center;
}
.plans-heading h2 {
  margin: 5px 0 8px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.plans-heading p {
  margin: 0;
  color: var(--muted);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.price-card.featured {
  border: 2px solid var(--blue);
  box-shadow: 0 14px 35px rgba(40, 103, 216, 0.14);
}
.price-card.annual {
  background: linear-gradient(145deg, #f5fbf8, #fff);
  border-color: #a7dfc9;
}
.recommendation-mascot {
  width: 100%;
  height: auto;
  margin: 0 0 18px;
  border-radius: 13px;
  object-fit: contain;
}
.popular-label,
.saving-label {
  position: absolute;
  right: 16px;
  top: -12px;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.saving-label {
  background: #08724a;
}
.price-card-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.price-card-title span {
  font-size: 21px;
  font-weight: 850;
}
.price-card-title em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 18px 0 0;
}
.reference-price {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}
.reference-price del {
  margin-right: 4px;
  color: #a13c34;
  text-decoration-thickness: 2px;
}
.reference-price + .price {
  margin-top: 5px;
}
.price strong {
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.05em;
}
.price-card.enterprise .price strong {
  font-size: 29px;
  letter-spacing: -0.035em;
}
.price span,
.price-equivalent,
.price-summary {
  color: var(--muted);
}
.price-equivalent {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 700;
}
.price-summary {
  min-height: 48px;
  margin: 16px 0 8px;
}
.price-card ul {
  flex: 1;
  margin: 8px 0 24px;
  padding: 0;
  list-style: none;
}
.price-card li {
  position: relative;
  padding: 7px 0 7px 24px;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #08724a;
  font-weight: 900;
}
.price-card .button {
  width: 100%;
}
.enterprise-contact {
  margin-top: auto;
}
.plans-message {
  display: none;
  margin: 18px 0 0;
  padding: 11px 14px;
  border-radius: 10px;
  background: #fff2d6;
  color: #744d00;
  text-align: center;
}
.plans-footnote {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
.destination-modal {
  width: min(760px, calc(100vw - 32px));
}
.destination-modal > h2 {
  margin: 4px 0 6px;
  font-size: 26px;
}
.destination-modal form {
  margin-top: 18px;
}
.destination-modal form > .button {
  width: 100%;
  margin-top: 18px;
}
.destination-setup-values {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 8px 12px;
  align-items: center;
  margin-top: 18px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #f7faff;
}
.destination-setup-values label {
  margin: 0;
}
.destination-setup-values input[readonly] {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}
.setup-help {
  color: var(--muted);
  font-size: 12px;
}
.setup-help code {
  color: var(--navy);
}
.setup-guide {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #f8fbff;
}
.setup-guide summary {
  padding: 13px 15px;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}
.setup-guide[open] summary {
  border-bottom: 1px solid var(--line);
}
.setup-guide ol {
  margin: 0;
  padding: 15px 22px 8px 42px;
}
.setup-guide li {
  margin-bottom: 10px;
}
.setup-policy {
  max-height: 280px;
  overflow: auto;
  margin: 4px 15px 15px;
  padding: 14px;
  border-radius: 10px;
  background: #10233f;
  color: #e8f2ff;
  font-size: 11px;
  line-height: 1.5;
  white-space: pre;
}
.setup-guide .setup-copy {
  margin: 0 15px 15px;
  padding: 8px 12px;
  font-size: 12px;
}
.form-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modal-message {
  display: none;
  margin: 15px 0 0;
  padding: 10px 12px;
  border-radius: 9px;
  background: #fff3d8;
  color: #73500c;
}
.modal-message.good {
  background: #e5f8ef;
  color: #096542;
}
.security-modal .totp-setup {
  margin-top: 8px;
}
.modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 28px;
  cursor: pointer;
}
.security-modal > h2 {
  margin-top: 0;
}
.security-modal > .button {
  margin-top: 12px;
}
.security-modal form .button {
  margin-top: 16px;
}
.danger-panel {
  border-color: #f0c2bc;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 30px;
}
.button.danger {
  background: #b9362b;
}
.confirm-check {
  font-weight: 500;
}
.confirm-check input {
  width: auto;
  margin-right: 8px;
}
@media (max-width: 900px) {
  .workflow-board {
    grid-template-columns: 1fr;
  }
  .workflow-arrow {
    height: 36px;
    transform: rotate(90deg);
  }
  .security-grid {
    grid-template-columns: 1fr;
  }
  .danger-panel,
  .authenticator-enrolment {
    grid-template-columns: 1fr;
  }
  .totp-setup img {
    max-width: 100%;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-summary {
    min-height: 0;
  }
  .destination-setup-values,
  .form-columns {
    grid-template-columns: 1fr;
  }
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font:
    15px/1.55 Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, #f7fbff 0, #f4fbf8 100%);
  min-height: 100vh;
}
a {
  color: var(--blue);
  text-decoration: none;
}
button,
input {
  font: inherit;
}
.app-nav {
  height: 72px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-weight: 800;
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 13px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 11px;
  padding: 11px 17px;
  background: var(--blue);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
}
.button:hover {
  filter: brightness(0.96);
}
.button.secondary {
  background: #eef4ff;
  color: var(--blue);
}
.button.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(300px, 520px);
  gap: 72px;
  align-items: center;
  max-width: 1080px;
  margin: auto;
  padding: 9vh 28px;
}
.auth-card,
.panel {
  background: var(--paper);
  border: 1px solid rgba(219, 229, 239, 0.9);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.auth-card {
  padding: 38px;
}
.eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.auth-card h1,
.welcome h1 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 9px 0 12px;
}
.auth-card h1 {
  font-size: 34px;
}
.lede,
.muted {
  color: var(--muted);
}
label {
  display: block;
  font-size: 13px;
  font-weight: 750;
  margin: 18px 0 7px;
}
input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cbd7e3;
  border-radius: 10px;
  background: #fbfdff;
  color: var(--ink);
  outline: none;
}
input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(40, 103, 216, 0.12);
}
form .button {
  width: 100%;
  margin-top: 22px;
}
.form-foot {
  text-align: center;
  margin-top: 20px;
  color: var(--muted);
}
.message {
  display: none;
  margin: 16px 0 0;
  padding: 11px 13px;
  border-radius: 9px;
  background: #fff1ef;
  color: #9d3025;
}
.message.good {
  background: #eaf9f3;
  color: #176a55;
}
.feature-list {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}
.feature {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.feature i {
  font-style: normal;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #dff7ef;
  display: grid;
  place-items: center;
}
.dashboard {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.topline h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.035em;
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.panel {
  padding: 24px;
  box-shadow: 0 9px 35px rgba(16, 43, 78, 0.06);
}
.span-4 {
  grid-column: span 4;
}
.span-8 {
  grid-column: span 8;
}
.span-12 {
  grid-column: span 12;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}
.panel h2 {
  font-size: 18px;
  margin: 0 0 6px;
}
.status {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 99px;
  background: #edf2f7;
  color: #506177;
  font-size: 12px;
  font-weight: 750;
}
.status.on {
  background: #c8f5df;
  color: #05643e;
}
#zoom-status.status.on {
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 850;
}
.plan {
  font-size: 30px;
  font-weight: 850;
  letter-spacing: -0.03em;
  margin: 18px 0 2px;
}
.provider-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.provider {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 16px;
}
.provider strong {
  display: block;
}
.provider span {
  font-size: 12px;
  color: var(--muted);
}
.recording {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}
.recording:first-child {
  border-top: 0;
}
.recording strong {
  display: block;
}
.empty {
  padding: 30px;
  text-align: center;
  border: 1px dashed #cbd7e3;
  border-radius: 13px;
  color: var(--muted);
  margin-top: 16px;
}
.metric {
  font-size: 32px;
  font-weight: 850;
  margin-top: 12px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}
.table-wrap {
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
th {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
@media (max-width: 780px) {
  .auth-shell {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 40px;
  }
  .welcome {
    order: -1;
  }
  .span-4,
  .span-8 {
    grid-column: span 12;
  }
  .provider-row,
  .metrics {
    grid-template-columns: 1fr;
  }
  .app-nav {
    padding: 0 16px;
  }
  .brand span {
    display: none;
  }
  .topline {
    align-items: start;
    flex-direction: column;
  }
  .header-plan {
    width: 100%;
  }
}
