.brand-mark,
.icon-badge,
.mini-icon,
.call-action__icon,
.nav-icon,
.status-chip__dot {
  flex: 0 0 auto;
}

.brand-mark {
  width: 66px;
  height: 66px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ff8d24 0%, #ff5d00 100%);
  color: #fff;
  box-shadow: 0 14px 24px rgba(255, 107, 0, 0.28);
  font-size: 30px;
  font-weight: 900;
}

.hero-brand {
  display: grid;
  justify-items: center;
  gap: var(--space-4);
  text-align: center;
}

.hero-title {
  margin: 0;
  font-size: 40px;
  line-height: 1;
}

.hero-copy {
  margin: 0;
  color: var(--text-muted-inverse);
  font-size: 15px;
  line-height: 1.5;
}

.section-title,
.section-subtitle,
.metric-value,
.cta-button,
.field-label,
.risk-badge,
.nav-label,
.list-title,
.page-title {
  letter-spacing: -0.02em;
}

.page-title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
}

.page-subtitle,
.muted-copy,
.list-meta,
.field-help {
  color: var(--text-soft);
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.app-shell.is-dark .page-subtitle,
.app-shell.is-dark .muted-copy,
.app-shell.is-dark .list-meta,
.app-shell.is-dark .field-help {
  color: var(--text-muted-inverse);
}

.back-button,
.icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: inherit;
  background: rgba(16, 19, 26, 0.05);
}

.app-shell.is-dark .back-button,
.app-shell.is-dark .icon-button {
  background: rgba(255, 255, 255, 0.08);
}

.panel,
.stat-card,
.feature-card,
.callout-card,
.list-card,
.chart-card,
.action-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.app-shell.is-dark .panel,
.app-shell.is-dark .stat-card,
.app-shell.is-dark .feature-card,
.app-shell.is-dark .callout-card,
.app-shell.is-dark .list-card,
.app-shell.is-dark .chart-card,
.app-shell.is-dark .action-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  box-shadow: none;
}

.panel {
  padding: var(--space-5);
}

.panel.glow {
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.18) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 50px;
  padding: 0 var(--space-4);
  border-radius: 16px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 14px 24px rgba(255, 107, 0, 0.24);
}

.cta-button.is-secondary {
  color: var(--accent);
  background: var(--accent-soft);
  box-shadow: none;
}

.cta-button.is-ghost {
  color: inherit;
  background: rgba(16, 19, 26, 0.05);
  box-shadow: none;
}

.app-shell.is-dark .cta-button.is-ghost {
  background: rgba(255, 255, 255, 0.08);
}

.compat-row,
.social-stack,
.info-list,
.settings-list,
.action-grid,
.history-list,
.tips-list {
  display: grid;
  gap: var(--space-3);
}

.compat-row {
  grid-template-columns: repeat(4, 1fr);
}

.compat-pill,
.social-button,
.info-row,
.setting-row,
.history-item,
.tip-item,
.report-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid rgba(16, 19, 26, 0.05);
}

.app-shell.is-dark .compat-pill,
.app-shell.is-dark .social-button,
.app-shell.is-dark .info-row,
.app-shell.is-dark .setting-row,
.app-shell.is-dark .history-item,
.app-shell.is-dark .tip-item,
.app-shell.is-dark .report-option {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.06);
}

.compat-pill {
  justify-content: center;
  padding: 12px 10px;
  font-weight: 800;
}

.compat-pill img {
  display: block;
  width: 100%;
  max-width: 56px;
  height: 46px;
  object-fit: contain;
}

.mini-icon,
.icon-badge,
.nav-icon,
.call-action__icon {
  display: grid;
  place-items: center;
  color: inherit;
}

.mini-icon,
.icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 17px;
}

.mini-icon.is-danger,
.icon-badge.is-danger {
  color: var(--danger);
  background: var(--danger-soft);
}

.mini-icon.is-warning,
.icon-badge.is-warning {
  color: #bd8b00;
  background: var(--warning-soft);
}

