/* ============================================================
   TAB VIEWS & GOOGLE ACCOUNTS MODAL STYLING
   ============================================================ */

.tab-content-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.15rem;
}

.section-header-compact {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

/* Keep the tools index discoverable inside the carousel rather than below it. */
.carousel-explore-tools {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(99, 102, 241, 0.42);
  border-radius: var(--radius-sm);
  background: rgba(99, 102, 241, 0.14);
  color: #c7d2fe;
  font: 700 0.72rem var(--font-sans);
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--trans-fast), border-color var(--trans-fast), transform var(--trans-fast);
}

.carousel-explore-tools:hover {
  background: rgba(99, 102, 241, 0.24);
  border-color: rgba(129, 140, 248, 0.7);
  transform: translateY(-1px);
}

.carousel-explore-tools:focus-visible {
  outline: 3px solid rgba(129, 140, 248, 0.45);
  outline-offset: 2px;
}

.section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: var(--radius-full);
}

.section-title {
  font-size: 1.95rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 620px;
}

/* ============================================================
   GOOGLE ACCOUNTS MODAL (Realistic Toolio replica)
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 15, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.google-accounts-dialog {
  width: 90%;
  max-width: 780px;
  background: var(--bg-glass-heavy);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(99, 102, 241, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalPopIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ga-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.25);
}

.ga-page-intro {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.ga-page-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(34, 211, 238, 0.2));
  border: 1px solid rgba(99, 102, 241, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.ga-eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--accent-cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ga-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  padding: 1rem 1.5rem;
}

.ga-stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.ga-stat-item.is-ready {
  border-color: rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.05);
}

.ga-stat-val {
  font-size: 1.15rem;
  font-weight: 800;
  font-family: var(--font-mono);
}

.ga-table-container {
  padding: 0 1.5rem 1.25rem;
  max-height: 260px;
  overflow-y: auto;
}

.ga-accounts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.ga-accounts-table th {
  text-align: left;
  padding: 8px 10px;
  color: var(--text-muted);
  font-size: 0.72rem;
  border-bottom: 1px solid var(--border-subtle);
  text-transform: uppercase;
}

.ga-accounts-table td {
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.account-email-badge {
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.ga-status-ready {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-emerald);
  font-weight: 700;
  font-size: 0.76rem;
}

/* ============================================================
   TOOLS INSIDE TOOLIO (8 Distinct Tools Grid)
   ============================================================ */
.tools-showcase-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1100px) {
  .tools-showcase-grid-8 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .tools-showcase-grid-8 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 359px) {
  .tools-showcase-grid-8 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.tool-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  transition: all var(--trans-base);
  position: relative;
  overflow: visible;
  min-width: 0;
  box-sizing: border-box;
}

.tool-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 12px 28px -5px rgba(0, 0, 0, 0.6), 0 0 15px rgba(99, 102, 241, 0.15);
}

.tool-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-bottom: 0.15rem;
}

.tool-feature-card h3 {
  font-size: 0.95rem;
  font-weight: 750;
  color: var(--text-primary);
  margin: 0;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.35;
}

.tool-feature-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Download Grid */
.download-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.download-side-stack {
  display: grid;
  gap: 1rem;
}

.download-hero-card {
  background: linear-gradient(135deg, rgba(18, 24, 43, 0.8), rgba(28, 36, 62, 0.7));
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-window);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

#view-download .download-actions-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: stretch;
}

#view-download .btn-github-small {
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  background: var(--bg-glass);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color var(--trans-fast), background var(--trans-fast);
}

#view-download .btn-github-small:hover {
  border-color: rgba(99, 102, 241, 0.6);
  background: rgba(99, 102, 241, 0.14);
}

#view-download .btn-github-small:focus-visible,
.other-tools-empty:focus-visible {
  outline: 3px solid rgba(129, 140, 248, 0.85);
  outline-offset: 3px;
}

/* ============================================================
   OTHER TOOLS (Clean Centered Empty State)
   ============================================================ */
