:root {
  --bg: #eef5f6;
  --panel: rgba(255, 255, 255, 0.7);
  --panel-strong: rgba(255, 255, 255, 0.9);
  --panel-dark: rgba(17, 28, 39, 0.76);
  --ink: #13202b;
  --muted: #637284;
  --line: rgba(255, 255, 255, 0.72);
  --line-dark: rgba(255, 255, 255, 0.16);
  --green: #0b8f73;
  --green-strong: #05614f;
  --aqua: #20afbe;
  --gold: #b88718;
  --red: #bb3e3e;
  --blue: #315c91;
  --violet: #6953a4;
  --shadow: 0 24px 80px rgba(35, 52, 66, 0.15);
  --shadow-soft: 0 12px 30px rgba(35, 52, 66, 0.1);
  --inner-glow: inset 0 1px 0 rgba(255, 255, 255, 0.72), inset 0 -1px 0 rgba(255, 255, 255, 0.22);
  --focus: 0 0 0 4px rgba(32, 175, 190, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(115deg, rgba(32, 175, 190, 0.12), transparent 30%),
    linear-gradient(245deg, rgba(105, 83, 164, 0.1), transparent 34%),
    linear-gradient(135deg, #f8fcfd 0%, var(--bg) 46%, #f5f7fb 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.34), transparent 72%);
}

body.public .sidebar {
  display: none;
}

body.public .shell {
  margin-left: 0;
}

body.public .topbar {
  max-width: 1180px;
  margin: 24px auto;
  position: sticky;
  top: 16px;
  z-index: 10;
}

body.public #view {
  max-width: 1180px;
  margin: 0 auto 40px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--inner-glow), var(--focus);
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 272px;
  background:
    linear-gradient(160deg, rgba(23, 32, 42, 0.82), rgba(20, 29, 37, 0.62)),
    rgba(20, 29, 37, 0.58);
  backdrop-filter: blur(26px) saturate(145%);
  -webkit-backdrop-filter: blur(26px) saturate(145%);
  color: #f7fbf8;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  border-right: 1px solid var(--line-dark);
  box-shadow: 22px 0 70px rgba(17, 28, 40, 0.18);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.28)),
    linear-gradient(135deg, #f7c948, #29c2a2);
  color: #10201c;
  font-weight: 800;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: var(--inner-glow), 0 12px 28px rgba(12, 18, 24, 0.18);
}

.logo-mark {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.logo-mark img[src] {
  display: block;
}

.logo-mark img[src] + span {
  display: none;
}

.brand small,
.sidebar-footer small {
  display: block;
  color: #adc0b5;
  margin-top: 3px;
}

nav {
  display: grid;
  gap: 6px;
}

.nav-item {
  border: 0;
  color: #dce8e1;
  background: transparent;
  text-align: left;
  min-height: 48px;
  padding: 11px 12px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-item.active,
.nav-item:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: var(--inner-glow);
}

.nav-item:hover {
  transform: translateX(2px);
}

.sidebar-footer {
  margin-top: auto;
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  border: 1px solid var(--line-dark);
  box-shadow: var(--inner-glow);
}

.shell {
  margin-left: 272px;
  min-height: 100vh;
  padding: 28px 30px;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft), var(--inner-glow);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  font-size: 32px;
  line-height: 1.12;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 16px;
}

.top-actions,
.row,
.between,
.tabs,
.metric-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.landing-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.48)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='700' viewBox='0 0 1200 700'%3E%3Crect width='1200' height='700' fill='%23dbeff2'/%3E%3Cpath d='M0 430 C240 330 340 540 590 410 C800 300 900 210 1200 280 L1200 700 L0 700 Z' fill='%23ffffff' fill-opacity='.55'/%3E%3Cpath d='M720 130 C890 60 1060 140 1130 290 C1000 210 860 250 720 130 Z' fill='%2328b7c5' fill-opacity='.22'/%3E%3C/svg%3E");
  background-size: cover;
  box-shadow: var(--shadow), var(--inner-glow);
  overflow: hidden;
}

.landing-copy h1 {
  font-size: 54px;
  line-height: 1.05;
  max-width: 720px;
  margin-bottom: 18px;
}

.landing-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 640px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-proof span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  color: var(--green-strong);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--inner-glow);
}

.landing-visual {
  display: grid;
  gap: 16px;
}