.mini-icon.is-success,
.icon-badge.is-success {
  color: var(--success);
  background: var(--success-soft);
}

.field-group {
  display: grid;
  gap: 10px;
}

.field-label {
  font-size: 13px;
  font-weight: 700;
}

.field-input,
.field-textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(16, 19, 26, 0.08);
  background: #fff;
  color: var(--text);
}

.field-textarea {
  min-height: 92px;
  resize: none;
}

.field-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 10px;
}

.risk-panel {
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(242, 72, 72, 0.2) 0%, rgba(242, 72, 72, 0.06) 100%);
  border: 1px solid rgba(242, 72, 72, 0.24);
}

.risk-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
  text-align: center;
}

.risk-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.risk-badge.is-high {
  color: var(--danger);
  background: var(--danger-soft);
}

.risk-badge.is-medium {
  color: #ba8300;
  background: var(--warning-soft);
}

.risk-badge.is-low {
  color: var(--success);
  background: var(--success-soft);
}

.risk-badge.is-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.metrics-grid,
.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat-card,
.feature-card {
  padding: 16px;
}

.metric-value {
  font-size: 28px;
  font-weight: 800;
}

.metric-label {
  font-size: 12px;
  color: var(--text-soft);
}

.app-shell.is-dark .metric-label {
  color: var(--text-muted-inverse);
}

.history-item,
.setting-row,
.info-row,
.tip-item {
  justify-content: space-between;
}

.list-leading,
.list-body,
.list-trailing {
  display: flex;
  align-items: center;
}

.list-leading {
  gap: var(--space-3);
  flex: 1;
}

.list-body {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.list-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 6px;
  border-radius: 16px;
  background: var(--surface-soft);
}

.tab-button {
  min-height: 42px;
  border-radius: 12px;
  color: var(--text-soft);
  font-weight: 700;
}

.tab-button.is-active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}

.switch {
  position: relative;
  width: 48px;
  height: 30px;
  border-radius: 999px;
  background: rgba(16, 19, 26, 0.1);
  transition: background var(--duration-base) var(--ease-standard);
}

.switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.16);
  transition: transform var(--duration-base) var(--ease-standard);
}

.switch.is-on {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
}

.switch.is-on::after {
  transform: translateX(18px);
}

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

.call-action {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.call-action__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 26px;
  color: #fff;
}

.call-action__icon.is-danger {
  background: linear-gradient(180deg, #ff7c7c 0%, #ef4040 100%);
}

.call-action__icon.is-neutral {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.call-action__icon.is-success {
  background: linear-gradient(180deg, #45d17c 0%, #1fa856 100%);
}

.nav-item {
  display: grid;
  justify-items: center;
  gap: 3px;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  min-width: 0;
}

.nav-item.is-active {
  color: var(--accent);
}

.nav-icon {
  width: 24px;
  height: 24px;
  font-size: 16px;
}

.nav-label {
  white-space: nowrap;
}

.onboarding-intro {
  display: grid;
  gap: var(--space-4);
}

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

.tutorial-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid rgba(16, 19, 26, 0.05);
}

.tutorial-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #fff;
}

.tutorial-card__icon.is-real {
  background: linear-gradient(180deg, #ffb16f 0%, #ff6b00 100%);
}

.tutorial-card__icon.is-virtual {
  background: linear-gradient(180deg, #89d98a 0%, #28b463 100%);
}

.tutorial-card__title,
.tutorial-card__copy,
.report-entity__title,
.report-entity__meta,
.number-card__title,
.number-card__meta,
.number-card__status {
  margin: 0;
}

.tutorial-card__title {
  font-size: 13px;
  font-weight: 800;
}

.tutorial-card__copy {
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-soft);
}

.pager-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.pager-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(16, 19, 26, 0.16);
}

.pager-dots span.is-active {
  width: 18px;
  background: var(--accent);
}

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

.number-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 19, 26, 0.06);
  box-shadow: var(--shadow-card);
}