.other-tools-empty {
  width: 100%;
  max-width: 560px;
  margin: 1.5rem auto !important;
  padding: 2.5rem 2rem;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: var(--bg-glass-heavy);
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.other-tools-empty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 102, 241, 0.35);
  border-radius: 16px;
  color: var(--accent-cyan);
  background: rgba(99, 102, 241, 0.12);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.other-tools-empty h3 {
  margin: 0 0 0.5rem;
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 700;
}

.other-tools-empty p {
  max-width: 460px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

#view-other-tools .other-tool-card {
  width: min(760px, 100%);
  margin: 1.5rem auto;
  padding: 1.35rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(99, 102, 241, 0.28);
  border-radius: var(--radius-lg);
  background: var(--bg-glass-heavy);
  box-shadow: 0 16px 38px -22px rgba(56, 189, 248, 0.55);
}

#view-other-tools .other-tool-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.28);
}

#view-other-tools .other-tool-copy h3 {
  margin: 0.2rem 0 0.35rem;
  color: var(--text-primary);
  font-size: 1.05rem;
}

#view-other-tools .other-tool-copy p,
#view-other-tools .other-tool-type {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.82rem;
}

#view-other-tools .other-tool-type {
  color: var(--accent-cyan);
  font-weight: 700;
}

#view-other-tools .other-tool-link {
  padding: 0.72rem 1rem;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

#view-other-tools .other-tool-actions {
  display: grid;
  gap: 0.55rem;
  justify-items: stretch;
}

#view-other-tools .other-tool-details-link {
  color: var(--text-secondary);
  font-size: 0.78rem;
  text-align: center;
}

#view-other-tools .other-tool-link:focus-visible,
#view-other-tools .other-tool-details-link:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.8);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  #view-other-tools .other-tool-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  #view-other-tools .other-tool-actions {
    grid-column: 1 / -1;
  }

  #view-other-tools .other-tool-link { text-align: center; }
}

@media (max-width: 760px) {
  #view-download .download-actions-row { grid-template-columns: 1fr; }
  #view-download .btn-github-small { width: 100%; }
}

.download-installer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.installer-info-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
}

.os-compatibility-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-emerald);
}

.download-action-box {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.flow-helper-install-options {
  display: grid;
  gap: 0.5rem;
}

.flow-helper-install-section {
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(8, 30, 48, 0.72), rgba(18, 24, 43, 0.78));
}

.flow-helper-eyebrow {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--accent-cyan);
  font: 700 0.68rem/1.2 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-helper-install-heading h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.05rem;
}

.flow-helper-install-heading p {
  margin: 0.32rem 0 0;
  color: var(--text-secondary);
  font-size: 0.78rem;
  line-height: 1.5;
}

.flow-helper-options-trigger {
  anchor-name: --flow-helper-install-trigger;
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(99, 102, 241, 0.62);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.28), rgba(139, 92, 246, 0.2));
  color: var(--text-primary);
  font: 750 0.86rem var(--font-sans);
  cursor: pointer;
  transition: background var(--trans-fast), border-color var(--trans-fast), transform var(--trans-fast);
}

.flow-helper-options-trigger:hover {
  border-color: rgba(129, 140, 248, 0.88);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.38), rgba(139, 92, 246, 0.3));
  transform: translateY(-1px);
}

.flow-helper-options-trigger:focus-visible {
  outline: 3px solid rgba(129, 140, 248, 0.45);
  outline-offset: 2px;
}

.flow-helper-options-chevron {
  margin-left: auto;
  transition: transform var(--trans-fast);
}

.flow-helper-options-trigger:has(+ .flow-helper-install-popover:popover-open) .flow-helper-options-chevron {
  transform: rotate(180deg);
}

.flow-helper-install-popover {
  position: absolute;
  position-anchor: --flow-helper-install-trigger;
  inset: auto;
  top: calc(anchor(bottom) + 8px);
  right: anchor(right);
  width: min(410px, calc(100vw - 2rem));
  margin: 0;
  padding: 0.65rem;
  border: 1px solid rgba(99, 102, 241, 0.5);
  border-radius: var(--radius-md);
  background: #0d1324;
  color: var(--text-primary);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
}

