:root {
  --color-innovation-blue: #3a86ff;
  --color-slate-charcoal: #1e1e2f;
  --color-mission-teal: #00c2a8;
  --color-sanctuary-gold: #fbbf24;
  --color-grey: #efeeea;
  --color-primary: #1e1e2f;
  --color-primary-dark: #161624;
  --color-primary-light: #2a2a3d;
  --color-accent: #3a86ff;
  --color-accent-hover: #2563eb;
  --color-highlight: #fbbf24;
  --color-highlight-hover: #fbbf24;
  --color-success: #00c2a8;
  --color-success-hover: #00a892;
  --color-danger: #ef4444;
  --color-danger-hover: #dc2626;
  --color-text-primary: #1e1e2f;
  --color-text-secondary: #64748b;
  --color-text-muted: #9ca3af;
  --color-background: #f8fafc;
  --color-background-dark: #1e1e2f;
  --color-card: #272738;
  --color-card-hover: #2f2f42;
  --color-border: #e6edff;
  --color-border-dark: #3a3a4f;
  --color-white: #fff;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --spacing-xl: 24px;
  --spacing-2xl: 32px;
  --spacing-3xl: 40px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-round: 50%;
  --sidebar-width: 285px;
  --font-stack: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 28px;
  --font-size-4xl: 32px;
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1e1e2f;
  background: #f8fafc;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font-family: inherit;
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
}
ul,
ol {
  list-style: none;
}
hgroup p {
  margin-top: 4px;
}
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.app_layout {
  display: flex;
  min-height: 100vh;
  background: #f8fafc;
}
.app_main {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: 285px;
}
.app_content {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
}
@media (max-width: 1024px) {
  .app_main {
    margin-left: 0;
  }
}
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 285px;
  background: #1e1e2f;
  color: #fff;
  display: flex;
  flex-direction: column;
  z-index: 100;
}
.sidebar__header {
  padding: 24px;
}
.sidebar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}
.sidebar__logo__icon {
  width: 36px;
  height: 36px;
  background: #3a86ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.sidebar__logo__text {
  font-size: 18px;
  font-weight: 600;
}
.sidebar__nav {
  flex: 1;
  padding: 12px 0;
}
.sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.7);
  transition: all 0.15s ease;
  text-decoration: none;
}
.sidebar__link:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.sidebar__link.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.sidebar__link .icon {
  width: 20px;
  height: 20px;
}
.sidebar__footer {
  padding: 24px;
}
.sidebar__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: #fbbf24;
  color: #1e1e2f;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}