.glass-phone,
.glass-strip,
.auth-panel {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow-soft), var(--inner-glow);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.glass-phone {
  min-height: 220px;
  padding: 24px;
  display: grid;
  align-content: center;
}

.glass-phone span,
.glass-strip b {
  color: var(--green);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}

.glass-phone strong {
  display: block;
  font-size: 64px;
}

.glass-strip {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.glass-strip em {
  color: var(--muted);
  font-style: normal;
}

.auth-panel {
  max-width: 520px;
  margin: 0 auto;
  padding: 28px;
}

.auth-panel.wide {
  max-width: 820px;
}

.feature-card {
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft), var(--inner-glow);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.feature-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.55;
}

.landing-band {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 18px;
  align-items: start;
}

.profile-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.profile-avatar {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--aqua));
  color: #fff;
  font-weight: 900;
  box-shadow: var(--inner-glow);
}

.audience-card,
.package-card,
.order-detail-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.audience-card:hover,
.package-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow), var(--inner-glow);
}

.package-list {
  display: grid;
  gap: 14px;
}

.package-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.36));
}

.package-card .row {
  align-items: center;
}

.order-detail-card {
  padding: 2px;
}

.panel > .between:first-child {
  align-items: flex-start;
}

.top-actions .badge {
  min-height: 36px;
}

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

.between {
  justify-content: space-between;
}

.grid {
  display: grid;
  gap: 16px;
}

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

.grid.two {
  grid-template-columns: 1.3fr 0.7fr;
}

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

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

.audience-card {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow: var(--shadow), var(--inner-glow);
  padding: 12px;
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.audience-card.active {
  border-color: rgba(40, 183, 197, 0.72);
  box-shadow: var(--shadow), var(--inner-glow), 0 0 0 4px rgba(40, 183, 197, 0.12);
}

.audience-open {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 0 12px;
}

.audience-open span {
  font-weight: 900;
}

.audience-open strong {
  min-width: 40px;
  height: 34px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--inner-glow);
}

.audience-open small,
.audience-open em {
  grid-column: 1 / -1;
  color: var(--muted);
  font-style: normal;
  line-height: 1.35;
}

.audience-detail table input {
  min-width: 150px;
}

.inline-editor {
  margin: 14px 0 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
}

.package-list {
  display: grid;
  gap: 12px;
}

.package-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: var(--inner-glow);
}

.package-card h3 {
  margin-bottom: 8px;
}

.package-card.editing {
  background: rgba(255, 255, 255, 0.58);
}

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

.package-stats span {
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--inner-glow);
}

.package-stats small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.package-stats strong {
  display: block;
  margin-top: 4px;
}

.order-detail-card {
  display: grid;
  gap: 14px;
}

.panel,
.metric,
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft), var(--inner-glow);
  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
  position: relative;
  overflow: hidden;
}

.panel::before,
.metric::before,
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.46), transparent 36%);
  pointer-events: none;
}

.panel {
  padding: 22px;
}

.metric {
  padding: 20px;
  min-height: 138px;
}

.panel > *,
.metric > *,
.card > * {
  position: relative;
  z-index: 1;
}

.metric small,
.muted {
  color: var(--muted);
}

.metric strong {
  display: block;
  font-size: 28px;
  margin: 8px 0 4px;
  letter-spacing: 0;
}

.trend.good {
  color: var(--green);
}

.trend.warn {
  color: var(--gold);
}

.primary,
.secondary,
.danger,
.icon-button {
  border: 1px solid transparent;
  min-height: 42px;
  border-radius: 7px;
  padding: 0 14px;
  font-weight: 700;
  box-shadow: var(--inner-glow), 0 12px 24px rgba(25, 47, 60, 0.08);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.primary {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent),
    linear-gradient(135deg, var(--green), var(--aqua));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.46);
}

.primary:active,
.secondary:active,
.danger:active,
.icon-button:active {
  transform: translateY(0);
}

.primary:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), transparent),
    linear-gradient(135deg, var(--green-strong), #1d9fab);
  transform: translateY(-1px);
}

.secondary,
.icon-button {
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.secondary:hover,
.icon-button:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

.danger {
  background: rgba(255, 243, 243, 0.72);
  color: var(--red);
  border-color: #f0c4c4;
}

.icon-button {
  width: 40px;
  padding: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 13px 10px;
  border-bottom: 1px solid rgba(101, 114, 128, 0.14);
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

tbody tr {
  transition: background 0.16s ease;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.28);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(237, 244, 239, 0.72);
  color: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--inner-glow);
}