.flow-helper-install-popover:popover-open {
  display: grid;
  gap: 0.65rem;
}

.flow-helper-install-popover::backdrop { background: transparent; }

.flow-helper-install-popover-header {
  display: grid;
  gap: 0.12rem;
  padding: 0.1rem 0.15rem 0.35rem;
}

.flow-helper-install-popover-header strong { font-size: 0.83rem; }

.flow-helper-install-popover-header span {
  color: var(--text-secondary);
  font-size: 0.7rem;
}

.flow-helper-install-heading {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.flow-helper-install-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.1);
  color: var(--accent-cyan);
}

.flow-helper-install-heading h4 {
  margin: 0;
  color: var(--text-primary);
  font-size: 0.88rem;
}

.flow-helper-install-heading h4 span {
  display: inline-block;
  margin-left: 0.35rem;
  color: var(--accent-cyan);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.flow-helper-install-heading p {
  margin: 0.12rem 0 0;
  color: var(--text-secondary);
  font-size: 0.72rem;
  line-height: 1.4;
}

#view-download .flow-helper-store-link,
#view-download .btn-flow-helper-setup {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(34, 211, 238, 0.08);
  color: var(--accent-cyan);
  font: 700 0.85rem var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--trans-fast), border-color var(--trans-fast), transform var(--trans-fast);
}

#view-download .flow-helper-store-link {
  position: relative;
  border: 1px solid rgba(99, 102, 241, 0.6);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.24), rgba(139, 92, 246, 0.18));
  color: var(--text-primary);
  font: 750 0.84rem var(--font-sans);
}

#view-download :is(.flow-helper-store-link, .btn-flow-helper-setup) > span {
  min-width: 0;
  display: grid;
  gap: 0.08rem;
  text-align: left;
}

#view-download :is(.flow-helper-store-link, .btn-flow-helper-setup) > span strong {
  color: var(--text-primary);
  font-size: 0.8rem;
}

#view-download :is(.flow-helper-store-link, .btn-flow-helper-setup) > span small {
  color: var(--text-secondary);
  font-size: 0.66rem;
  font-weight: 500;
  line-height: 1.35;
}

#view-download .flow-helper-store-link > b {
  margin-left: auto;
  padding: 0.18rem 0.42rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.16);
  color: #6ee7b7;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

#view-download .flow-helper-store-link:hover {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.34), rgba(139, 92, 246, 0.28));
  border-color: rgba(129, 140, 248, 0.85);
  transform: translateY(-1px);
}

#view-download .btn-flow-helper-setup:hover {
  background: rgba(34, 211, 238, 0.14);
  border-color: rgba(34, 211, 238, 0.6);
  transform: translateY(-1px);
}

#view-download .flow-helper-store-link:focus-visible,
#view-download .btn-flow-helper-setup:focus-visible {
  outline: 3px solid rgba(34, 211, 238, 0.45);
  outline-offset: 2px;
}

.flow-helper-download-dialog {
  width: min(620px, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  margin: auto;
  padding: 0;
  border: 1px solid rgba(99, 102, 241, 0.4);
  border-radius: var(--radius-lg);
  background: #0d1222;
  color: var(--text-primary);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
  overflow: auto;
}

.flow-helper-download-dialog::backdrop {
  background: rgba(3, 6, 18, 0.78);
  backdrop-filter: blur(8px);
}

.flow-helper-download-panel { padding: 1.4rem; }

.flow-helper-download-header,
.flow-helper-download-heading,
.flow-helper-download-actions {
  display: flex;
  align-items: center;
}

.flow-helper-download-header {
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.flow-helper-download-heading { gap: 0.8rem; }

.flow-helper-download-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(99, 102, 241, 0.38);
  border-radius: 14px;
  background: rgba(99, 102, 241, 0.14);
  color: #a5b4fc;
}

.flow-helper-download-eyebrow {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--accent-cyan);
  font: 800 0.68rem var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-helper-download-heading h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.25;
}