.sidebar__cta:hover {
  background: #fbbf24;
}
.sidebar__cta .icon {
  width: 18px;
  height: 18px;
}
@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.2s ease;
  }
  .sidebar.open {
    transform: translateX(0);
  }
}
.app_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: #fff;
  border-bottom: 1px solid #e6edff;
}
.header__greeting {
  font-size: 24px;
  font-weight: 700;
  color: #1e1e2f;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn,
.snt_confirm__cancel,
.snt_confirm__ok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn:disabled,
.snt_confirm__cancel:disabled,
.snt_confirm__ok:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn__block {
  width: 100%;
}
.btn__gold {
  background: #fbbf24;
  color: #1e1e2f;
}
.btn__gold:hover:not(:disabled) {
  background: #fbbf24;
}
.btn__accent,
.snt_confirm__ok {
  background: #3a86ff;
  color: #fff;
}
.btn__accent:hover:not(:disabled),
.snt_confirm__ok:hover:not(:disabled) {
  background: #2563eb;
}
.btn__danger,
.snt_confirm__ok__danger {
  background: #ef4444;
  color: #fff;
}
.btn__danger:hover:not(:disabled),
.snt_confirm__ok__danger:hover:not(:disabled) {
  background: #dc2626;
}
.btn__outline,
.snt_confirm__cancel {
  background: transparent;
  border: 1px solid #e6edff;
  color: #1e1e2f;
}
.btn__outline:hover:not(:disabled),
.snt_confirm__cancel:hover:not(:disabled) {
  background: #f8fafc;
}
.btn__google {
  background: #fff;
  border: 1px solid #e6edff;
  color: #1e1e2f;
}
.btn__google .icon {
  width: 18px;
  height: 18px;
}
.form_group {
  margin-bottom: 16px;
}
.form_label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1e1e2f;
}
.form_input {
  width: 100%;
  padding: 12px;
  border: 1px solid #e6edff;
  border-radius: 8px;
  font-size: 16px;
  background: #fff;
  transition: border-color 0.15s ease;
}
.form_input:focus {
  outline: none;
  border-color: #3a86ff;
}
.form_input::placeholder {
  color: #9ca3af;
}
.form_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.form_checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
}
.form_checkbox input {
  width: 16px;
  height: 16px;
}
.form_link {
  font-size: 14px;
  color: #3a86ff;
}
.form_link:hover {
  text-decoration: underline;
}
.input_password {
  position: relative;
}
.input_password .form_input {
  padding-right: 44px;
}
.input_password .toggle_visibility {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  color: #9ca3af;
}
.input_password .toggle_visibility:hover {
  color: #1e1e2f;
}
.input_password .toggle_visibility .icon {
  width: 20px;
  height: 20px;
}
.input_password .toggle_visibility .icon__eye_slash {
  display: none;
}
.input_password.visible .icon__eye {
  display: none;
}
.input_password.visible .icon__eye_slash {
  display: block;
}
.card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e6edff;
  padding: 24px;
}
.card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.card__title {
  font-size: 18px;
  font-weight: 600;
}
.snt_toast_container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.snt_toast_container__centered {
  top: 50%;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  align-items: center;
}
.snt_toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.2s ease;
}
.snt_toast__visible {
  opacity: 1;
  transform: translateX(0);
}
.snt_toast__hiding {
  opacity: 0;
  transform: translateX(100%);
}
.snt_toast__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.snt_toast__icon svg {
  width: 100%;
  height: 100%;
}
.snt_toast__message {
  flex: 1;
  font-size: 14px;
}
.snt_toast__close {
  background: none;
  border: none;
  padding: 0;
  font-size: 18px;
  color: #9ca3af;
  cursor: pointer;
}
.snt_toast__close:hover {
  color: #1e1e2f;
}
.snt_toast__success .snt_toast__icon {
  color: #00c2a8;
}
.snt_toast__error .snt_toast__icon {
  color: #ef4444;
}
.snt_toast__warning .snt_toast__icon {
  color: #f59e0b;
}
.snt_toast__info .snt_toast__icon {
  color: #3a86ff;
}
.snt_toast__save {
  background: #1e1e2f;
  color: #fff;
  transform: translateY(20px);
}
.snt_toast__save.snt_toast__visible {
  transform: translateY(0);
}
.snt_toast__save.snt_toast__hiding {
  transform: translateY(-20px);
}
.snt_toast__save .snt_toast__icon {
  color: #00c2a8;
}
.snt_confirm_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.snt_confirm_overlay.snt_confirm__visible {
  opacity: 1;
  visibility: visible;
}
.snt_confirm_dialog {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.2s ease;
}
.snt_confirm__visible .snt_confirm_dialog {
  transform: scale(1);
}
.snt_confirm__header {
  margin-bottom: 16px;
}
.snt_confirm__title {
  font-size: 18px;
  font-weight: 600;
}
.snt_confirm__body {
  margin-bottom: 24px;
}
.snt_confirm__message {
  color: #64748b;
  font-size: 16px;
  line-height: 1.5;
}
.snt_confirm__footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.dashboard_page {
  min-height: 100vh;
  background: #1e3a5f;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: #1e3a5f;
}
.header__left,
.header__center,
.header__right {
  display: flex;
  align-items: center;
}
.header__right {
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
}
.logo__sermon {
  color: #fff;
}
.logo__booster {
  color: #f59e0b;
}
.sermons_left {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(251,191,36,0.2);
  color: #fbbf24;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}
.sermons_left .icon {
  width: 16px;
  height: 16px;
}
.btn_upgrade {
  background: #f59e0b;
  color: #1e3a5f;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.btn_upgrade:hover {
  background: #fbbf24;
}
.user_menu {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.user_menu:hover {
  background: rgba(255,255,255,0.1);
}
.user_menu__avatar {
  width: 36px;
  height: 36px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user_menu__avatar .icon {
  width: 20px;
  height: 20px;
  stroke: #fff;
}
.user_menu__name {
  font-size: 14px;
  color: #fff;
}
.icon__chevron {
  width: 16px;
  height: 16px;
  stroke: #94a3b8;
}
.main {
  padding: 24px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.stat_card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat_card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat_card__icon .icon {
  width: 24px;
  height: 24px;
}
.stat_card__icon--orange {
  background: rgba(249,115,22,0.1);
}
.stat_card__icon--orange .icon {
  stroke: #f97316;
}
.stat_card__icon--yellow {
  background: rgba(251,191,36,0.1);
}
.stat_card__icon--yellow .icon {
  fill: #f59e0b;
  stroke: none;
}
.stat_card__icon--green {
  background: rgba(34,197,94,0.1);
}
.stat_card__icon--green .icon {
  stroke: #22c55e;
}
.stat_card__body {
  flex: 1;
}
.stat_card__label {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 4px;
}
.stat_card__value {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.1;
}
.stat_card__sub {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}
.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.content__left,
.content__right {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
}
.empty_state {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.empty_state__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}
.empty_state__icon .icon {
  width: 64px;
  height: 64px;
  stroke: #cbd5e1;
}
.empty_state__title {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}
.empty_state__desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 280px;
}
.btn_create {
  background: #f59e0b;
  color: #1e3a5f;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn_create:hover {
  background: #fbbf24;
}
.how_it_works {
  height: 100%;
}
.how_it_works__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}
.how_it_works__header .icon {
  width: 20px;
  height: 20px;
  stroke: #f59e0b;
}
.how_it_works__steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step {
  display: flex;
  gap: 14px;
}
.step__num {
  width: 28px;
  height: 28px;
  background: #f59e0b;
  color: #1e3a5f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.step__body {
  flex: 1;
}
.step__title {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 2px;
}
.step__desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}
.quick_actions {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 24px;
}
.quick_actions__title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.quick_actions__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.action_card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.action_card:hover {
  transform: translateY(-2px);
}
.action_card--orange {
  background: linear-gradient(135deg, rgba(249,115,22,0.2) 0%, rgba(249,115,22,0.1) 100%);
}
.action_card--yellow {
  background: linear-gradient(135deg, rgba(251,191,36,0.2) 0%, rgba(251,191,36,0.1) 100%);
}
.action_card--green {
  background: linear-gradient(135deg, rgba(34,197,94,0.2) 0%, rgba(34,197,94,0.1) 100%);
}
.action_card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.action_card__icon .icon {
  width: 20px;
  height: 20px;
}
.action_card--orange .action_card__icon {
  background: rgba(249,115,22,0.3);
}
.action_card--orange .action_card__icon .icon {
  stroke: #f97316;
}
.action_card--yellow .action_card__icon {
  background: rgba(251,191,36,0.3);
}
.action_card--yellow .action_card__icon .icon {
  stroke: #fbbf24;
}
.action_card--green .action_card__icon {
  background: rgba(34,197,94,0.3);
}
.action_card--green .action_card__icon .icon {
  stroke: #22c55e;
}
.action_card__body {
  flex: 1;
}
.action_card__title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.action_card__desc {
  font-size: 12px;
  color: #94a3b8;
}
@media (max-width: 1024px) {
  .stats {
    grid-template-columns: 1fr;
  }
  .content {
    grid-template-columns: 1fr;
  }
  .quick_actions__cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 16px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .header__center {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .main {
    padding: 16px;
  }
}
