:root {
  --bg: #f3f4f8;
  --panel: #ffffff;
  --panel-soft: #f7f8fc;
  --line: #e5e8f0;
  --text: #142033;
  --muted: #667085;
  --brand: #38bdf8;
  --brand-dark: #0284c7;
  --brand-soft: #e0f2fe;
  --navy: #16223b;
  --navy-soft: #243552;
  --shadow-xl: 0 28px 80px rgba(18, 32, 51, 0.12);
  --shadow-md: 0 18px 40px rgba(18, 32, 51, 0.08);
  --website-font-body: 16px;
  --website-font-small: 12px;
  --website-font-meta: 13px;
  --website-font-label: 12px;
  --website-font-card-title: 28px;
  --website-font-page-title: 30px;
  --website-font-lead: 18px;
  --website-font-section-title: clamp(2rem, 3.8vw, 3.4rem);
  --website-font-display: clamp(2.25rem, 4.3vw, 4.2rem);
  --website-font-hero-page: clamp(1.6rem, 2.6vw, 2.35rem);
  --website-font-button: 15px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Aptos, "Segoe UI Variable", "Segoe UI", sans-serif;
  font-size: var(--website-font-body);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(45, 76, 150, 0.08), transparent 22%),
    linear-gradient(180deg, #f9fbff 0%, #f1f4f8 100%);
}

body.auth-page {
  background:
    radial-gradient(circle at top center, rgba(56, 189, 248, 0.14), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

body.auth-register-page {
  background: #f5f7fb;
}

body.auth-login-page {
  background:
    radial-gradient(circle at 18% 12%, rgba(56, 189, 248, 0.22), transparent 28%),
    linear-gradient(180deg, #f7faff 0%, #eef4fb 100%);
}

body.drawer-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  padding: 28px;
}

.marketing-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
  padding: 0 6px;
  color: var(--muted);
  font-size: var(--website-font-meta);
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

#header-auth-slot {
  display: inline-flex;
  align-items: center;
}

.header-profile {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 6px 6px;
  border: 1px solid #dbe3ef;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #344054;
  font-weight: 700;
}

.header-profile-avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  color: #ffffff;
  font-size: var(--website-font-small);
  font-weight: 700;
}