.flow-helper-download-close {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.flow-helper-download-intro {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  font-size: 0.87rem;
  line-height: 1.6;
}

.flow-helper-install-steps {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-helper-install-steps li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 0.7rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}

.flow-helper-install-steps li > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(99, 102, 241, 0.17);
  color: #c7d2fe;
  font: 800 0.76rem var(--font-mono);
}

.flow-helper-install-steps strong { font-size: 0.84rem; }

.flow-helper-install-steps p {
  margin: 0.16rem 0 0;
  color: var(--text-secondary);
  font-size: 0.76rem;
  line-height: 1.45;
}

.flow-helper-install-steps code {
  color: var(--accent-cyan);
  font-family: var(--font-mono);
}

.flow-helper-download-status {
  margin: 0.8rem 0 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-sm);
  background: rgba(99, 102, 241, 0.08);
  color: var(--text-secondary);
  font-size: 0.78rem;
}

.flow-helper-download-status.is-ready {
  border-color: rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.08);
  color: #6ee7b7;
}

.flow-helper-download-status.is-error {
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.08);
  color: #fca5a5;
}

.flow-helper-download-actions {
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 1rem;
}

.btn-flow-helper-download,
.btn-flow-helper-done {
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font: 750 0.82rem var(--font-sans);
  cursor: pointer;
}

.btn-flow-helper-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-purple));
  color: #fff;
}

.btn-flow-helper-download:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.btn-flow-helper-done {
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

body[data-theme="light"] .flow-helper-download-dialog,
body[data-theme="soft-light"] .flow-helper-download-dialog,
body[data-theme="light"] .flow-helper-install-popover,
body[data-theme="soft-light"] .flow-helper-install-popover { background: #fff; }

body[data-theme="light"] .flow-helper-install-section,
body[data-theme="soft-light"] .flow-helper-install-section { background: rgba(255, 255, 255, 0.5); }

body[data-theme="light"] .flow-helper-install-steps li,
body[data-theme="soft-light"] .flow-helper-install-steps li,
body[data-theme="light"] .btn-flow-helper-done,
body[data-theme="soft-light"] .btn-flow-helper-done { background: rgba(15, 23, 42, 0.035); }

@media (max-width: 560px) {
  .flow-helper-download-dialog {
    width: calc(100vw - 1rem);
    max-height: calc(100dvh - 1rem);
  }

  .flow-helper-download-panel { padding: 1rem; }
  .flow-helper-download-actions { flex-direction: column; }
  .btn-flow-helper-download,
  .btn-flow-helper-done { width: 100%; }
}

.btn-download-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.95rem 1.8rem;
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-purple));
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
  transition: all var(--trans-spring);
}

.btn-download-large:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.7);
}

.download-meta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  font-size: 0.76rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

.download-meta-strip span {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 640px) {
  .download-meta-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 0.75rem 0.9rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    width: 100%;
    box-sizing: border-box;
  }

  .download-meta-strip span {
    white-space: normal;
    font-size: 0.78rem;
    line-height: 1.4;
  }
}

.download-steps-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.2);
  color: var(--accent-cyan);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text h4 {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-primary);
}

.step-text p {
  font-size: 0.76rem;
  color: var(--text-secondary);
}

/* Suggestions & Contact */
.suggestions-box-card {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-window);
}

.category-pill-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cat-pill-btn {
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.78rem;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.cat-pill-btn:hover, .cat-pill-btn.active {
  background: rgba(99, 102, 241, 0.25);
  border-color: var(--accent-indigo);
  color: #ffffff;
}

.form-group-custom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-input-custom {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: var(--font-sans);
  outline: none;
}

.form-input-custom:focus {
  border-color: var(--border-focus);
}

.form-textarea-custom {
  width: 100%;
  height: 90px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: var(--font-sans);
  resize: none;
  outline: none;
}

.form-textarea-custom:focus {
  border-color: var(--border-focus);
}

.btn-submit-suggestion {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-purple));
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--trans-spring);
}