.number-card__leading,
.report-entity,
.report-entity__leading,
.threat-row,
.connection-flow {
  display: flex;
  align-items: center;
}

.number-card__leading,
.report-entity__leading,
.threat-row {
  gap: 12px;
}

.number-card__body,
.report-entity__body {
  display: grid;
  gap: 3px;
}

.number-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.number-card__icon.is-work {
  background: linear-gradient(180deg, #46c36f 0%, #1e9a4d 100%);
}

.number-card__icon.is-clientes {
  background: linear-gradient(180deg, #5aa9ff 0%, #2d77d6 100%);
}

.number-card__icon.is-formularios {
  background: linear-gradient(180deg, #8d67ff 0%, #5d3fd6 100%);
}

.number-card__icon.is-whatsapp {
  background: linear-gradient(180deg, #ff944d 0%, #ff6b00 100%);
}

.number-card__title {
  font-size: 14px;
  font-weight: 800;
}

.number-card__meta {
  font-size: 12px;
  color: var(--text-soft);
}

.number-card__status {
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
}

.number-card__status::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 999px;
  background: currentColor;
}

.connection-flow {
  justify-content: center;
  gap: 10px;
  padding: 8px 0;
}

.wa-orb {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 38px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

.wa-orb.is-green {
  background: linear-gradient(180deg, #49d77d 0%, #20a957 100%);
}

.wa-orb.is-orange {
  background: linear-gradient(180deg, #ff9b54 0%, #ff6b00 100%);
}

.connection-dots {
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--text-soft);
}

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

.benefits-list .list-meta {
  font-size: 12px;
}

.inline-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  color: var(--info);
  text-decoration: none;
}

.report-summary {
  display: grid;
  gap: 10px;
}

.report-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
}

.report-highlight.is-red {
  background: linear-gradient(180deg, #ff3e30 0%, #ef2f22 100%);
  color: #fff;
}

.report-highlight.is-amber {
  background: linear-gradient(180deg, #fff3cd 0%, #fde8a9 100%);
}

.report-highlight.is-green {
  background: linear-gradient(180deg, #eefbe7 0%, #dff3d6 100%);
}

.report-highlight__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  font-size: 16px;
}

.report-highlight__value,
.report-highlight__label,
.report-panel__title,
.threat-row__label,
.threat-row__value {
  margin: 0;
}

.report-highlight__value {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.report-highlight__label {
  font-size: 12px;
  font-weight: 700;
}

.report-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 19, 26, 0.06);
  box-shadow: var(--shadow-card);
}

.report-panel__title {
  font-size: 13px;
  font-weight: 800;
}

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

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

.threat-row__label {
  flex: 1;
  font-size: 12px;
}

.threat-row__track {
  width: 110px;
  height: 6px;
  border-radius: 999px;
  background: rgba(242, 72, 72, 0.12);
  overflow: hidden;
}

.threat-row__fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff7a59 0%, #ff3528 100%);
}

.threat-row__value {
  width: 18px;
  text-align: right;
  font-size: 12px;
  font-weight: 700;
}

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

.report-entity {
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 19, 26, 0.06);
  box-shadow: var(--shadow-card);
}

.report-entity__logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.report-entity__logo.is-claro {
  background: #e02121;
}

.report-entity__logo.is-bcp {
  background: #183b8c;
}

.report-entity__logo.is-entel {
  background: #1f57b8;
}

.report-entity__logo.is-teleoperadores {
  background: #434852;
}

.report-entity__logo.is-promociones {
  background: #8b70d6;
}

.report-entity__title {
  font-size: 14px;
  font-weight: 800;
}

.report-entity__meta {
  font-size: 12px;
  color: var(--text-soft);
}

.report-entity__actions {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.text-risk {
  font-size: 11px;
  font-weight: 700;
}

.text-risk.is-high {
  color: var(--danger);
}

.text-risk.is-medium {
  color: #ba8300;
}

.text-risk.is-low {
  color: var(--success);
}

.mini-button {
  min-width: 70px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(16, 19, 26, 0.08);
  background: var(--surface-soft);
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
}

.chart {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  min-height: 180px;
  margin-top: 12px;
}

.chart-day {
  flex: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 140px;
}

.bar {
  width: 10px;
  border-radius: 999px 999px 4px 4px;
  transform-origin: bottom;
}

.bar.blocked {
  background: #f25d5d;
}

.bar.suspect {
  background: #f3c13a;
}

.bar.safe {
  background: #4dc680;
}

.bar-label {
  font-size: 11px;
  color: var(--text-soft);
}

.app-shell.is-dark .bar-label {
  color: var(--text-muted-inverse);
}

.helper-note {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 107, 0, 0.08);
  color: var(--accent-strong);
  font-size: 12px;
  line-height: 1.45;
}

.promo-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 132, 44, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 139, 61, 0.22);
}

