.down-topbar {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(32, 165, 58, 0.12);
  transition: box-shadow .25s ease, background .25s ease;
}

.down-topbar.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(24, 42, 30, 0.08);
}

.down-topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.down-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--text);
  min-width: 0;
}

.down-brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(32, 165, 58, 0.16);
  overflow: hidden;
  flex-shrink: 0;
}

.down-brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.down-brand-text {
  display: block;
}

.down-brand-text small {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--text-3);
  text-transform: uppercase;
}

.down-topbar-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(32, 165, 58, 0.12);
  border-radius: 999px;
  background: rgba(246, 247, 243, 0.85);
}

.down-topbar-links a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-2);
  transition: all .2s ease;
}

.down-topbar-links a:hover {
  color: var(--p);
  background: var(--p-bg-faint);
}

.down-topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.down-topbar-primary,
.down-topbar-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  transition: all .2s ease;
}

.down-topbar-primary {
  padding: 11px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--p), var(--p-dark));
  box-shadow: 0 8px 20px rgba(32, 165, 58, 0.24);
}

.down-topbar-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(32, 165, 58, 0.3);
}

.down-topbar-secondary {
  padding: 10px 14px;
  color: var(--text);
  border: 1px solid var(--p-border);
  background: rgba(255, 255, 255, 0.86);
}

.down-topbar-secondary:hover {
  color: var(--p);
  background: var(--p-bg-faint);
}

.down-menu-btn {
  display: none;
  background: var(--p-bg-faint);
  border: 1px solid var(--p-border);
  color: var(--p);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}

.down-mobile-panel {
  display: none;
  position: sticky;
  top: 74px;
  z-index: 119;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(32, 165, 58, 0.12);
}

.down-mobile-panel.is-open {
  display: block;
}

.down-mobile-panel-inner {
  display: grid;
  gap: 8px;
  padding: 14px 0 18px;
}

.down-mobile-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(246, 247, 243, 0.7);
  color: var(--text);
  font-weight: 600;
  transition: all .2s ease;
}

.down-mobile-panel a:hover {
  color: var(--p);
  background: var(--p-bg-faint);
}

@media (max-width: 980px) {
  .down-topbar-links,
  .down-topbar-primary,
  .down-topbar-secondary {
    display: none;
  }

  .down-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .down-topbar-inner {
    min-height: 68px;
  }

  .down-mobile-panel {
    top: 68px;
  }
}

#pillars.section,
#workflow.section,
#desktop.section,
#download.section,
#guide.section {
  padding-top: 96px;
  padding-bottom: 0;
}

#guide.section {
  padding-bottom: 96px;
}

#pillars .section-head,
#workflow .section-head,
#download .section-head,
#guide .section-head {
  text-align: center;
}

#pillars .section-title,
#workflow .section-title,
#download .section-title,
#guide .section-title,
#pillars .section-sub,
#workflow .section-sub,
#download .section-sub,
#guide .section-sub {
  width: 100%;
  text-align: center;
}

#pillars .section-title,
#workflow .section-title,
#download .section-title,
#guide .section-title {
  display: flex;
  justify-content: center;
}

#pillars .section-head {
  max-width: 1040px;
}

#pillars .section-sub {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

#download .section-head {
  max-width: 1040px;
}

#download .section-sub {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

#workflow .section-head {
  max-width: 1040px;
}

#workflow .section-sub {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