.header-profile-text {
  font-size: var(--website-font-meta);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border: 1px solid rgba(229, 232, 240, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-weight: 600;
}

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

.header-button {
  padding-inline: 18px;
}

.nav-cta {
  padding-inline: 20px;
}

.marketing-main {
  display: grid;
  gap: 30px;
  padding-top: 26px;
}

.hero-grid,
.showcase-section {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: center;
}

.hero-copy,
.platform-panel,
.showcase-stack,
.logo-strip,
.cta-banner {
  border: 1px solid rgba(229, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.hero-copy {
  padding: 42px;
  border-radius: 34px;
}

.hero-copy p {
  max-width: 620px;
}

.eyebrow-pill,
.feature-tag,
.window-tabs span,
.audience-tabs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.eyebrow-pill {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.hero-copy h1,
.section-copy h2,
.showcase-copy h2,
.cta-banner h2 {
  margin: 18px 0 16px;
  font-size: var(--website-font-display);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-copy h2,
.showcase-copy h2,
.cta-banner h2 {
  font-size: var(--website-font-section-title);
  line-height: 1.04;
}

.lead {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lead {
  max-width: 600px;
  font-size: var(--website-font-lead);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-trust-line {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  color: var(--navy-soft);
  font-weight: 700;
}

.button,
.secondary-button,
.ghost-button,
.social-button {
  appearance: none;
  border: none;
  border-radius: 16px;
  padding: 14px 18px;
  font-size: var(--website-font-button);
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.secondary-button:hover,
.ghost-button:hover,
.social-button:hover {
  transform: translateY(-1px);
}

.button {
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(56, 189, 248, 0.24);
}

.secondary-button {
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(22, 34, 59, 0.18);
}

.admin-confirm-open {
  overflow: hidden;
}

.admin-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-confirm-modal[hidden] {
  display: none !important;
}

.admin-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(4px);
}

.admin-confirm-card {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #dbe4f0;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
}

.admin-confirm-card h3,
.admin-confirm-card p {
  margin: 0;
}

.admin-confirm-card h3 {
  color: #0f172a;
  font-size: 28px;
}

.admin-confirm-card > .admin-kicker {
  margin-bottom: 10px;
}

.admin-confirm-card > p:not(.admin-kicker) {
  margin-top: 12px;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

.admin-confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.admin-confirm-danger {
  min-width: 120px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(220, 38, 38, 0.24);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-confirm-danger:hover {
  transform: translateY(-1px);
}

.ghost-button {
  background: #eef2f8;
  color: var(--text);
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.mini-stat {
  padding: 18px;
  border-radius: 22px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
}

.mini-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.mini-stat span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero-stage {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-window {
  border-radius: 32px;
  border: 1px solid rgba(225, 231, 241, 0.95);
  box-shadow: var(--shadow-xl);
}

.hero-window-main {
  position: relative;
  z-index: 2;
  width: min(100%, 610px);
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.hero-window-side {
  position: absolute;
  right: -12px;
  bottom: 22px;
  width: 250px;
  padding: 22px;
  background: linear-gradient(180deg, #132039 0%, #223759 100%);
  color: #ffffff;
}

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

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d5dbe7;
}

.window-label,
.mini-label,
.powered-by {
  color: var(--muted);
  font-size: 13px;
}

.window-tabs,
.audience-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.window-tabs {
  margin-bottom: 20px;
}

.window-tabs span,
.audience-tabs span {
  background: #eff2f8;
  color: var(--muted);
}

.window-tabs span.active,
.audience-tabs span.active {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.visual-panels {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

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

.contact-card,
.feature-card,
.mini-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
}

.visual-chart {
  min-height: 280px;
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, #f4f7fc 0%, #ffffff 100%);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-bars {
  min-height: 180px;
  display: flex;
  align-items: end;
  gap: 12px;
}

.chart-bars span {
  flex: 1;
  border-radius: 16px 16px 6px 6px;
  background: linear-gradient(180deg, #7dd3fc 0%, #38bdf8 100%);
}

.visual-chart p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-card {
  padding: 16px;
}

.contact-card.active {
  background: linear-gradient(135deg, #ebfff4 0%, #f7fff9 100%);
  border-color: rgba(56, 189, 248, 0.36);
}

.contact-card strong,
.mini-panel strong {
  display: block;
  margin-bottom: 6px;
}

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

.metric-list {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.metric-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-list span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.metric-list strong {
  font-size: 24px;
}

.logo-strip,
.cta-banner {
  border-radius: 30px;
  padding: 26px 30px;
}

.logo-strip h2 {
  margin: 10px 0 18px;
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
}

.logo-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-row span {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 700;
}

.feature-section {
  display: grid;
  gap: 24px;
}

.core-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.section-copy,
.showcase-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  color: var(--brand-dark);
  font-size: var(--website-font-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-panel {
  border-radius: 34px;
  padding: 28px;
}

.channel-card {
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(160deg, #132039 0%, #223759 100%);
  color: #ffffff;
  box-shadow: var(--shadow-xl);
}

.channel-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.channel-orbit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.channel-orbit span {
  min-height: 86px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.feature-card {
  padding: 24px;
}

.feature-card h3 {
  margin: 14px 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.feature-card p,
.mini-panel,
.helper-note,
.checkbox-line,
.status {
  color: var(--muted);
}

.auth-context-note {
  margin: 0 0 4px;
  padding: 10px 12px;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: #eff6ff;
  color: #0369a1;
  font-weight: 700;
}

.feature-tag {
  background: var(--panel-soft);
  color: var(--navy-soft);
}

.showcase-copy {
  padding-right: 10px;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
}

.benefit-list li {
  list-style: none;
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.7;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8 0%, #7dd3fc 100%);
}

.showcase-stack {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 34px;
}

.mini-panel {
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.mini-panel.emphasis {
  background: linear-gradient(135deg, #17233c 0%, #263959 100%);
  border-color: transparent;
  color: #ffffff;
}

.mini-panel.emphasis .mini-label {
  color: rgba(255, 255, 255, 0.7);
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #132039 0%, #213655 100%);
  color: #ffffff;
}

.cta-banner .eyebrow,
.cta-banner .hero-actions {
  margin-top: 0;
}

.cta-banner h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.cta-banner .ghost-button {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.auth-shell {
  display: grid;
  place-items: center;
  gap: 18px;
}

.register-shell {
  width: min(1420px, 100%);
  margin: 0 auto;
  padding-top: 8px;
}

.register-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 0 2px;
}

.register-brand-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.register-brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.register-brand-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #111827;
}

.language-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #dbe3ef;
  border-radius: 999px;
  background: #ffffff;
  color: #475467;
  cursor: pointer;
}

.language-flag {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #ffedd5 0%, #dbeafe 100%);
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
}

.language-caret {
  color: #98a2b3;
  font-size: 12px;
}

.register-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(560px, 0.98fr);
  gap: 30px;
  align-items: start;
}

.register-promo {
  padding: 138px 0 0 26px;
}

.register-promo h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.7rem, 4.4vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #111827;
}

.register-promo h1 span {
  color: var(--brand-dark);
}

.promo-list {
  display: grid;
  gap: 18px;
  margin: 38px 0 0;
  padding: 0;
}

.promo-list li {
  list-style: none;
  position: relative;
  padding-left: 34px;
  max-width: 670px;
  color: #1f2937;
  font-size: 17px;
  line-height: 1.45;
}

.promo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.94);
}

.quote-card {
  max-width: 770px;
  margin-top: 30px;
  padding: 18px 20px 16px;
  border-radius: 14px;
  background: #eef9ff;
  color: #1f2937;
}

.quote-card p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.45;
}

.quote-card strong {
  color: #7c8a97;
  font-size: 18px;
}

.logo-proof {
  margin-top: 28px;
}

.logo-proof p {
  margin: 0 0 18px;
  color: #344054;
  font-size: 16px;
}

.logo-line {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo-line span {
  color: #111827;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.register-card {
  width: min(100%, 720px);
  padding: 38px 36px 30px;
  border-radius: 26px;
  border-color: #eceff5;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
}

.login-card {
  width: min(100%, 680px);
  padding-bottom: 24px;
}

.register-card-head {
  margin-bottom: 18px;
}

.register-card-head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.register-card-head p {
  margin: 8px 0 0;
  color: #8b96a6;
  font-size: 16px;
}

.login-card-head {
  margin-bottom: 20px;
}

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

.register-social-button {
  min-height: 52px;
  border-radius: 14px;
  font-size: 15px;
}

.register-divider {
  margin: 18px 0;
  color: #9aa4b2;
  font-size: 14px;
}

.auth-brand {
  margin-top: 10px;
  font-size: 18px;
}

.auth-card {
  width: min(100%, 430px);
  padding: 32px 28px 24px;
  border: 1px solid #e4e8f1;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.auth-card-compact {
  width: min(100%, 430px);
}

.auth-heading {
  text-align: center;
  margin-bottom: 18px;
}

.auth-kicker {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  font-weight: 500;
}

.auth-heading h1 {
  margin: 6px 0 0;
  font-size: clamp(2.2rem, 5vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.auth-subcopy {
  margin: 10px 0 0;
  font-size: 14px;
}

.social-stack {
  display: grid;
  gap: 10px;
  max-width: 100%;
  margin: 0 auto;
}

.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  background: #ffffff;
  color: var(--text);
  border: 1px solid #dde3ed;
  box-shadow: none;
  font-weight: 600;
}

.social-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

.social-icon-ommify {
  background: linear-gradient(135deg, #38bdf8 0%, #7dd3fc 100%);
}

.social-icon-google {
  background: #f04438;
}

.social-icon-microsoft {
  background: #2563eb;
}

.social-icon-facebook {
  background: #1877f2;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: #98a2b3;
  font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.auth-form {
  margin: 0;
  max-width: 100%;
  margin-inline: auto;
}

.register-form {
  gap: 10px;
}

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

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

.field-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.field-label {
  display: inline-block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #111827;
}

.input {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid #dbe3ef;
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.select-input {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%), linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position: calc(100% - 28px) calc(50% - 3px), calc(100% - 20px) calc(50% - 3px);
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
  padding-right: 48px;
}

.ommify-empty-state {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  color: #142033;
}

.ommify-empty-state__icon {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 8px;
}

.ommify-empty-state__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.ommify-empty-state__description {
  margin: 8px auto 0;
  max-width: 760px;
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.ommify-empty-state__action {
  margin-top: 18px;
}

.select-input.country-code-select {
  padding-left: 44px;
  background-image: var(--country-flag-url, none), linear-gradient(45deg, transparent 50%, #6b7280 50%), linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position: 16px 50%, calc(100% - 28px) calc(50% - 3px), calc(100% - 20px) calc(50% - 3px);
  background-size: 22px 16px, 8px 8px, 8px 8px;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

.country-code-dropdown {
  display: inline-block;
  position: relative;
  width: 100%;
}

.country-code-dropdown__button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  cursor: pointer;
}

.country-code-dropdown__button.select-input,
.country-code-dropdown__button.phone-country-select {
  font-size: 14px;
  font-weight: 700;
  padding: 0 12px;
}

.country-code-dropdown__value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.country-code-dropdown__flag {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  object-fit: cover;
  flex: 0 0 auto;
}

.country-code-dropdown__code {
  font-weight: 700;
  color: #111827;
}

.country-code-dropdown__dial {
  color: #667085;
  font-weight: 700;
}

.country-code-dropdown__menu {
  position: fixed;
  z-index: 4000;
  overflow: auto;
  padding: 6px 0;
  border-radius: 14px;
  border: 1px solid #dbe3ef;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.14);
  font-size: 14px;
}

.country-code-dropdown__group {
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #667085;
  border-bottom: 1px solid #eef2f6;
  margin: -6px 0 6px;
  background: #ffffff;
}

.country-code-dropdown__letter {
  padding: 8px 14px 6px;
  font-size: 12px;
  font-weight: 700;
  color: #98a2b3;
}

.country-code-dropdown__option {
  width: 100%;
  border: none;
  background: transparent;
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.country-code-dropdown__option:hover,
.country-code-dropdown__option:focus-visible {
  background: #f2f4f7;
  outline: none;
}

.country-code-dropdown__option.is-selected {
  background: #eef6ff;
}

.country-code-dropdown__option-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}

.country-code-dropdown__name {
  font-weight: 600;
  color: #101828;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.country-code-dropdown__dialcode {
  font-weight: 600;
  color: #667085;
  flex: 0 0 auto;
}

.country-code-dropdown__check {
  margin-left: auto;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  opacity: 0;
  font-weight: 700;
}

.country-code-dropdown__option.is-selected .country-code-dropdown__check {
  opacity: 1;
}

.password-field {
  position: relative;
}

.phone-field {
  display: flex;
  align-items: center;
  min-height: 50px;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.phone-country-select {
  appearance: none;
  align-self: stretch;
  min-height: 50px;
  width: 142px;
  padding: 0 34px 0 14px;
  border-right: 1px solid #e5e7eb;
  border-top: none;
  border-bottom: none;
  border-left: none;
  background-color: #ffffff;
  background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%), linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position: calc(100% - 19px) calc(50% - 3px), calc(100% - 13px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  color: #475467;
  font: inherit;
  font-weight: 700;
  outline: none;
  white-space: nowrap;
}

.phone-country-select.country-code-select {
  padding-left: 42px;
  background-image: var(--country-flag-url, none), linear-gradient(45deg, transparent 50%, #6b7280 50%), linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position: 14px 50%, calc(100% - 19px) calc(50% - 3px), calc(100% - 13px) calc(50% - 3px);
  background-size: 22px 16px, 6px 6px, 6px 6px;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

.phone-country-select:focus {
  box-shadow: inset 0 0 0 2px rgba(14, 165, 233, 0.18);
}

.phone-input {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.phone-input:focus {
  box-shadow: none;
}

.input-with-action {
  padding-right: 62px;
}

.field-action {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  padding: 0;
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.field-action-eye {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
}

.eye-icon {
  position: relative;
  width: 18px;
  height: 12px;
  border: 2px solid #7b8492;
  border-radius: 999px;
}

.eye-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #7b8492;
  transform: translate(-50%, -50%);
}

.input:focus {
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.checkbox-line input {
  margin-top: 3px;
}

.auth-submit {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  margin-top: 6px;
  font-size: 15px;
}

.register-submit {
  margin-top: 2px;
  min-height: 52px;
}

.login-switch {
  margin-top: 14px;
}

.login-powered {
  margin-top: 10px;
}

.status {
  min-height: 1.5rem;
  margin: 0;
  font-size: 13px;
}

.status.is-error {
  padding: 12px 14px;
  border: 1px solid #fecaca;
  border-radius: 14px;
  background: #fef2f2;
  color: #b91c1c;
  font-weight: 700;
}

.status.is-success {
  padding: 12px 14px;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  background: #f0fdf4;
  color: #166534;
  font-weight: 700;
}

.invite-accept-card {
  width: min(100%, 760px);
}

.invite-context-note {
  margin-bottom: 12px;
}

.phone-country-text {
  width: 110px;
  border: none;
  border-right: 1px solid #e5e7eb;
  border-radius: 0;
  box-shadow: none;
}

.phone-country-text:focus {
  box-shadow: none;
}

.legal-panel {
  margin-top: 4px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f7f8fb;
  color: #475467;
  font-size: 13px;
  line-height: 1.55;
}

.auth-footer-block {
  padding-top: 16px;
  text-align: center;
}

.register-switch {
  margin: 0;
}

.register-login-link {
  margin: 6px 0 0;
  font-size: 15px;
  font-weight: 700;
}

.register-copyright {
  margin: 10px 0 0;
  color: #98a2b3;
  font-size: 12px;
}

.text-link {
  color: var(--navy-soft);
  font-weight: 700;
}

.auth-switch,
.legal-copy,
.powered-by {
  text-align: center;
}

.auth-switch {
  margin: 16px 0 8px;
}

.legal-copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.powered-by {
  margin: 16px 0 0;
  font-size: 12px;
}

.login-shell {
  width: min(1340px, 100%);
  margin: 0 auto;
  padding-top: 18px;
}

.login-topbar {
  margin-bottom: 34px;
}

.login-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  min-height: calc(100vh - 146px);
}

.login-promo {
  position: relative;
  max-width: 680px;
  padding: 20px 0 24px 28px;
}

.login-promo::before {
  content: "";
  position: absolute;
  inset: 42% auto auto 0;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.16);
  filter: blur(18px);
  z-index: -1;
}

.login-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 13px;
  font-weight: 700;
}

.login-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #38bdf8;
}

.login-promo h1 {
  max-width: 650px;
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.login-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: #526173;
  font-size: 18px;
  line-height: 1.65;
}

.login-preview-card {
  width: min(560px, 100%);
  margin-top: 38px;
  padding: 18px;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
}

.login-preview-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.login-preview-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #bae6fd;
}

.login-preview-message {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ecfeff 0%, #ffffff 100%);
}

.login-preview-message strong {
  display: block;
  color: #0f172a;
  font-size: 18px;
  margin-bottom: 8px;
}

.login-preview-message p {
  margin: 0;
  color: #526173;
  line-height: 1.55;
}

.login-preview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.login-preview-stats div {
  padding: 16px;
  border-radius: 18px;
  background: #f8fbff;
}

.login-preview-stats b,
.login-preview-stats span {
  display: block;
}

.login-preview-stats b {
  color: #0284c7;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.login-preview-stats span {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.login-card {
  width: min(100%, 520px);
  padding: 42px 40px 30px;
  border-radius: 24px;
  border: 1px solid #e4e8f1;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
}

.login-card-head {
  margin-bottom: 24px;
}

.login-card-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.login-card-head p {
  margin: 9px 0 0;
  color: #7b8794;
  font-size: 16px;
  line-height: 1.5;
}

.login-social-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.login-social-button {
  min-height: 52px;
  border-radius: 12px;
  font-size: 14px;
}

.login-divider {
  margin: 22px 0;
}

.login-form {
  gap: 18px;
}

.login-input {
  min-height: 54px;
  border-radius: 10px;
}

.login-footer-block {
  padding-top: 12px;
  text-align: center;
}

.login-footer-block .auth-switch {
  margin-bottom: 0;
  color: #7b8794;
}

.login-canvas {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 126px);
  padding: 34px 0 44px;
}

.login-card-centered {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  min-height: 520px;
  padding: 46px 40px 36px;
  border-radius: 0;
  border: none;
  background: #ffffff;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.08);
}

.login-card-head-centered {
  text-align: left;
  width: min(620px, 100%);
  margin: 0 auto 22px;
}

.login-card-head-centered h2 {
  font-size: 28px;
}

.login-form-screenshot {
  width: min(620px, 100%);
  gap: 26px;
}

.login-field-label {
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 700;
}

.login-form-screenshot .field-meta {
  margin-bottom: 10px;
}

.login-input {
  min-height: 58px;
  border-radius: 6px;
  border-color: #dfe5ef;
  font-size: 20px;
}

.login-submit {
  min-height: 52px;
  margin-top: 0;
  border-radius: 8px;
}

.login-google-button {
  width: min(620px, 100%);
  min-height: 52px;
  margin: 16px auto 0;
  border-radius: 8px;
  border-color: #0f172a;
  color: #344054;
  font-size: 18px;
}

.login-forgot-link {
  font-size: 14px;
}

.login-otp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: max-content;
  margin: 44px auto 0;
  border: none;
  background: transparent;
  color: #344054;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.login-otp-icon {
  position: relative;
  width: 22px;
  height: 18px;
  border: 2px solid #667085;
  border-radius: 5px;
}

.login-otp-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 4px;
  height: 8px;
  border-bottom: 2px solid #667085;
  border-left: 2px solid #667085;
  transform: rotate(-45deg);
}

.login-card-centered .login-switch {
  margin: 30px 0 0;
  color: #7b8794;
  font-size: 20px;
  text-align: center;
}

.login-store-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.store-badge {
  display: grid;
  align-content: center;
  min-width: 158px;
  min-height: 54px;
  padding: 8px 18px;
  border-radius: 8px;
  background: #050505;
  color: #ffffff;
  line-height: 1.05;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.16);
}

.store-badge span {
  font-size: 10px;
}

.store-badge strong {
  font-size: 18px;
}

.login-copyright {
  margin: 24px 0 0;
  text-align: center;
  color: #98a2b3;
  font-size: 13px;
}

.connect-page {
  /* Public website theme:
     Change these tokens to refresh the connected website look without
     hunting down individual accent colors across the switch-plan UI. */
  --website-accent: #38bdf8;
  --website-accent-strong: #0ea5e9;
  --website-accent-deep: #0369a1;
  --website-accent-soft: #e0f2fe;
  --website-accent-soft-alt: #f0f9ff;
  --website-accent-border: #7dd3fc;
  --website-accent-border-strong: #38bdf8;
  --website-accent-text: #075985;
  --website-accent-text-strong: #0c4a6e;
  --website-accent-glow: rgba(56, 189, 248, 0.18);
  --website-accent-glow-soft: rgba(56, 189, 248, 0.12);
  --website-accent-surface: rgba(56, 189, 248, 0.08);
  --website-accent-gradient: linear-gradient(135deg, #7dd3fc 0%, #0ea5e9 100%);
  --website-accent-on-dark: #7dd3fc;
  background: #f7f9fc;
}

.connect-shell {
  min-height: 100vh;
  background: #f7f9fc;
}

.trial-banner {
  min-height: 64px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #1f1f1f;
  color: #ffffff;
}

.trial-banner p {
  margin: 0;
  font-size: 16px;
}

.trial-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.connect-banner-button,
.buy-banner-button,
.book-demo-pill,
.connect-primary-button {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: var(--website-font-button);
  font-weight: 700;
  cursor: pointer;
}

.connect-banner-button,
.connect-primary-button {
  background: var(--website-accent-gradient);
  color: #ffffff;
}

.buy-banner-button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--website-accent-on-dark);
}

.connect-layout {
  display: grid;
  grid-template-columns: 264px 1fr;
  height: calc(100vh - 64px);
  min-height: 0;
  overflow: hidden;
  transition: grid-template-columns 180ms ease;
}

.connect-layout.sidebar-collapsed {
  grid-template-columns: 64px 1fr;
}

.connect-sidebar {
  border-right: 1px solid #e5e7eb;
  background: #ffffff;
  min-height: 0;
  overflow: hidden;
}

.profile-left-menu {
  display: grid;
  grid-template-columns: 80px 250px;
  grid-template-rows: 64px 1fr;
  align-items: stretch;
  padding: 0;
  height: 100%;
  min-height: 0;
}

.profile-left-menu.collapsed {
  grid-template-columns: 80px 0;
}

.profile-sidebar-brand {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.profile-icon-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
  border-right: 1px solid #e5e7eb;
  background: #f8fafc;
}

.profile-rail-bottom {
  width: 100%;
  margin-top: auto;
  padding: 14px 0 18px;
  display: grid;
  place-items: center;
  border-top: 1px solid #e5e7eb;
}

.profile-icon-rail a {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #4b5563;
  text-decoration: none;
  position: relative;
}

.profile-icon-rail a::after,
.profile-sidebar-toggle::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  display: none;
  white-space: nowrap;
  border-radius: 8px;
  padding: 7px 10px;
  background: #2f2f2f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.profile-left-menu.collapsed .profile-icon-rail a:hover::after,
.profile-left-menu.collapsed .profile-sidebar-toggle:hover::after {
  display: block;
}

.profile-icon-rail a:hover,
.profile-icon-rail a.active {
  background: var(--website-accent-soft-alt);
  color: var(--website-accent-strong);
}

.profile-nav-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 24px;
  color: currentColor;
}

.profile-nav-icon::before,
.profile-nav-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.icon-lead::before {
  inset: 3px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.icon-lead::after {
  inset: 8px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.icon-campaign::before {
  left: 3px;
  top: 8px;
  width: 15px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 2px 9px 9px 2px;
  transform: skewY(-14deg);
}

.icon-campaign::after {
  left: 7px;
  bottom: 3px;
  width: 7px;
  height: 9px;
  border-left: 2px solid currentColor;
  transform: rotate(-14deg);
}

.icon-inbox::before {
  inset: 5px 3px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-inbox::after {
  left: 5px;
  right: 5px;
  top: 11px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.icon-contacts::before {
  left: 3px;
  top: 5px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow: 10px 0 0 -2px #f8fafc, 10px 0 0 0 currentColor;
}

.icon-contacts::after {
  left: 3px;
  bottom: 4px;
  width: 18px;
  height: 8px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.icon-astra::before {
  inset: 3px;
  border: 2px solid currentColor;
  transform: rotate(30deg);
}

.icon-astra::after {
  left: 11px;
  top: 3px;
  width: 2px;
  height: 18px;
  background: currentColor;
}

.icon-automations::before {
  left: 3px;
  top: 10px;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow: 12px -7px 0 -2px #f8fafc, 12px -7px 0 0 currentColor, 12px 7px 0 -2px #f8fafc, 12px 7px 0 0 currentColor;
}

.icon-automations::after {
  left: 9px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.icon-commerce::before {
  left: 4px;
  top: 6px;
  width: 15px;
  height: 10px;
  border: 2px solid currentColor;
  border-top: 0;
  transform: skewX(-10deg);
}

.icon-commerce::after {
  left: 7px;
  bottom: 3px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 10px 0 0 currentColor;
}

.icon-ads::before {
  left: 5px;
  top: 3px;
  width: 14px;
  height: 18px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: skewX(-18deg);
}

.icon-ads::after {
  left: 8px;
  top: 11px;
  width: 9px;
  border-top: 2px solid currentColor;
}

.icon-analytics::before {
  left: 4px;
  bottom: 4px;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.icon-analytics::after {
  left: 12px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: #f8fafc;
}

.icon-connectors::before {
  left: 3px;
  top: 10px;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow: 12px 0 0 -2px #f8fafc, 12px 0 0 0 currentColor;
}

.icon-connectors::after {
  left: 9px;
  top: 12px;
  width: 8px;
  border-top: 2px solid currentColor;
}

.icon-settings::before {
  inset: 6px;
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow: 0 -7px 0 -2px currentColor, 0 7px 0 -2px currentColor, 7px 0 0 -2px currentColor, -7px 0 0 -2px currentColor;
}

.icon-settings::after {
  inset: 10px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.collapse-icon::before {
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.collapse-icon::after {
  left: 8px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.profile-menu-panel {
  min-width: 0;
  padding: 18px 0 30px;
  background: #ffffff;
  overflow: hidden;
}

.connect-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.connect-brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.connect-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.connect-brand-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #111827;
}

.profile-sidebar-toggle {
  width: 52px;
  min-height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  background: #ffffff;
  color: #4b5563;
  cursor: pointer;
  position: relative;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.profile-sidebar-toggle:hover {
  border-color: var(--website-accent-border);
  background: var(--website-accent-soft-alt);
  color: var(--website-accent-strong);
}

.profile-sidebar-toggle-label {
  display: none;
}

.profile-left-menu.collapsed .profile-menu-panel,
.profile-left-menu.collapsed .connect-brand-text {
  display: none;
}

.profile-left-menu.collapsed .profile-sidebar-brand {
  padding-inline: 16px;
}

.profile-left-menu.collapsed .collapse-icon {
  transform: rotate(180deg);
}

.connect-nav {
  display: grid;
  gap: 2px;
}

.connect-nav > a,
.connect-nav-group a,
.connect-nav-trigger {
  padding: 14px 22px;
}

.connect-nav > a,
.connect-nav-group a {
  color: #1f2937;
  font-size: 16px;
}

.connect-nav > a.active,
.connect-nav-group a.active {
  color: var(--website-accent-strong);
  font-weight: 700;
}

.connect-nav-group {
  margin-top: 8px;
  background: transparent;
  border-left: 4px solid transparent;
}

.connect-nav-group.active {
  background: var(--website-accent-soft-alt);
  border-left-color: var(--website-accent);
}

.connect-nav-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: transparent;
  color: #1f2937;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.connect-nav-group.active .connect-nav-trigger {
  color: var(--website-accent-strong);
}

.connect-nav-chevron {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.connect-nav-group:not(.open) .connect-nav-chevron {
  transform: rotate(-45deg);
}

.connect-nav-children {
  display: grid;
  margin: 0 0 8px 22px;
  padding-left: 16px;
  border-left: 2px solid #d1d5db;
}

.connect-nav-group:not(.open) .connect-nav-children {
  display: none;
}

.connect-nav-children a {
  padding: 12px 18px;
}

.connect-nav-group a {
  display: block;
  padding-left: 34px;
}

.connect-nav-group a.active {
  color: var(--website-accent-strong);
  background: var(--website-accent-surface);
}

/* Row-based profile menu. Icons and text share one row so expanded submenus stay aligned. */
.profile-left-menu {
  grid-template-columns: 64px 200px;
  grid-template-rows: 72px minmax(0, 1fr);
  overflow: hidden;
  height: 100%;
  min-height: 0;
}

.profile-left-menu.collapsed {
  grid-template-columns: 64px 0;
}

.profile-sidebar-brand,
.profile-menu-list {
  grid-column: 1 / -1;
}

.profile-sidebar-brand {
  min-height: 72px;
  flex: 0 0 72px;
}

.profile-menu-list {
  min-height: 0;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: #ffffff;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.profile-menu-list::-webkit-scrollbar {
  width: 8px;
}

.profile-menu-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #cbd5e1;
}

.profile-menu-list::-webkit-scrollbar-track {
  background: transparent;
}

.profile-menu-row {
  min-height: 48px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  width: 100%;
  border: 0;
  background: transparent;
  color: #1f2937;
  text-decoration: none;
  font: inherit;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.profile-menu-icon-cell {
  width: 64px;
  height: 48px;
  display: grid;
  place-items: center;
  border-right: 1px solid #e5e7eb;
  background: #f8fafc;
}

.profile-menu-icon {
  position: relative;
  width: 22px;
  height: 22px;
  display: block;
  color: #4b5563;
}

svg.profile-menu-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}

.profile-menu-icon::before,
.profile-menu-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.profile-menu-row:hover .profile-menu-icon-cell,
.profile-menu-row.active .profile-menu-icon-cell,
.profile-menu-group.active > .profile-menu-row .profile-menu-icon-cell {
  background: #e5e7eb;
}

.profile-menu-row.active .profile-menu-icon,
.profile-menu-group.active > .profile-menu-row .profile-menu-icon,
.profile-menu-row:hover .profile-menu-icon {
  color: var(--website-accent-strong);
}

.profile-menu-text {
  min-width: 0;
  justify-self: stretch;
  padding: 0 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.profile-menu-trigger .profile-menu-text {
  padding-left: 18px;
  padding-right: 8px;
}

.profile-menu-row.active .profile-menu-text,
.profile-menu-group.active > .profile-menu-row .profile-menu-text {
  color: var(--website-accent-strong);
  font-weight: 700;
}

.profile-menu-trigger {
  grid-template-columns: 64px minmax(0, 1fr) 34px;
  padding: 0;
}

.profile-menu-chevron {
  justify-self: center;
  width: 9px;
  height: 9px;
  margin-right: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.profile-menu-group:not(.open) .profile-menu-chevron {
  transform: rotate(-45deg);
}

.profile-submenu {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
}

.profile-menu-group:not(.open) .profile-submenu {
  display: none;
}

.profile-submenu-rail {
  display: block;
  border-right: 1px solid #e5e7eb;
  background: #f8fafc;
  position: relative;
}

.profile-submenu-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 12px;
  right: 31px;
  width: 2px;
  background: #d1d5db;
}

.profile-submenu-links {
  display: grid;
  gap: 4px;
  padding: 4px 16px 12px 24px;
}

.profile-submenu-links a {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 14px;
  color: #111827;
  text-decoration: none;
  font-size: 16px;
}

.profile-submenu-links a:hover,
.profile-submenu-links a.active {
  background: #e5e7eb;
  color: var(--website-accent-strong);
  font-weight: 700;
}

.profile-menu-list > .profile-sidebar-toggle {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  margin-top: 12px;
  border-top: 1px solid #e5e7eb;
}

.profile-menu-list > .profile-sidebar-toggle:hover {
  background: transparent;
}

.profile-menu-list > .profile-sidebar-toggle .profile-sidebar-toggle-label {
  display: inline;
}

.profile-left-menu.collapsed .profile-menu-row {
  grid-template-columns: 64px 0;
}

.profile-left-menu.collapsed .profile-menu-text,
.profile-left-menu.collapsed .profile-menu-chevron,
.profile-left-menu.collapsed .profile-submenu,
.profile-left-menu.collapsed .connect-brand-text {
  display: none;
}

.profile-left-menu.collapsed .profile-menu-row::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 74px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: none;
  white-space: nowrap;
  border-radius: 8px;
  padding: 7px 10px;
  background: #2f2f2f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.profile-left-menu.collapsed .profile-menu-row:hover::after {
  display: block;
}

.profile-left-menu.collapsed .icon-collapse {
  transform: rotate(180deg);
}

.connect-main {
  display: grid;
  grid-template-rows: 64px minmax(0, 1fr);
  padding: 0;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: #f7f9fc;
}

.profile-page-scroll {
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 24px;
  background: #f7f9fc;
  overscroll-behavior: contain;
}

.app-topbar,
.connect-topbar {
  min-height: 64px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.app-topbar-spacer,
.connect-topbar-spacer {
  flex: 1;
}

.app-topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quickstart-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
}

.quickstart-pill strong {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 3px solid var(--website-accent-border);
}

.book-demo-pill {
  background: #ffffff;
  border-color: var(--website-accent-border);
  color: var(--website-accent-strong);
}

.connect-user-chip {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
}

.connect-user-button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.connect-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.connect-card {
  margin: 18px;
  padding: 28px 30px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
}

.connect-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
}

.connect-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.connect-title-row h1 {
  margin: 0;
  font-size: var(--website-font-page-title);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: #dbeafe;
  color: #2563eb;
  font-size: 16px;
  font-weight: 700;
}

.connect-help-links {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 10px;
}

.connect-help-links a {
  color: #2b8ef7;
  font-size: 16px;
  font-weight: 700;
}

.connect-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 56px;
  align-items: start;
}

.connect-benefits {
  padding: 122px 0 0 220px;
}

.connect-benefits h2 {
  max-width: 420px;
  margin: 0 0 20px;
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.connect-benefits ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.connect-benefits li {
  list-style: none;
  position: relative;
  padding-left: 34px;
  color: #334155;
  font-size: 18px;
  line-height: 1.45;
}

.connect-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--website-accent-gradient);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.94);
}

.connect-benefits p {
  max-width: 420px;
  margin: 46px 0 0;
  color: #334155;
  font-size: 18px;
  line-height: 1.5;
}

.connect-sidecard {
  padding: 28px 30px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.connect-sidecard-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.mini-channel {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
}

.mini-channel-wa {
  background: var(--website-accent-soft);
  color: var(--website-accent-strong);
}

.mini-channel-meta {
  background: #eff6ff;
  color: #2563eb;
}

.mini-channel-arrow {
  color: #9ca3af;
  font-size: 28px;
  font-weight: 700;
}

.connect-sidecard h3 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.connect-sidecard p {
  margin: 0;
  color: #334155;
  font-size: 18px;
  line-height: 1.5;
}

.detail-check-card {
  margin-top: 52px;
  padding: 18px 18px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
}

.detail-check-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.detail-check-card p {
  font-size: 16px;
  line-height: 1.4;
}

.connect-primary-button {
  width: 100%;
  margin-top: 44px;
  font-size: 18px;
}

.switch-plan-alert {
  display: block;
  margin: 0;
  padding: 14px 22px;
  border-top: 1px solid #f8e7a7;
  border-bottom: 1px solid #f8e7a7;
  background: #fff7d6;
  color: #745600;
  font-size: 15px;
  line-height: 1.5;
}

.switch-plan-alert a {
  color: #745600;
  font-weight: 700;
  text-decoration: underline;
}

.switch-plan-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 18px;
  padding: 34px 38px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 20%, var(--website-accent-glow), transparent 24%),
    #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.switch-plan-hero h1 {
  margin: 0;
  color: #0f172a;
  font-size: var(--website-font-hero-page);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.switch-plan-client-card {
  min-width: 170px;
  align-self: start;
  padding: 18px;
  border: 1px solid var(--website-accent-border);
  border-radius: 20px;
  background: var(--website-accent-soft-alt);
}

.switch-plan-client-card span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.switch-plan-client-card strong {
  display: block;
  margin-top: 6px;
  color: var(--website-accent-text-strong);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.switch-plan-billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 10px 18px 18px;
  color: #64748b;
  font-size: 16px;
}

.switch-plan-billing-toggle span.active {
  color: #0f172a;
  font-weight: 700;
}

.switch-plan-billing-toggle strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid var(--website-accent-border);
  border-radius: 6px;
  color: var(--website-accent-strong);
  font-size: 13px;
  font-weight: 700;
}

.switch-plan-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
}

.switch-plan-toggle span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.25);
  transition: transform 0.18s ease;
}

.switch-plan-toggle.is-yearly {
  background: var(--website-accent-strong);
}

.switch-plan-toggle.is-yearly span {
  transform: translateX(20px);
}

.switch-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 18px;
}

.switch-plan-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 720px;
  padding: 28px 30px;
  border: 1px solid #dbe7f1;
  border-radius: 26px;
  background:
    linear-gradient(180deg, var(--plan-theme, #e0f2fe) 0%, #ffffff 34%);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
}

.switch-plan-card-head {
  min-height: 150px;
}

.switch-plan-card h2 {
  margin: 16px 0 10px;
  color: #0f172a;
  font-size: var(--website-font-card-title);
  letter-spacing: -0.05em;
}

.switch-plan-card p {
  margin: 0;
  color: #475569;
  line-height: 1.55;
}

.switch-plan-badge,
.switch-plan-highlight {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid rgba(15, 23, 42, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
}

.switch-plan-price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.switch-plan-price strong {
  color: #0f172a;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.switch-plan-price span,
.switch-plan-yearly {
  color: #475569;
  font-size: 14px;
}

.switch-plan-seats {
  display: grid;
  gap: 8px;
  color: #0f172a;
}

.switch-plan-seats span {
  color: #0b7bdc;
  font-size: 14px;
}

.switch-plan-button {
  margin-top: 0;
  min-height: 52px;
  font-size: 17px;
}

.switch-plan-purchase-controls {
  display: flex;
  align-items: end;
  gap: 16px;
  margin: 16px 18px 0;
}

.switch-plan-purchase-controls p {
  margin: 0;
  color: #51627d;
  font-size: 14px;
  line-height: 1.6;
}

.switch-plan-purchase-controls .status {
  margin: 0;
}

.switch-plan-modal-open {
  overflow: hidden;
}

.switch-plan-modal {
  position: fixed;
  inset: 0;
  z-index: 1700;
  display: grid;
  place-items: center;
  padding: 24px;
}

.switch-plan-modal[hidden] {
  display: none !important;
}

.switch-plan-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.56);
  backdrop-filter: blur(6px);
}

.switch-plan-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid #dbe7f1;
  background:
    radial-gradient(circle at top right, var(--website-accent-glow-soft), transparent 28%),
    #ffffff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.28);
}

.switch-plan-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #eff6ff;
  color: #0f172a;
  font-size: 28px;
  cursor: pointer;
}

.switch-plan-modal-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.switch-plan-modal-logo {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.switch-plan-modal-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.switch-plan-modal-brand strong,
.switch-plan-modal-brand span {
  display: block;
}

.switch-plan-modal-brand strong {
  color: #0f172a;
  font-size: 18px;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.switch-plan-modal-brand span {
  color: var(--website-accent-strong);
  font-size: 15px;
  font-weight: 700;
}

.switch-plan-modal-order h2 {
  margin: 6px 0 0;
  color: #0f172a;
  font-size: 30px;
  letter-spacing: -0.06em;
}

.switch-plan-modal-plan-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 18px;
}

.switch-plan-modal-plan-price strong {
  color: #0f172a;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.switch-plan-modal-plan-price span,
.switch-plan-modal-plan-name {
  color: #475569;
  font-size: 15px;
}

.switch-plan-modal-plan-name {
  margin: 8px 0 0;
}

.switch-plan-modal-coupon,
.switch-plan-modal-section {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #e5e7eb;
}

.switch-plan-modal-coupon label,
.switch-plan-modal-section-head h3,
.switch-plan-modal-section-head span {
  margin: 0;
}

.switch-plan-modal-coupon label {
  display: block;
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
}

.switch-plan-modal-coupon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  margin-top: 10px;
}

.switch-plan-modal-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.switch-plan-modal-section-head h3 {
  color: #0f172a;
  font-size: 16px;
}

.switch-plan-modal-section-head span {
  color: #64748b;
  font-size: 13px;
}

.switch-plan-addon-card {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #edf2f7;
}

.switch-plan-addon-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.switch-plan-addon-card strong,
.switch-plan-addon-card p,
.switch-plan-addon-card small {
  display: block;
}

.switch-plan-addon-card strong {
  color: #0f172a;
  font-size: 16px;
}

.switch-plan-addon-card p,
.switch-plan-addon-card small {
  margin-top: 4px;
  color: #64748b;
  line-height: 1.45;
}

.switch-plan-addon-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.switch-plan-addon-actions span {
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
}

.switch-plan-addon-card.is-selected {
  border-color: var(--website-accent-border);
}

.switch-plan-addon-empty {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.switch-plan-modal-items {
  display: grid;
  gap: 12px;
}

.switch-plan-modal-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #edf2f7;
}

.switch-plan-modal-item:last-child {
  border-bottom: 0;
}

.switch-plan-modal-item strong,
.switch-plan-modal-item small {
  display: block;
}

.switch-plan-modal-item strong {
  color: #0f172a;
  font-size: 15px;
}

.switch-plan-modal-item small {
  margin-top: 4px;
  color: #64748b;
  font-size: 13px;
}

.switch-plan-modal-item span {
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.switch-plan-modal-totals {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.switch-plan-modal-totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.switch-plan-modal-totals span {
  color: #64748b;
  font-size: 14px;
}

.switch-plan-modal-totals strong {
  color: #0f172a;
  font-size: 15px;
}

.switch-plan-modal-grand-total strong {
  font-size: 24px;
  letter-spacing: -0.04em;
}

.switch-plan-modal-footer {
  margin-top: 24px;
}

.switch-plan-modal-footer .button {
  width: 100%;
}

.switch-plan-modal-footer .status,
.switch-plan-modal-coupon .status {
  margin: 12px 0 0;
}

.switch-plan-section {
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
}

.switch-plan-section h3 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 16px;
}

.switch-plan-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.switch-plan-section li {
  color: #0f172a;
  font-size: 14px;
  line-height: 1.45;
}

.switch-plan-empty {
  grid-column: 1 / -1;
}

.switch-plan-compare-link {
  margin: 12px 18px 24px;
  text-align: center;
}

.switch-plan-compare-button {
  min-height: 48px;
  padding-inline: 20px;
  border: 1px solid #bfdbfe;
  background: #ffffff;
  color: #1d4ed8;
  font-weight: 700;
}

.switch-plan-detail-view {
  display: grid;
  gap: 24px;
  margin: 18px;
  min-height: 0;
}

.switch-plan-detail-top {
  display: grid;
  gap: 24px;
}

.switch-plan-detail-body {
  display: grid;
  gap: 24px;
  min-height: 0;
}

#switch-plan-summary-view[hidden],
#switch-plan-detail-view[hidden],
#switch-plan-empty-state[hidden],
#switch-plan-detail-empty-state[hidden],
#plan-detail-comparison[hidden] {
  display: none !important;
}

.switch-plan-detail-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.switch-plan-detail-head h2 {
  margin: 6px 0 0;
  color: #0f172a;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  letter-spacing: -0.05em;
}

.switch-plan-back-link {
  border: 0;
  background: transparent;
  color: #2563eb;
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.switch-plan-detail-intro strong {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--website-accent-border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--website-accent-strong);
  font-size: 15px;
  font-weight: 700;
}

.switch-plan-detail-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.switch-plan-detail-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 260px;
  padding: 24px 26px;
  border: 1px solid #dbe7f1;
  border-radius: 24px;
  background:
    linear-gradient(180deg, var(--plan-theme, #e0f2fe) 0%, #ffffff 28%);
}

.profile-page-scroll.switch-plan-detail-active .switch-plan-purchase-controls {
  display: none;
}

@media (min-width: 1024px) {
  .profile-page-scroll.switch-plan-detail-active.switch-plan-detail-split-scroll .switch-plan-detail-view {
    gap: 18px;
  }

  .profile-page-scroll.switch-plan-detail-active.switch-plan-detail-split-scroll .switch-plan-billing-toggle {
    position: sticky;
    top: 0;
    z-index: 14;
    margin: 0 18px 18px;
    padding: 14px 18px;
    background: rgba(247, 249, 252, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(219, 231, 241, 0.9);
  }

  .profile-page-scroll.switch-plan-detail-active.switch-plan-detail-split-scroll .switch-plan-detail-top {
    position: sticky;
    top: 78px;
    z-index: 12;
    padding: 8px 0 18px;
    background:
      linear-gradient(180deg, rgba(247, 249, 252, 1) 0%, rgba(247, 249, 252, 0.98) 84%, rgba(247, 249, 252, 0.92) 100%);
  }

  .profile-page-scroll.switch-plan-detail-active.switch-plan-detail-split-scroll .switch-plan-detail-body {
    max-height: var(--switch-plan-detail-body-max-height, none);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
    scrollbar-gutter: stable;
    overscroll-behavior: contain;
  }

  .profile-page-scroll.switch-plan-detail-active.switch-plan-detail-split-scroll .switch-plan-comparison-table thead th {
    top: 0;
  }
}

.switch-plan-detail-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: var(--website-font-card-title);
  letter-spacing: -0.05em;
}

.website-footer {
  padding: 0 28px 28px;
}

.website-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border: 1px solid rgba(219, 227, 239, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.website-footer-brand {
  display: grid;
  gap: 10px;
  max-width: 540px;
}

.website-footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: var(--website-font-meta);
  line-height: 1.7;
}

.website-footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.website-footer-links a {
  color: #334155;
  font-size: var(--website-font-meta);
  font-weight: 700;
}

.website-footer-links a:hover {
  color: var(--brand-dark);
}

@media (max-width: 860px) {
  .website-footer {
    padding-inline: 20px;
  }

  .website-footer-inner {
    align-items: flex-start;
    padding: 22px;
  }
}

.switch-plan-comparison {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.switch-plan-comparison-head {
  max-width: 720px;
  margin-bottom: 22px;
}

.switch-plan-comparison-head h2 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.switch-plan-comparison-head p {
  margin: 0;
  color: #64748b;
  line-height: 1.55;
}

.switch-plan-comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
}

.switch-plan-comparison-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  background: #ffffff;
}

.switch-plan-comparison-table th,
.switch-plan-comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #edf2f7;
  color: #0f172a;
  font-size: 14px;
  text-align: center;
  vertical-align: top;
}

.switch-plan-comparison-table th:first-child,
.switch-plan-comparison-table td:first-child {
  width: 30%;
  text-align: left;
  font-weight: 700;
}

.switch-plan-comparison-table thead th {
  position: sticky;
  top: var(--switch-plan-comparison-top-offset, 0px);
  z-index: 1;
  background: #ffffff;
  box-shadow: inset 0 -1px 0 #e5e7eb;
}

.switch-plan-comparison-table th span,
.switch-plan-comparison-table th strong,
.switch-plan-comparison-table th small {
  display: block;
}

.switch-plan-comparison-table th span {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
}

.switch-plan-comparison-table th strong {
  font-size: 20px;
}

.switch-plan-comparison-table th small {
  color: #64748b;
  font-size: 12px;
}

.comparison-section-row td {
  background: #f8fafc;
  color: #0f172a;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.comparison-check {
  color: var(--website-accent-strong);
  font-size: 18px;
  font-weight: 700;
}

.comparison-missing {
  color: #94a3b8;
  font-size: 18px;
  font-weight: 700;
}

.profile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.46);
  z-index: 50;
}

.profile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(630px, 100vw);
  height: 100vh;
  padding: 22px 0 28px;
  background: #ffffff;
  box-shadow: -18px 0 40px rgba(15, 23, 42, 0.16);
  transform: translateX(100%);
  transition: transform 0.22s ease;
  z-index: 60;
  overflow: auto;
}

.profile-drawer.open {
  transform: translateX(0);
}

.profile-drawer-close {
  position: absolute;
  top: 20px;
  left: -24px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #38bdf8;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(56, 189, 248, 0.34);
  cursor: pointer;
}

.profile-drawer-head,
.profile-drawer-body {
  padding-inline: 38px;
}

.profile-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e5e7eb;
}

.profile-identity {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.profile-identity-avatar {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 4px solid #6b7280;
  color: #6b7280;
  font-size: 28px;
  font-weight: 700;
}

.profile-identity h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.profile-identity p {
  margin: 10px 0 4px;
  color: #475467;
  font-size: 18px;
}

.profile-identity span {
  color: #475467;
  font-size: 16px;
}

.profile-signout-button {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--website-accent-border);
  border-radius: 14px;
  background: #ffffff;
  color: var(--website-accent-strong);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.profile-drawer-body {
  padding-top: 30px;
}

.profile-link-button,
.profile-channel-status,
.profile-link-card,
.profile-grid-links button {
  width: 100%;
  border: 1px solid transparent;
  cursor: pointer;
}

.profile-link-button {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 14px;
  background: #ffffff;
  border-color: var(--website-accent-border);
  color: var(--website-accent-strong);
  font-size: 14px;
  font-weight: 700;
}

.profile-channel-status {
  min-height: 50px;
  margin-top: 30px;
  border-radius: 14px;
  background: var(--website-accent-gradient);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.profile-link-card {
  min-height: 70px;
  margin-top: 30px;
  padding: 0 22px;
  border-radius: 14px;
  background: #f6f8fe;
  color: #1570ef;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.profile-section {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid #e5e7eb;
}

.profile-section h3 {
  margin: 0 0 18px;
  font-size: 18px;
}

.profile-select {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #475467;
  font-size: 16px;
}

.profile-select::after {
  content: "⌄";
  color: #6b7280;
}

.profile-grid-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}

.profile-grid-links button {
  min-height: 68px;
  padding: 0 18px;
  border-radius: 14px;
  background: #f7f8fc;
  color: #1f2937;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}

.admin-auth-page,
.admin-page {
  background: #f5f7fb;
}

.admin-auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.admin-auth-card,
.admin-panel {
  border: 1px solid #e4e8f1;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.admin-auth-card {
  width: min(100%, 430px);
  padding: 34px 30px;
}

.admin-auth-brand,
.admin-logo {
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: -0.04em;
}

.admin-auth-card h1,
.admin-panel h1,
.admin-panel h2,
.admin-topbar h1 {
  margin: 0;
  letter-spacing: -0.04em;
}

.admin-auth-card p {
  color: var(--muted);
}

.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-content: start;
  gap: 18px;
  padding: 18px 14px;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 10px 0 28px rgba(15, 23, 42, 0.04);
}

.admin-sidebar-head {
  padding: 8px 6px 14px;
  border-bottom: 1px solid #edf1f7;
}

.admin-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
}

.admin-logo-icon,
.admin-nav-icon,
.admin-avatar,
.admin-stat-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.admin-logo-icon {
  width: 42px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(56, 189, 248, 0.26);
}

.admin-logo small,
.admin-sidebar-profile small {
  display: block;
  margin-top: 2px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.admin-trial-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: 16px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 12px;
  font-weight: 700;
}

.admin-sidebar-nav {
  display: grid;
  gap: 8px;
  overflow: auto;
  padding-right: 2px;
}

.admin-sidebar a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 14px;
  color: #334155;
  font-size: 15px;
  font-weight: 700;
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
  background: #e6f7ff;
  color: var(--brand-dark);
}

.admin-nav-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
}

.admin-sidebar a.active .admin-nav-icon,
.admin-sidebar a:hover .admin-nav-icon {
  background: #38bdf8;
  color: #ffffff;
}

.admin-sidebar-group {
  display: grid;
  gap: 4px;
  margin-top: 4px;
}

.admin-sidebar-group span {
  padding: 12px 12px 4px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-sidebar-group a {
  margin-left: 0;
}

.admin-sidebar-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding: 14px 10px;
  border: 1px solid #edf1f7;
  border-radius: 18px;
  background: #f8fafc;
}

.admin-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.admin-sidebar-profile strong {
  display: block;
  max-width: 170px;
  overflow: hidden;
  color: #0f172a;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-main {
  padding: 18px 22px 28px;
}

.admin-topbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 0 4px;
}

.admin-topbar span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.admin-kicker {
  margin: 0 0 4px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.admin-hero-panel,
.admin-billing-empty {
  border: 1px solid #e4e8f1;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.admin-hero-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 220px;
  padding: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 14%, rgba(56, 189, 248, 0.24), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f1f9ff 100%);
}

.admin-hero-panel h2 {
  max-width: 740px;
  margin: 0;
  color: #0f172a;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.admin-hero-meter {
  width: 156px;
  height: 156px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border: 14px solid #bae6fd;
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(2, 132, 199, 0.16);
}

.admin-hero-meter span {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-hero-meter strong {
  color: var(--brand-dark);
  font-size: 30px;
  letter-spacing: -0.05em;
}

.admin-panel {
  padding: 28px;
}

.admin-grid-two {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: start;
}

.admin-plans-layout {
  grid-template-columns: minmax(420px, 1.05fr) minmax(360px, 0.95fr);
}

.admin-plans-page {
  overflow: hidden;
}

.admin-plans-page .admin-main {
  height: 100vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
}

.admin-plans-page .admin-topbar {
  margin-bottom: 0;
}

.admin-plans-page .admin-plans-layout {
  min-height: 0;
  height: 100%;
  align-items: stretch;
  overflow: hidden;
}

.admin-plans-page .admin-plan-form,
.admin-plans-page .admin-plan-sidepanel {
  min-height: 0;
  max-height: 100%;
  overflow: auto;
}

.admin-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.admin-stat-card,
.admin-list-row {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #f8fafc;
}

.admin-stat-card {
  min-height: 156px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  color: var(--navy);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.admin-stat-card:hover {
  border-color: #bae6fd;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.admin-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 12px;
  font-weight: 700;
}

.admin-stat-card strong {
  font-size: 18px;
}

.admin-stat-card small {
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
}

.admin-billing-empty {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;
  padding: 38px;
}

.billing-empty-visual {
  min-height: 260px;
  border-radius: 24px;
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 82% 16%, rgba(56, 189, 248, 0.28), transparent 28%),
    linear-gradient(150deg, #f8fbff 0%, #e0f2fe 100%);
}

.billing-empty-visual span {
  display: block;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.billing-empty-visual span:nth-child(2) {
  width: 76%;
}

.billing-empty-visual span:nth-child(3) {
  width: 58%;
}

.admin-billing-empty h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.admin-billing-empty p:not(.eyebrow) {
  max-width: 720px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.65;
}

.billing-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.admin-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
}

.admin-pagination small {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.admin-pagination-actions {
  display: flex;
  gap: 8px;
}

.admin-pagination button[disabled] {
  cursor: not-allowed;
  opacity: 0.48;
}

.admin-list-row {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
}

.admin-list-row span,
.admin-list-row small {
  color: var(--muted);
}

.admin-plan-form,
.admin-plan-section,
.admin-plan-section-heading,
.admin-plan-form-header,
.admin-plan-list-header {
  display: grid;
  gap: 16px;
}

.admin-plan-section-heading,
.admin-plan-form-header,
.admin-plan-list-header {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.admin-plan-form-header h2,
.admin-plan-list-header h2,
.admin-plan-section h3,
.admin-plan-section-heading p {
  margin: 0;
}

.admin-plan-section {
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #f8fafc;
}

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

.admin-form-grid label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.admin-form-wide {
  grid-column: 1 / -1;
}

.admin-check-pill,
.admin-feature-option {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
}

.admin-check-pill {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 10px !important;
  min-height: 48px;
  padding: 12px 14px;
}

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

.admin-feature-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.admin-feature-option span {
  display: grid;
  gap: 3px;
}

.admin-feature-option input:disabled + span {
  color: #64748b;
}

.admin-feature-option small,
.admin-section-help {
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

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

.admin-usage-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(220px, 1.5fr) 90px minmax(110px, auto) auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
}

.admin-limit-row,
.admin-comparison-row {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.admin-comparison-row label:nth-child(5) {
  grid-column: span 2;
}

.admin-usage-row label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.admin-count-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  background: #f0f9ff;
  color: #0369a1;
  font-size: 12px;
  font-weight: 700;
}

.admin-plan-list-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.admin-plan-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #f8fafc;
}

.admin-plan-tabs a,
.admin-plan-tab {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.admin-plan-tabs a:hover,
.admin-plan-tab:hover {
  background: #e0f2fe;
  color: #0369a1;
}

.admin-plan-tab.is-active {
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.16);
}

.admin-plan-summary {
  display: grid;
  grid-template-columns: minmax(200px, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-plan-summary-card,
.admin-plan-summary-pill {
  min-height: 76px;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.admin-plan-summary-card {
  display: grid;
  gap: 4px;
}

.admin-plan-summary-card strong {
  color: #0f172a;
  font-size: 19px;
  line-height: 1.1;
}

.admin-plan-summary-card small {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.admin-plan-summary-pill {
  display: grid;
  place-items: center;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.admin-plan-pane {
  display: none;
}

.admin-plan-pane.is-active {
  display: grid;
}

.admin-plan-sidepanel {
  position: sticky;
  top: 24px;
}

.admin-trial-notice {
  padding: 12px 14px;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: #eff6ff;
}

.admin-plan-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.admin-mini-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #334155;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.admin-mini-pill-accent {
  background: #dcfce7;
  color: #15803d;
}

.admin-mini-pill-danger {
  background: #fee2e2;
  color: #b91c1c;
}

.admin-list-page-header {
  gap: 18px;
}

.admin-toolbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.admin-page-action {
  min-width: 0;
  white-space: nowrap;
  text-decoration: none;
}

.admin-list-panel {
  display: grid;
  gap: 18px;
}

.admin-list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
}

.admin-list-toolbar h2 {
  margin: 0;
}

.admin-list-toolbar span {
  color: var(--muted);
  font-size: 14px;
}

.admin-list-search {
  width: min(100%, 320px);
}

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

.admin-entity-row {
  grid-template-columns: minmax(220px, 1fr) minmax(160px, auto) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
}

.admin-entity-main {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.admin-entity-main strong,
.admin-entity-main span,
.admin-entity-main small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-entity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-action-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid #dbe3ef;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  box-shadow: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.admin-action-button:hover {
  border-color: #38bdf8;
  color: #0369a1;
}

.admin-billing-detail-shell {
  display: grid;
  gap: 18px;
}

.admin-billing-detail-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e7eb;
}

.admin-billing-detail-hero h2,
.admin-billing-detail-facts strong,
.admin-billing-detail-payload strong {
  margin: 0;
}

.admin-billing-detail-hero h2 {
  font-size: 28px;
  letter-spacing: -0.04em;
}

.admin-billing-detail-hero span {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-size: 14px;
}

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

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

.admin-billing-detail-facts div {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
}

.admin-billing-detail-facts strong {
  color: #0f172a;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-billing-detail-facts span,
.admin-billing-detail-facts a {
  color: #475569;
  font-size: 14px;
  line-height: 1.45;
  word-break: break-word;
}

.admin-billing-detail-payload {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.admin-billing-detail-payload pre {
  margin: 0;
  min-height: 120px;
  max-height: 280px;
  overflow: auto;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #0f172a;
  color: #e2e8f0;
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

.admin-action-danger {
  color: #b91c1c;
}

.admin-action-danger:hover {
  border-color: #fecaca;
  color: #991b1b;
}

.admin-form-page {
  display: grid;
  justify-items: center;
}

.admin-form-card {
  width: min(100%, 920px);
}

.admin-plan-form-page .admin-form-card {
  width: min(100%, 1120px);
}

.admin-form-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}

.admin-form-footer-button {
  width: auto;
  min-width: 140px;
  padding-left: 22px;
  padding-right: 22px;
}

.admin-form-footer-status {
  margin-top: 12px;
  text-align: right;
}

.admin-compact-table .admin-action-row {
  justify-content: flex-start;
}

.admin-compact-table .admin-mini-pill {
  margin: 0 4px 4px 0;
}

.admin-feature-card {
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.admin-feature-picker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  padding: 14px;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: #eff6ff;
}

.admin-feature-picker label {
  display: grid;
  gap: 8px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
}

.admin-feature-picker small {
  grid-column: 1 / -1;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
}

.admin-feature-sections {
  display: grid;
  gap: 16px;
}

.admin-feature-simple-section {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
}

.admin-feature-simple-section h4,
.admin-feature-simple-section p {
  margin: 0;
}

.admin-feature-simple-section h4 {
  color: #0f172a;
  font-size: 18px;
}

.admin-feature-simple-section p {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.admin-feature-simple-picker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.admin-feature-simple-list {
  display: grid;
  gap: 10px;
}

.admin-feature-simple-row {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #f8fafc;
}

.admin-feature-simple-row-head,
.admin-feature-simple-value {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.admin-feature-simple-row strong,
.admin-feature-simple-row small {
  display: block;
}

.admin-feature-simple-row strong {
  color: #0f172a;
  font-size: 15px;
}

.admin-feature-simple-row small {
  margin-top: 3px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.admin-feature-simple-value textarea {
  min-height: 78px;
}

.admin-feature-simple-check {
  min-width: 140px;
  justify-content: center;
}

.admin-price-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.admin-price-rows {
  display: grid;
  gap: 14px;
}

.admin-price-row {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
}

.admin-price-row-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.admin-price-row-head strong,
.admin-price-row-head small {
  display: block;
}

.admin-price-row-head strong {
  color: #0f172a;
  font-size: 16px;
}

.admin-price-row-head small {
  margin-top: 3px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

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

.admin-price-grid label {
  display: grid;
  gap: 6px;
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
}

.admin-price-row-actions {
  min-height: 34px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.admin-feature-card-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}

.admin-feature-card-top strong,
.admin-feature-card-top small {
  display: block;
}

.admin-feature-card-top strong {
  color: #0f172a;
  font-size: 16px;
}

.admin-feature-card-top small {
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.admin-feature-readonly-meta,
.admin-feature-definition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.admin-feature-readonly-meta span,
.admin-feature-definition-grid span {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
}

.admin-feature-readonly-meta strong,
.admin-feature-definition-grid strong {
  color: #0f172a;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-feature-main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-feature-value-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
}

.admin-feature-value-panel label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.admin-feature-value-text {
  grid-column: 1 / -1;
}

.admin-feature-zone-list {
  display: grid;
  gap: 10px;
}

.admin-feature-advanced {
  border-top: 1px dashed #cbd5e1;
  padding-top: 12px;
}

.admin-feature-advanced summary {
  cursor: pointer;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.admin-feature-advanced summary::-webkit-details-marker {
  display: none;
}

.admin-feature-advanced summary::after {
  content: "+";
  margin-left: 8px;
  color: #0369a1;
}

.admin-feature-advanced[open] summary::after {
  content: "-";
}

.admin-feature-advanced .admin-form-grid {
  margin-top: 12px;
}

.admin-row-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
  }

  .admin-form-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  padding: 13px 14px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-table td {
  color: #0f172a;
}

.admin-checkboxes {
  display: grid;
  gap: 14px;
  max-height: 300px;
  overflow: auto;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #f8fafc;
}

.admin-module-group,
.admin-submodule-group {
  display: grid;
  gap: 10px;
}

.admin-module-group {
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
}

.admin-module-group h3 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
}

.admin-submodule-group {
  padding: 10px;
  border-radius: 14px;
  background: #f8fafc;
}

.admin-submodule-group strong {
  color: #0f172a;
  font-size: 14px;
}

.admin-permission-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.admin-checkboxes label {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #334155;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .showcase-section,
  .platform-grid,
  .hero-mini-stats,
  .core-layout,
  .connect-layout,
  .connect-content,
  .switch-plan-grid,
  .switch-plan-detail-card-grid,
  .admin-layout,
  .admin-billing-empty {
    grid-template-columns: 1fr;
  }

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

  .admin-sidebar-nav {
    max-height: none;
  }

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

  .admin-form-grid,
  .admin-feature-grid,
  .admin-usage-row,
  .admin-plan-list-row,
  .admin-feature-main,
  .admin-feature-picker,
  .admin-feature-simple-picker,
  .admin-feature-simple-row-head,
  .admin-feature-simple-value,
  .admin-price-grid,
  .admin-price-row-head,
  .admin-feature-readonly-meta,
  .admin-feature-definition-grid,
  .admin-feature-value-panel,
  .admin-plan-summary,
  .admin-billing-detail-grid,
  .admin-billing-detail-facts {
    grid-template-columns: 1fr;
  }

  .admin-row-actions {
    justify-content: flex-start;
  }

  .admin-plan-sidepanel {
    position: static;
  }

  .admin-plans-page {
    overflow: auto;
  }

  .admin-plans-page .admin-main {
    height: auto;
    overflow: visible;
  }

  .admin-plans-page .admin-topbar {
    margin-bottom: 18px;
  }

  .admin-plans-page .admin-plans-layout {
    height: auto;
    overflow: visible;
  }

  .admin-plans-page .admin-plan-form,
  .admin-plans-page .admin-plan-sidepanel {
    max-height: none;
    overflow: visible;
  }

  .register-layout {
    grid-template-columns: 1fr;
  }

  .login-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .login-promo {
    max-width: 100%;
    padding: 8px 0 0;
  }

  .login-card {
    width: min(100%, 620px);
  }

  .login-card-centered {
    width: min(100%, 760px);
  }

  .register-promo {
    padding: 8px 0 0;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-window-side {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

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

  .connect-benefits {
    padding: 0;
  }

  .profile-drawer {
    width: min(520px, 100vw);
  }

  .profile-drawer-close {
    left: 16px;
    top: 16px;
  }

  .connect-layout {
    grid-template-columns: 264px 1fr;
    height: calc(100vh - 64px);
    overflow: hidden;
  }

  .connect-layout.sidebar-collapsed {
    grid-template-columns: 64px 1fr;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 18px;
  }

  .site-header,
  .hero-copy,
  .platform-panel,
  .showcase-stack,
  .logo-strip,
  .cta-banner,
  .auth-card {
    padding: 22px;
    border-radius: 24px;
  }

  .site-header,
  .site-nav,
  .header-actions,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .visual-panels,
  .field-row,
  .register-social-row,
  .login-social-row,
  .login-preview-stats,
  .admin-card-grid,
  .admin-grid-two {
    grid-template-columns: 1fr;
  }

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

  .login-shell {
    padding-top: 8px;
  }

  .login-promo h1 {
    font-size: 2.6rem;
  }

  .login-card {
    padding: 28px 22px 24px;
  }

  .login-card-centered {
    min-height: auto;
    padding-top: 32px;
  }

  .login-card-head h2 {
    font-size: 26px;
  }

  .login-field-label,
  .login-card-centered .login-switch,
  .login-otp-link {
    font-size: 17px;
  }

  .login-store-row {
    gap: 12px;
  }

  .trial-banner,
  .app-topbar,
  .connect-topbar,
  .connect-card-head,
  .connect-title-row,
  .switch-plan-hero,
  .profile-drawer-head,
  .admin-topbar,
  .admin-hero-panel,
  .billing-empty-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-main {
    padding: 16px;
  }

  .admin-hero-panel,
  .admin-billing-empty {
    padding: 24px;
  }

  .admin-hero-meter {
    width: 132px;
    height: 132px;
  }

  .connect-layout {
    min-height: 0;
    height: calc(100vh - 64px);
    grid-template-columns: 264px 1fr;
  }

  .connect-layout.sidebar-collapsed {
    grid-template-columns: 64px 1fr;
  }

  .connect-sidebar {
    border-right: 1px solid #e5e7eb;
    border-bottom: 0;
  }

  .profile-left-menu {
    grid-template-rows: 72px minmax(0, 1fr) auto;
    grid-template-columns: 64px 200px;
  }

  .profile-left-menu.collapsed {
    grid-template-columns: 64px 0;
  }

  .profile-sidebar-brand {
    grid-column: 1 / -1;
  }

  .profile-left-menu.collapsed .profile-menu-panel {
    display: none;
  }

  .profile-left-menu.collapsed .connect-brand-text {
    display: none;
  }

  .profile-icon-rail {
    flex-direction: column;
    overflow: visible;
    border-right: 1px solid #e5e7eb;
    border-bottom: 0;
    display: none;
  }

  .profile-rail-bottom {
    width: 100%;
    margin-top: auto;
    margin-left: 0;
    padding: 14px 0 18px;
    border-top: 1px solid #e5e7eb;
    display: none;
  }

  .profile-sidebar-toggle {
    flex: 0 0 52px;
  }

  .profile-left-menu.collapsed .profile-icon-rail a:hover::after,
  .profile-left-menu.collapsed .profile-sidebar-toggle:hover::after {
    display: none;
  }

  .connect-card {
    margin: 12px;
    padding: 22px;
  }

  .profile-drawer-head,
  .profile-drawer-body {
    padding-inline: 20px;
  }

  .profile-grid-links {
    grid-template-columns: 1fr;
  }

  .connect-title-row h1,
  .connect-sidecard h3 {
    font-size: 2rem;
  }

  .register-promo {
    padding-top: 0;
  }

  .register-promo h1 {
    font-size: 2.4rem;
  }

  .promo-list li {
    font-size: 16px;
  }

  .logo-line span {
    font-size: 22px;
  }

  .hero-copy h1,
  .section-copy h2,
  .showcase-copy h2,
  .cta-banner h2,
  .auth-heading h1 {
    font-size: 2.4rem;
  }

  .hero-proof {
    gap: 12px;
  }

  .switch-plan-modal {
    padding: 12px;
  }

  .switch-plan-modal-card {
    padding: 22px 18px 20px;
    border-radius: 22px;
  }

  .switch-plan-modal-coupon-row {
    grid-template-columns: 1fr;
  }

  .switch-plan-addon-card,
  .switch-plan-modal-item,
  .switch-plan-modal-section-head {
    flex-direction: column;
    align-items: stretch;
  }

  .switch-plan-addon-actions {
    justify-items: stretch;
  }

  .switch-plan-addon-actions .secondary-button,
  .switch-plan-addon-actions .ghost-button,
  .switch-plan-modal-footer .button {
    width: 100%;
  }

  .switch-plan-detail-head {
    align-items: start;
    flex-direction: column;
  }
}