.promo-card__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd4b4;
}

.promo-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-inverse);
}

.promo-card__copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted-inverse);
}

.promo-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  background: #fff;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 800;
}

.pricing-screen {
  background:
    radial-gradient(circle at top, #ffffff 0%, #f7f7f8 45%, #f2f2f4 100%);
}

.pricing-content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-bottom: 20px;
}

.pricing-card-shell {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 18px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(16, 19, 26, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 26px rgba(15, 23, 42, 0.04);
}

.pricing-card-shell.is-premium {
  border-color: var(--premium-border);
  box-shadow: 0 18px 34px rgba(255, 107, 0, 0.1);
}

.pricing-header {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
}

.pricing-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.pricing-top-badge {
  justify-self: end;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff9d52 0%, #ff6b00 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.plan-icon {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 84px;
}

.plan-icon svg {
  width: 86px;
  height: 86px;
}

.plan-icon--free svg {
  color: #c3c5ca;
}

.plan-icon--premium svg {
  color: var(--accent);
}

.plan-icon__spark {
  position: absolute;
  color: #ff9d52;
  font-size: 12px;
  font-weight: 800;
}

.plan-icon__spark:first-of-type {
  top: 10px;
  right: 124px;
}

.plan-icon__spark:last-of-type {
  top: 28px;
  right: 98px;
}

.pricing-subtitle {
  margin: 0;
  text-align: center;
  font-size: 14px;
  color: #747a86;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.35;
}

.feature-item__icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.feature-item__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.feature-item.is-included {
  color: #1d2430;
}

.feature-item.is-included .feature-item__icon {
  color: var(--success-strong);
}

.feature-item.is-included.is-premium .feature-item__icon {
  color: var(--accent);
}

.feature-item.is-disabled {
  color: var(--disabled-text);
}

.feature-item.is-disabled .feature-item__icon {
  color: var(--disabled-icon);
}

.plan-price {
  display: grid;
  justify-items: center;
  gap: 6px;
  margin-top: auto;
}

.plan-price__line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--accent);
}

.plan-price__value {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.plan-price__period {
  font-size: 13px;
  font-weight: 600;
  color: #6f7582;
}

.plan-price__note {
  margin: 0;
  font-size: 12px;
  color: #8b91a0;
}

.plan-cta {
  margin-top: 8px;
}

.plan-cta.is-outline {
  color: var(--accent);
  background: transparent;
  border: 1.5px solid rgba(255, 107, 0, 0.5);
  box-shadow: none;
}

.voice-filter-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.voice-filter-chip {
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  border: 1px solid rgba(16, 19, 26, 0.06);
}

.voice-filter-chip.is-active {
  color: #fff;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-color: transparent;
}

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

.voice-mail-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 19, 26, 0.06);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
}

.voice-mail-item__leading,
.voice-mail-item__meta,
.privacy-list-item,
.trial-feature,
.radio-option,
.callout-strip {
  display: flex;
  align-items: center;
}

.voice-mail-item__leading,
.privacy-list-item,
.trial-feature,
.radio-option {
  gap: 12px;
}