.badge.warn {
  background: rgba(255, 247, 223, 0.78);
  color: #8a650e;
}

.badge.bad {
  background: rgba(255, 240, 240, 0.78);
  color: var(--red);
}

.badge.info {
  background: rgba(238, 244, 255, 0.78);
  color: var(--blue);
}

.form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

label {
  font-weight: 800;
  font-size: 13px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  min-height: 46px;
  padding: 11px 12px;
  box-shadow: var(--inner-glow), 0 12px 24px rgba(25, 47, 60, 0.05);
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

input:focus,
select:focus,
textarea:focus {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(40, 183, 197, 0.78);
  box-shadow: var(--inner-glow), var(--focus);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.hint {
  color: var(--muted);
  font-size: 13px;
}

.checklist {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--inner-glow);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 5px;
  background: var(--green);
  flex: 0 0 auto;
}

.dot.warn {
  background: var(--gold);
}

.dot.bad {
  background: var(--red);
}

.progress {
  height: 9px;
  border-radius: 999px;
  background: rgba(232, 238, 233, 0.58);
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  background: var(--green);
}

.code {
  display: block;
  background: rgba(17, 30, 38, 0.9);
  color: #e6fff2;
  border-radius: 8px;
  padding: 16px;
  overflow: auto;
  white-space: pre-wrap;
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--inner-glow);
}

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

.api-grid code {
  display: block;
  padding: 12px;
  border-radius: 8px;
  background: rgba(17, 30, 38, 0.88);
  color: #e6fff2;
  box-shadow: var(--inner-glow);
  overflow-wrap: anywhere;
}

.tabs {
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}

.import-tabs {
  border-bottom: 0;
  margin-bottom: 0;
}

.import-tabs .tab {
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  box-shadow: var(--inner-glow);
}

.composer-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--inner-glow);
}

.composer-tools .secondary {
  min-height: 36px;
  padding: 0 10px;
}

.file-input-hidden {
  width: 1px;
  height: 1px;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.file-drop {
  min-height: 94px;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 18px;
  border: 1px dashed rgba(32, 175, 190, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--inner-glow);
  cursor: pointer;
  text-align: center;
}

.file-drop strong {
  color: var(--green);
}

.file-drop span {
  color: var(--muted);
  font-weight: 700;
  word-break: break-word;
}

.segmented {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--inner-glow);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.tab {
  border: 0;
  background: transparent;
  padding: 8px 12px;
  border-radius: 7px;
  font-weight: 800;
  color: var(--muted);
  min-height: 34px;
}

.tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--aqua));
  border-bottom: 0;
  box-shadow: var(--inner-glow), 0 10px 22px rgba(15, 138, 109, 0.2);
}

.toast {
  position: fixed;
  left: 50%;
  top: 50%;
  background: rgba(23, 32, 42, 0.88);
  color: #fff;
  width: min(420px, calc(100vw - 34px));
  min-height: 112px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow), var(--inner-glow);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
  transition: 0.2s ease;
  pointer-events: none;
  z-index: 9999;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.toast.success {
  background: rgba(12, 122, 92, 0.92);
}

.toast.error {
  background: rgba(172, 54, 54, 0.94);
}

.toast.info {
  background: rgba(23, 32, 42, 0.88);
}

@media (max-width: 980px) {
  .sidebar {
    position: static;
    width: auto;
    min-height: auto;
  }

  .shell {
    margin-left: 0;
    padding: 18px;
  }

  .grid.metrics,
  .grid.two,
  .grid.three,
  .audience-grid,
  .landing-hero,
  .landing-band,
  .api-grid {
    grid-template-columns: 1fr;
  }

  .landing-copy h1 {
    font-size: 34px;
  }

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

  table {
    display: block;
    overflow-x: auto;
  }

  .audience-detail table,
  .audience-detail thead,
  .audience-detail tbody,
  .audience-detail tr,
  .audience-detail td {
    display: block;
    width: 100%;
  }

  .audience-detail thead {
    display: none;
  }

  .audience-detail tr {
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: var(--inner-glow);
  }

  .audience-detail td {
    border-bottom: 0;
    padding: 8px 0;
  }

  .audience-detail td::before {
    content: attr(data-label);
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 4px;
  }

  .form .row {
    align-items: stretch;
  }

  .form .row button {
    flex: 1 1 160px;
    min-height: 48px;
  }
}