.btn-submit-suggestion:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.5);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
}

#view-premium .tab-content-wrapper {
  gap: 0.7rem;
}

#view-premium .section-header-compact {
  gap: 0.2rem;
}

#view-premium .pricing-card.trial-card {
  border-color: rgba(34, 211, 238, 0.32);
  background: linear-gradient(135deg, rgba(15, 30, 48, 0.82), rgba(20, 27, 48, 0.72));
}

#view-premium .trial-card-duration {
  margin-top: 0.08rem;
  color: var(--accent-cyan);
  font-size: 0.78rem;
  font-weight: 700;
}

#view-premium .pricing-grid {
  max-width: 980px;
  gap: 1rem;
}

#view-premium .pricing-card {
  padding: 1.05rem 1.25rem;
  gap: 0.65rem;
}

#view-premium .pricing-price {
  font-size: 1.75rem;
  margin-top: 0.1rem;
}

#view-premium .pricing-features-list {
  gap: 0.38rem;
}

#view-premium .pricing-disclaimer-box {
  padding: 0.65rem 0.75rem;
  margin: 0.2rem 0;
}

#view-premium .pricing-disclaimer-text {
  font-size: 0.72rem;
  line-height: 1.4;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(24, 20, 50, 0.85), rgba(35, 25, 75, 0.75));
  border: 2px solid var(--accent-purple);
  box-shadow: 0 15px 40px -10px rgba(139, 92, 246, 0.35);
}

.pricing-badge-popular {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 0.2rem 0.65rem;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 850;
  color: var(--text-primary);
  margin-top: 0.2rem;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.pricing-feature-item svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
}

/* ============================================================
   TOOLIO SERVICE DISCLAIMERS (Home, Download, Premium)
   ============================================================ */