.voice-mail-item__body {
  display: grid;
  gap: 4px;
  flex: 1;
}

.voice-mail-item__number,
.voice-mail-item__message,
.voice-mail-item__time,
.privacy-list-item__title,
.privacy-list-item__copy,
.law-card__title,
.trial-hero__title,
.trial-hero__copy,
.trial-feature__label,
.radio-option__title,
.callout-strip__copy,
.report-footnote {
  margin: 0;
}

.voice-mail-item__number {
  font-size: 14px;
  font-weight: 800;
}

.voice-mail-item__message {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-soft);
}

.voice-mail-item__meta {
  gap: 10px;
  align-self: start;
}

.voice-mail-item__time {
  font-size: 11px;
  color: var(--text-soft);
  white-space: nowrap;
}

.voice-play-button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(16, 19, 26, 0.06);
  color: var(--text);
  font-size: 12px;
}

.voice-summary-note {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(77, 124, 255, 0.08);
  color: var(--info);
  font-size: 12px;
  line-height: 1.45;
}

.privacy-stack {
  display: grid;
  gap: 12px;
}

.privacy-list-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 19, 26, 0.06);
  box-shadow: var(--shadow-card);
}

.privacy-list-item__body {
  display: grid;
  gap: 4px;
}

.privacy-list-item__title {
  font-size: 14px;
  font-weight: 800;
}

.privacy-list-item__copy {
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-soft);
}

.law-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f2f7ff;
  border: 1px solid rgba(77, 124, 255, 0.18);
}

.law-card__title {
  font-size: 13px;
  font-weight: 800;
  color: var(--info);
}

.legal-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  color: var(--info);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.trial-shell {
  display: grid;
  gap: 18px;
  padding: 26px 18px 18px;
  border-radius: 24px;
  border: 1px solid rgba(16, 19, 26, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.05);
}

.trial-shell__header {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.trial-crown {
  font-size: 28px;
  color: #f4ad21;
}

.trial-hero__title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.05;
}

.trial-hero__copy {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-soft);
}

.trial-features {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 19, 26, 0.06);
}

.trial-feature__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

.trial-feature__icon.is-green {
  color: var(--success);
  background: var(--success-soft);
}

.trial-feature__icon.is-blue {
  color: var(--info);
  background: var(--info-soft);
}

.trial-feature__icon.is-orange {
  color: var(--accent);
  background: var(--accent-soft);
}

.trial-feature__label {
  font-size: 13px;
  font-weight: 700;
}

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

.radio-option {
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(16, 19, 26, 0.08);
}

.radio-option__title {
  font-size: 13px;
  font-weight: 700;
}

.radio-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(16, 19, 26, 0.18);
  position: relative;
  flex: 0 0 auto;
}

.radio-option.is-selected .radio-indicator {
  border-color: var(--info);
}

.radio-option.is-selected .radio-indicator::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--info);
}

.report-footnote {
  font-size: 12px;
  color: var(--text-soft);
  text-align: center;
}

.alert-upgrade-shell {
  display: grid;
  gap: 14px;
  padding-top: 20px;
}

.alert-status {
  text-align: center;
}

.alert-danger-card {
  display: grid;
  gap: 10px;
  padding: 18px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ff4b36 0%, #d92222 100%);
  color: #fff;
  box-shadow: 0 20px 30px rgba(217, 34, 34, 0.28);
}

.alert-danger-card__eyebrow,
.alert-danger-card__title,
.alert-danger-card__copy,
.alert-danger-card__badge {
  margin: 0;
  text-align: center;
}

.alert-danger-card__eyebrow {
  font-size: 28px;
}

.alert-danger-card__title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.05;
}

.alert-danger-card__copy {
  font-size: 14px;
  line-height: 1.45;
}

.alert-danger-card__badge {
  justify-self: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.14);
}

.callout-strip {
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.callout-strip__copy {
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-muted-inverse);
}

.call-action__label {
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}