/* Home Tab Compact Notice */
.hero-disclaimer-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  background: rgba(14, 18, 36, 0.65);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: var(--radius-sm);
  margin-top: 0.85rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-disclaimer-notice .disclaimer-icon-wrap {
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-disclaimer-notice .disclaimer-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-disclaimer-notice .disclaimer-title {
  font-size: 0.76rem;
  font-weight: 750;
  color: #fbbf24;
  line-height: 1.35;
}

.hero-disclaimer-notice .disclaimer-desc {
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

body[data-theme="light"] .hero-disclaimer-notice,
body[data-theme="soft-light"] .hero-disclaimer-notice {
  background: rgba(255, 251, 235, 0.94);
  border-color: rgba(217, 119, 6, 0.3);
}

body[data-theme="light"] .hero-disclaimer-notice .disclaimer-title,
body[data-theme="soft-light"] .hero-disclaimer-notice .disclaimer-title {
  color: #b45309;
}

body[data-theme="light"] .hero-disclaimer-notice .disclaimer-desc,
body[data-theme="soft-light"] .hero-disclaimer-notice .disclaimer-desc {
  color: #475569;
}

/* Download Tab Short Notice */
.download-disclaimer-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-sm);
  margin-top: 0.45rem;
  font-size: 0.74rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.download-disclaimer-notice svg {
  color: #f59e0b;
  flex-shrink: 0;
}

/* Premium Tab Full Warning Box */
.pricing-disclaimer-box {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin: 0.6rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pricing-disclaimer-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #fbbf24;
  font-size: 0.82rem;
  font-weight: 750;
}

.pricing-disclaimer-header .disclaimer-amber-icon {
  color: #f59e0b;
  flex-shrink: 0;
}

.pricing-disclaimer-text {
  font-size: 0.74rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

/* Light / Soft Light Theme Support for Tabs */
body[data-theme="soft-light"] .pricing-card,
body[data-theme="light"] .pricing-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body[data-theme="soft-light"] .pricing-card.featured,
body[data-theme="light"] .pricing-card.featured {
  background: linear-gradient(135deg, #f8faff, #f5f3ff);
  border: 2px solid #8b5cf6;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

body[data-theme="soft-light"] .pricing-card.featured h3,
body[data-theme="light"] .pricing-card.featured h3 {
  color: #0f172a !important;
}

body[data-theme="soft-light"] .pricing-card.featured p,
body[data-theme="light"] .pricing-card.featured p {
  color: #4338ca !important;
}

body[data-theme="soft-light"] .download-hero-card,
body[data-theme="light"] .download-hero-card,
body[data-theme="soft-light"] .download-steps-card,
body[data-theme="light"] .download-steps-card,
body[data-theme="soft-light"] .contact-channels-card,
body[data-theme="light"] .contact-channels-card,
body[data-theme="soft-light"] .faq-card,
body[data-theme="light"] .faq-card,
body[data-theme="soft-light"] .tool-feature-card,
body[data-theme="light"] .tool-feature-card,
body[data-theme="soft-light"] .other-tools-empty,
body[data-theme="light"] .other-tools-empty,
body[data-theme="soft-light"] .suggestions-board,
body[data-theme="light"] .suggestions-board,
body[data-theme="soft-light"] .changelog-detail-pane,
body[data-theme="light"] .changelog-detail-pane {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  color: #0f172a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body[data-theme="soft-light"] .version-nav-btn,
body[data-theme="light"] .version-nav-btn {
  background: #f1f5f9;
  border-color: rgba(0, 0, 0, 0.08);
  color: #334155;
}

body[data-theme="soft-light"] .version-nav-btn.active,
body[data-theme="light"] .version-nav-btn.active {
  background: #ffffff;
  border-color: #6366f1;
  color: #4338ca;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
}

body[data-theme="soft-light"] .channel-link-box,
body[data-theme="light"] .channel-link-box {
  background: #f8fafc;
  border-color: rgba(0, 0, 0, 0.1);
}

body[data-theme="soft-light"] .channel-link-box:hover,
body[data-theme="light"] .channel-link-box:hover {
  background: #f1f5f9;
  border-color: #6366f1;
}

body[data-theme="soft-light"] .website-auth-dialog,
body[data-theme="light"] .website-auth-dialog {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.12);
  color: #0f172a;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* ============================================================
   WHAT'S NEW (2-Column Desktop Changelog & Badges)
   ============================================================ */
.changelog-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  height: auto;
  max-height: none;
  align-items: start;
}

.version-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  overflow: visible;
  position: sticky;
  top: 0;
}

.version-nav-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  min-height: 52px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--trans-fast);
  text-align: left;
}

.version-nav-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  color: var(--text-primary);
}

.version-nav-btn.active {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
  border-color: var(--accent-indigo);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25);
}

.version-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.version-tag-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-primary);
}

.version-date {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.version-badge-pill {
  font-size: 0.65rem;
  font-weight: 750;
  font-family: var(--font-mono);
  padding: 2px 7px;
  background: rgba(34, 211, 238, 0.15);
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: var(--accent-cyan);
  border-radius: var(--radius-full);
}

.changelog-content-area {
  height: auto;
  overflow: visible;
}

@media (max-width: 700px) {
  .carousel-explore-tools span { display: none; }
  .carousel-explore-tools { width: 44px; min-height: 44px; padding: 0; }
  .flow-helper-install-popover {
    position: fixed;
    position-anchor: auto;
    inset: auto 0 max(5.5rem, env(safe-area-inset-bottom)) 0;
    width: calc(100vw - 1rem);
    margin: auto;
  }
}

.changelog-detail-pane {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-window);
}

.changelog-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.85rem;
}

.changelog-version-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.changelog-release-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.changelog-tag-latest {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 3px 9px;
  border-radius: var(--radius-full);
}

.changelog-section {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.changelog-group-title {
  font-size: 0.82rem;
  font-weight: 750;
  font-family: var(--font-mono);
  color: var(--accent-indigo);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.changelog-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.changelog-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.changelog-detail-pane .release-notes-summary,
.changelog-detail-pane .release-notes-paragraph {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.6;
}

.changelog-detail-pane .release-notes-list {
  list-style: disc;
  padding-left: 1.25rem;
}

.changelog-detail-pane .release-notes-list.changelog-items-list {
  gap: 0.5rem;
}

.changelog-detail-pane .release-notes-list .changelog-item {
  display: list-item;
}

.changelog-detail-pane ol.release-notes-list {
  list-style: decimal;
}

.changelog-detail-pane .release-notes-callout {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-left: 3px solid #f59e0b;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.08);
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.55;
}

.changelog-detail-pane .release-notes-rule {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--border-subtle);
}

.changelog-detail-pane pre {
  overflow-x: auto;
  padding: 0.8rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 0.78rem;
}

/* Badges: [NEW], [IMPROVED], [FIXED] */
.badge-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.66rem;
  font-weight: 800;
  font-family: var(--font-mono);
  padding: 2px 7px;
  border-radius: var(--radius-xs);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-top: 2px;
}

.badge-tag.new {
  background: rgba(34, 211, 238, 0.14);
  color: var(--accent-cyan);
  border: 1px solid rgba(34, 211, 238, 0.35);
}

.badge-tag.improved,
.badge-tag.enhance {
  background: rgba(139, 92, 246, 0.14);
  color: #c084fc;
  border: 1px solid rgba(139, 92, 246, 0.35);
}

.badge-tag.fixed,
.badge-tag.fix {
  background: rgba(16, 185, 129, 0.14);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.35);
}

/* ============================================================
   COMMUNITY TAB VIEW
   ============================================================ */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.community-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: all var(--trans-base);
  box-shadow: var(--shadow-window);
}

.community-card.coming-soon {
  opacity: 0.95;
}

.community-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-light);
}

.community-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.community-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-icon.tg-icon {
  background: rgba(34, 211, 238, 0.12);
  color: var(--accent-cyan);
  border: 1px solid rgba(34, 211, 238, 0.3);
}

.community-icon.wa-icon {
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.community-status-badge {
  font-size: 0.68rem;
  font-weight: 750;
  font-family: var(--font-mono);
  padding: 3px 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #f59e0b;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.community-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
}

.community-card-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
}

.community-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: not-allowed;
}

/* Support Strip below community cards */
.support-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  padding: 1rem 1.4rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  gap: 1rem;
}

.support-strip-content {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.support-strip-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-indigo);
  flex-shrink: 0;
}

.support-strip-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.support-strip-text strong {
  color: var(--text-primary);
}

.support-email-link {
  color: var(--accent-cyan);
  text-decoration: none;
}

.support-email-link:hover {
  text-decoration: underline;
}

.support-actions {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0.65rem;
  flex-shrink: 0;
}

.btn-support-channel {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  align-items: center;
  min-height: 48px;
  padding: 0.55rem 0.85rem;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.35);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--trans-fast);
}

.btn-support-channel svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: currentColor;
}

.btn-support-channel > span {
  display: grid;
  gap: 1px;
}

.btn-support-channel strong { font-size: 0.8rem; }
.btn-support-channel small { color: rgba(255, 255, 255, 0.72); font-size: 0.7rem; font-weight: 600; }
.btn-support-channel.is-whatsapp { color: #fff; border-color: rgba(37, 211, 102, 0.42); background: rgba(18, 140, 91, 0.24); }
.btn-support-channel.is-telegram { color: #fff; border-color: rgba(42, 171, 238, 0.46); background: rgba(34, 126, 183, 0.24); }
.btn-support-channel:hover { transform: translateY(-1px); }
.btn-support-channel.is-whatsapp:hover { border-color: #25d366; background: rgba(18, 140, 91, 0.38); }
.btn-support-channel.is-telegram:hover { border-color: #2aabee; background: rgba(34, 126, 183, 0.38); }
.btn-support-channel:focus-visible { outline: 3px solid rgba(125, 211, 252, 0.4); outline-offset: 2px; }

@media (max-width: 820px) {
  .support-strip { align-items: stretch; flex-direction: column; }
  .support-actions { justify-content: stretch; }
  .btn-support-channel { flex: 1 1 0; justify-content: center; }
}
